The latest development version of this page may be more current than this released 2.5.0 version.
CONFIG_WIFI_ESP_WORKQ_STACK_SIZE

Stack size for the esp driver work queue

Type: int

Help

This stack is used by the work queue to pass off net_pkt data to the rest of the network stack, letting the rx thread continue processing data.

Direct dependencies

WIFI_ESP && WIFI

(Includes any dependencies from ifs and menus.)

Default

  • 2048

Kconfig definition

At drivers/wifi/esp/Kconfig.esp:31

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

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

config WIFI_ESP_WORKQ_STACK_SIZE
    int "Stack size for the esp driver work queue"
    default 2048
    depends on WIFI_ESP && WIFI
    help
      This stack is used by the work queue to pass off net_pkt data
      to the rest of the network stack, letting the rx thread continue
      processing data.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)