From: Ivan Grokhotkov Date: Fri, 24 Mar 2017 00:40:05 +0000 (+0800) Subject: freertos: increase timer task stack size to 2048 bytes X-Git-Tag: v2.0~6^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fe693777825807e89fa2f058fe389185dc49f833;p=esp-idf freertos: increase timer task stack size to 2048 bytes Current timer task stack size is insufficient for logging calls which use non-nano vprintf. --- diff --git a/components/freertos/include/freertos/FreeRTOSConfig.h b/components/freertos/include/freertos/FreeRTOSConfig.h index 9deb9f4b5e..d178b5bf12 100644 --- a/components/freertos/include/freertos/FreeRTOSConfig.h +++ b/components/freertos/include/freertos/FreeRTOSConfig.h @@ -254,7 +254,7 @@ #define configUSE_TIMERS 1 #define configTIMER_TASK_PRIORITY 1 #define configTIMER_QUEUE_LENGTH 10 -#define configTIMER_TASK_STACK_DEPTH configMINIMAL_STACK_SIZE +#define configTIMER_TASK_STACK_DEPTH 2048 #define INCLUDE_xTimerPendFunctionCall 1 #define INCLUDE_eTaskGetState 1