:orphan: .. title:: WIFI_ESP_PASSIVE_MODE .. option:: CONFIG_WIFI_ESP_PASSIVE_MODE *Use passive mode* Type: ``bool`` Help ==== This lets the ESP handle the TCP window so that data can flow at a rate that the driver can handle. Without this, data might get lost if the driver cannot empty the device buffer quickly enough. Direct dependencies =================== \ :option:`WIFI_ESP ` && \ :option:`WIFI ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== .. highlight:: kconfig At ``drivers/wifi/esp/Kconfig.esp:63`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:76`` → ``drivers/wifi/Kconfig:35`` Menu path: (Top) → Device Drivers → Wi-Fi Drivers → Espressif ESP8266 and ESP32 support .. parsed-literal:: config WIFI_ESP_PASSIVE_MODE bool "Use passive mode" depends on \ :option:`WIFI_ESP ` && \ :option:`WIFI ` help This lets the ESP handle the TCP window so that data can flow at a rate that the driver can handle. Without this, data might get lost if the driver cannot empty the device buffer quickly enough. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*