From a5f9563ef72a7dbedafd34896bf1f4abc8fcc2c6 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Wed, 31 Jan 2018 13:58:39 +0800 Subject: [PATCH] esp32: increase default event task stack size by 256 bytes At debug log level, default event task stack size was not sufficient, the stack was overflown by 232 bytes when WiFi connection happened. --- components/esp32/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp32/Kconfig b/components/esp32/Kconfig index 57b0599d9..4eb961c07 100644 --- a/components/esp32/Kconfig +++ b/components/esp32/Kconfig @@ -281,7 +281,7 @@ config SYSTEM_EVENT_QUEUE_SIZE config SYSTEM_EVENT_TASK_STACK_SIZE int "Event loop task stack size" - default 2048 + default 2304 help Config system event task stack size in different application.