summaryrefslogtreecommitdiff
path: root/src/FreeRTOSConfig.h
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2022-03-14 20:54:04 +0100
committerJF <JF002@users.noreply.github.com>2022-03-21 20:53:46 +0100
commitf1194a5f74fa7e02805940a39489210783b94878 (patch)
treed6525f1b7f01392793f2a37c38623ffcc16b324f /src/FreeRTOSConfig.h
parent88197b66328ab8cbecc199c91d1ce1e1688ade83 (diff)
In current configuration, the timer task (the one from FreeRTOS) has the lowest priority (0). Both display and system tasks are also set on priority 0.
In cases where any other task takes too much time to execute (it can happen in Display Task, see https://github.com/InfiniTimeOrg/InfiniTime/issues/825), the timer task does not have the opportunity to run fast enough to detect and debounce presses on the button. This commit sets the following priorities: - [0] : Display Task - [1] : Timer and System tasks - [2] : BLE Host - [3] : BLE LL This way, we ensure that button presses will always be detected, even if the rendering of the display takes a huge amount of time.
Diffstat (limited to 'src/FreeRTOSConfig.h')
-rw-r--r--src/FreeRTOSConfig.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FreeRTOSConfig.h b/src/FreeRTOSConfig.h
index adbbc8f0..5462b93c 100644
--- a/src/FreeRTOSConfig.h
+++ b/src/FreeRTOSConfig.h
@@ -60,7 +60,7 @@
#define configUSE_TICKLESS_IDLE_SIMPLE_DEBUG 0 /* See into vPortSuppressTicksAndSleep source code for explanation */
#define configCPU_CLOCK_HZ (SystemCoreClock)
#define configTICK_RATE_HZ 1024
-#define configMAX_PRIORITIES (3)
+#define configMAX_PRIORITIES (4)
#define configMINIMAL_STACK_SIZE (120)
#define configTOTAL_HEAP_SIZE (1024 * 17)
#define configMAX_TASK_NAME_LEN (4)
@@ -93,7 +93,7 @@
/* Software timer definitions. */
#define configUSE_TIMERS 1
-#define configTIMER_TASK_PRIORITY (0)
+#define configTIMER_TASK_PRIORITY (1)
#define configTIMER_QUEUE_LENGTH 32
#define configTIMER_TASK_STACK_DEPTH (300)