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

WIFI_ESP && WIFI

(Includes any dependencies from ifs and menus.)

Defaults

No defaults. Implicitly defaults to n.

Kconfig definition

At <Zephyr>/drivers/wifi/esp/Kconfig.esp:63

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:32<Zephyr>/drivers/Kconfig:76<Zephyr>/drivers/wifi/Kconfig:35

Menu path: (Top) → Device Drivers → Wi-Fi Drivers → Espressif ESP8266 and ESP32 support

config WIFI_ESP_PASSIVE_MODE
    bool "Use passive mode"
    depends on WIFI_ESP && 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.)