Merge branch 'bugfix/freertos_timer_stack_config' into 'master'

bugfix/freertos_timer_stack_config: Added config option for Timer stack.

See merge request sdk/ESP8266_RTOS_SDK!571
This commit is contained in:
Wu Jian Gang
2018-10-23 21:55:08 +08:00
2 changed files with 7 additions and 1 deletions

View File

@ -76,7 +76,7 @@
#if configUSE_TIMERS
#define configTIMER_TASK_PRIORITY ( tskIDLE_PRIORITY + 2 )
#define configTIMER_QUEUE_LENGTH (10)
#define configTIMER_TASK_STACK_DEPTH ( ( unsigned short ) 2048 )
#define configTIMER_TASK_STACK_DEPTH ( ( unsigned short ) CONFIG_FREERTOS_TIMER_STACKSIZE )
#endif
/* Co-routine definitions. */