mirror of
https://github.com/espressif/ESP8266_RTOS_SDK.git
synced 2025-07-15 08:32:42 +08:00
feat(esp8266): Add ppT task stack size configuration
This commit is contained in:
@ -110,6 +110,15 @@ config TASK_WDT_TIMEOUT_S
|
|||||||
default 14 if TASK_WDT_TIMEOUT_14N
|
default 14 if TASK_WDT_TIMEOUT_14N
|
||||||
default 15 if TASK_WDT_TIMEOUT_15N
|
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
|
endmenu
|
||||||
|
|
||||||
menu WIFI
|
menu WIFI
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
gwen:
|
gwen:
|
||||||
core: 103fbb8
|
core: 103fbb8
|
||||||
net80211: 103fbb8
|
net80211: 103fbb8
|
||||||
pp: 103fbb8
|
pp: 760166c
|
||||||
smartconfig:103fbb8
|
smartconfig:103fbb8
|
||||||
wpa: 103fbb8
|
wpa: 103fbb8
|
||||||
espnow: 103fbb8
|
espnow: 103fbb8
|
||||||
|
Binary file not shown.
@ -20,6 +20,8 @@
|
|||||||
#include "net/sockio.h"
|
#include "net/sockio.h"
|
||||||
#include "phy.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);
|
esp_err_t esp_wifi_init_internal(const wifi_init_config_t *config);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user