esp32/lwip: adjust task stack size according 'nano' print

1. Adjust tcpip/main/event/timer task stack size according 'nano' print
2. If 'nano' print is disabled the task stack size reduces 512 bytes
This commit is contained in:
Liu Zhi Fu
2017-11-09 09:39:01 +08:00
parent 37169f0f10
commit 710055025e
3 changed files with 15 additions and 13 deletions

View File

@@ -281,13 +281,13 @@ config SYSTEM_EVENT_QUEUE_SIZE
config SYSTEM_EVENT_TASK_STACK_SIZE
int "Event loop task stack size"
default 4096
default 2048
help
Config system event task stack size in different application.
config MAIN_TASK_STACK_SIZE
int "Main task stack size"
default 4096
default 3584
help
Configure the "main task" stack size. This is the stack of the task
which calls app_main(). If app_main() returns then this task is deleted
@@ -310,7 +310,7 @@ config IPC_TASK_STACK_SIZE
config TIMER_TASK_STACK_SIZE
int "High-resolution timer task stack size"
default 4096
default 3584
range 2048 65536
help
Configure the stack size of esp_timer/ets_timer task. This task is used