FreeRTOS: Support setting task name max length

Ref: https://esp32.com/viewtopic.php?f=13&t=1297&p=5762
This commit is contained in:
Angus Gratton
2017-02-27 11:46:16 +11:00
parent 36b3963efb
commit 3050f06a8d
2 changed files with 12 additions and 1 deletions

View File

@@ -187,7 +187,7 @@
#define configAPPLICATION_ALLOCATED_HEAP 1
#define configTOTAL_HEAP_SIZE (&_heap_end - &_heap_start)//( ( size_t ) (64 * 1024) )
#define configMAX_TASK_NAME_LEN ( 16 )
#define configMAX_TASK_NAME_LEN ( CONFIG_FREERTOS_MAX_TASK_NAME_LEN )
#define configUSE_TRACE_FACILITY 0 /* Used by vTaskList in main.c */
#define configUSE_STATS_FORMATTING_FUNCTIONS 0 /* Used by vTaskList in main.c */
#define configUSE_TRACE_FACILITY_2 0 /* Provided by Xtensa port patch */