:orphan: .. title:: CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED .. kconfig:: CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED CONFIG_ESP32_WIFI_AMPDU_RX_ENABLED ################################## *WiFi AMPDU RX* Type: ``bool`` Help ==== .. code-block:: none Select this option to enable AMPDU RX feature. It improves transmission error checking and overall network performance with the cost of processing speed. Helpful when the device is operating in crowded wireless area. Direct dependencies =================== \ :kconfig:`WIFI_ESP32 ` && \ :kconfig:`WIFI ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/wifi/esp32/Kconfig.esp32:177`` 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_AMPDU_RX_ENABLED bool "WiFi AMPDU RX" default y depends on WIFI_ESP32 && WIFI help Select this option to enable AMPDU RX feature. It improves transmission error checking and overall network performance with the cost of processing speed. Helpful when the device is operating in crowded wireless area. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*