:orphan: .. title:: CONFIG_WIFI_ESP_AT_WORKQ_STACK_SIZE .. kconfig:: CONFIG_WIFI_ESP_AT_WORKQ_STACK_SIZE CONFIG_WIFI_ESP_AT_WORKQ_STACK_SIZE ################################### *Stack size for the esp driver work queue* Type: ``int`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`WIFI_ESP_AT ` && \ :kconfig:`WIFI ` *(Includes any dependencies from ifs and menus.)* Default ======= - 2048 Kconfig definition ================== At ``/wifi/esp_at/Kconfig.esp_at:46`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:78`` → ``/wifi/Kconfig:35`` Menu path: (Top) → Device Drivers → Wi-Fi Drivers → Espressif AT Command support .. code-block:: kconfig config WIFI_ESP_AT_WORKQ_STACK_SIZE int "Stack size for the esp driver work queue" default 2048 depends on WIFI_ESP_AT && 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.)*