freertos: increase timer task stack size to 2048 bytes

Current timer task stack size is insufficient for logging calls which
use non-nano vprintf.
This commit is contained in:
Ivan Grokhotkov
2017-03-24 08:40:05 +08:00
parent 1c9d8744ab
commit fe69377782

View File

@ -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