mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
feat(freertos): Added a Kconfig option for FreeRTOS Timer Service task name
This commit adds a Kconfig option for setting a custom name for the FreeRTOS Timer Service task.
This commit is contained in:
parent
51846b497b
commit
371ad531ee
@ -167,6 +167,12 @@ menu "FreeRTOS"
|
||||
Enable backward compatibility with APIs prior to FreeRTOS v8.0.0. (see
|
||||
configENABLE_BACKWARD_COMPATIBILITY documentation for more details).
|
||||
|
||||
config FREERTOS_TIMER_SERVICE_TASK_NAME
|
||||
string "configTIMER_SERVICE_TASK_NAME"
|
||||
default "Tmr Svc"
|
||||
help
|
||||
Sets the timer task's name (see configTIMER_SERVICE_TASK_NAME documentation for more details).
|
||||
|
||||
config FREERTOS_TIMER_TASK_PRIORITY
|
||||
int "configTIMER_TASK_PRIORITY"
|
||||
range 1 25
|
||||
|
@ -175,6 +175,7 @@
|
||||
#define configTIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY
|
||||
#define configTIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH
|
||||
#define configTIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH
|
||||
#define configTIMER_SERVICE_TASK_NAME CONFIG_FREERTOS_TIMER_SERVICE_TASK_NAME
|
||||
|
||||
/* -------------------- API Includes ----------------------- */
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user