We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6264e83 commit e56db5cCopy full SHA for e56db5c
cores/nRF5/freertos/FreeRTOSConfig.h
@@ -83,6 +83,9 @@
83
#define CONFIG_RTOS_TIMER_STACK_DEPTH (256)
84
#endif
85
86
+#ifndef CONFIG_RTOS_TIMER_TASK_PRIORITY
87
+#define CONFIG_RTOS_TIMER_TASK_PRIORITY (2)
88
+#endif
89
90
#define configTICK_SOURCE FREERTOS_USE_RTC
91
@@ -130,7 +133,7 @@
130
133
131
134
/* Software timer definitions. */
132
135
#define configUSE_TIMERS 1
-#define configTIMER_TASK_PRIORITY ( configMAX_PRIORITIES - 1)
136
+#define configTIMER_TASK_PRIORITY CONFIG_RTOS_TIMER_TASK_PRIORITY
137
#define configTIMER_QUEUE_LENGTH CONFIG_RTOS_TIMER_QUEUE_LENGTH
138
#define configTIMER_TASK_STACK_DEPTH CONFIG_RTOS_TIMER_STACK_DEPTH
139
0 commit comments