:orphan: .. title:: CONFIG_ESP32_WIFI_IRAM_OPT .. kconfig:: CONFIG_ESP32_WIFI_IRAM_OPT CONFIG_ESP32_WIFI_IRAM_OPT ########################## *WiFi IRAM speed optimization* Type: ``bool`` Help ==== .. code-block:: none Select this option to place frequently called Wi-Fi library functions in IRAM. When this option is disabled, more than 10Kbytes of IRAM memory will be saved but Wi-Fi throughput will be reduced. Direct dependencies =================== \ :kconfig:`WIFI_ESP32 ` && \ :kconfig:`WIFI ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/wifi/esp32/Kconfig.esp32:227`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:78`` → ``/wifi/Kconfig:36`` Menu path: (Top) → Device Drivers → Wi-Fi Drivers → ESP32 SoC WiFi support .. code-block:: kconfig config ESP32_WIFI_IRAM_OPT bool "WiFi IRAM speed optimization" default y depends on WIFI_ESP32 && WIFI help Select this option to place frequently called Wi-Fi library functions in IRAM. When this option is disabled, more than 10Kbytes of IRAM memory will be saved but Wi-Fi throughput will be reduced. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*