mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-15 08:32:42 +08:00
Merge branch 'feature/add_config_for_pp_stack' into 'master'
Add ppT task stack size configuration See merge request sdk/ESP8266_RTOS_SDK!486
This commit is contained in:
@ -110,6 +110,15 @@ config TASK_WDT_TIMEOUT_S
|
||||
default 14 if TASK_WDT_TIMEOUT_14N
|
||||
default 15 if TASK_WDT_TIMEOUT_15N
|
||||
|
||||
config WIFI_PPT_TASKSTACK_SIZE
|
||||
int "ppT task stack size"
|
||||
default 2048
|
||||
range 2048 8192
|
||||
help
|
||||
Configure the "ppT task" stack size. This is the stack of the task
|
||||
which calls promiscuous callback function. So if user's function is
|
||||
complex, the stack must be set larger.
|
||||
|
||||
endmenu
|
||||
|
||||
menu WIFI
|
||||
|
@ -1,7 +1,7 @@
|
||||
gwen:
|
||||
core: 103fbb8
|
||||
net80211: 103fbb8
|
||||
pp: 103fbb8
|
||||
pp: 760166c
|
||||
smartconfig:103fbb8
|
||||
wpa: 103fbb8
|
||||
espnow: 103fbb8
|
||||
|
Binary file not shown.
@ -20,6 +20,8 @@
|
||||
#include "net/sockio.h"
|
||||
#include "phy.h"
|
||||
|
||||
const size_t _g_esp_wifi_ppt_task_stk_size = CONFIG_WIFI_PPT_TASKSTACK_SIZE;
|
||||
|
||||
esp_err_t esp_wifi_init_internal(const wifi_init_config_t *config);
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user