:orphan: .. title:: CONFIG_ESP32_SPIM .. kconfig:: CONFIG_ESP32_SPIM CONFIG_ESP32_SPIM ################# *ESP32 SPI Master driver* Type: ``bool`` Help ==== .. code-block:: none Enables support for ESP32 SPI Master driver. Direct dependencies =================== (\ :kconfig:`SOC_ESP32 ` || \ :kconfig:`SOC_ESP32S2 ` || \ :kconfig:`SOC_ESP32C3 `) && \ :kconfig:`SPI ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/spi/Kconfig.esp32:6`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:40`` → ``/spi/Kconfig:90`` Menu path: (Top) → Device Drivers → SPI hardware bus support .. code-block:: kconfig menuconfig ESP32_SPIM bool "ESP32 SPI Master driver" default y depends on (SOC_ESP32 || SOC_ESP32S2 || SOC_ESP32C3) && SPI help Enables support for ESP32 SPI Master driver. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*