feat(freertos): Add option for idle task stack size

Modify min size from 768 to 1024 bytes.
This commit is contained in:
dongheng
2019-04-17 10:11:57 +08:00
parent 8aae2e5764
commit b3658b4eb1
3 changed files with 17 additions and 1 deletions

View File

@ -172,5 +172,9 @@ uint32_t esp_get_time(void);
#define traceINCREASE_TICK_COUNT(_ticks) esp_increase_tick_cnt(_ticks)
#ifndef configIDLE_TASK_STACK_SIZE
#define configIDLE_TASK_STACK_SIZE CONFIG_FREERTOS_IDLE_TASK_STACKSIZE
#endif /* configIDLE_TASK_STACK_SIZE */
#endif /* FREERTOS_CONFIG_H */