:orphan: .. title:: SPI_2 .. option:: CONFIG_SPI_2 *SPI port 2* Type: ``bool`` Help ==== Enable SPI controller port 2. Direct dependencies =================== (\ :option:`SPI_DW ` && \ :option:`SPI ` && \ :option:`BOARD_HSDK `) || (\ :option:`SPI ` && \ :option:`BOARD_ARDUINO_NANO_33_BLE `) || (\ :option:`SPI ` && \ :option:`BOARD_HEXIWEAR_K64 `) || \ :option:`SPI ` *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y - n Kconfig definitions =================== .. highlight:: kconfig At ``boards/arc/hsdk/Kconfig.defconfig:42`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config SPI_2 bool default y depends on \ :option:`SPI_DW ` && \ :option:`SPI ` && \ :option:`BOARD_HSDK ` ---- At ``boards/arm/arduino_nano_33_ble/Kconfig.defconfig:36`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config SPI_2 bool default y depends on \ :option:`SPI ` && \ :option:`BOARD_ARDUINO_NANO_33_BLE ` ---- At ``boards/arm/hexiwear_k64/Kconfig.defconfig:38`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config SPI_2 bool default n depends on \ :option:`SPI ` && \ :option:`BOARD_HEXIWEAR_K64 ` ---- At ``drivers/spi/Kconfig:73`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:38`` Menu path: (Top) → Device Drivers → SPI hardware bus support .. parsed-literal:: config SPI_2 bool "SPI port 2" depends on \ :option:`SPI ` help Enable SPI controller port 2. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*