From f512c4f2accb59eac5d8c04e2800b19b491089af Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Thu, 17 Dec 2020 21:42:33 +1100 Subject: [PATCH] Address PR comments --- workspace/TS100/Core/BSP/Pine64/FreeRTOSConfig.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/workspace/TS100/Core/BSP/Pine64/FreeRTOSConfig.h b/workspace/TS100/Core/BSP/Pine64/FreeRTOSConfig.h index 4c2e80f5..0d1ef540 100755 --- a/workspace/TS100/Core/BSP/Pine64/FreeRTOSConfig.h +++ b/workspace/TS100/Core/BSP/Pine64/FreeRTOSConfig.h @@ -1,6 +1,5 @@ #ifndef FREERTOS_CONFIG_H #define FREERTOS_CONFIG_H -/* Ensure stdint is only used by the compiler, and not the assembler. */ #include #include "nuclei_sdk_soc.h" //RISC-V configuration @@ -55,7 +54,7 @@ /* Software timer related definitions. */ #define configUSE_TIMERS 0 -#define configTIMER_TASK_PRIORITY3 +#define configTIMER_TASK_PRIORITY 3 #define configTIMER_QUEUE_LENGTH 5 #define configTIMER_TASK_STACK_DEPTH configMINIMAL_STACK_SIZE @@ -68,7 +67,8 @@ /* Define to trap errors during development. */ #define configASSERT(x) \ - if ((x) == 0) { \ + if ((x) == 0) \ + { \ taskDISABLE_INTERRUPTS(); \ for (;;) \ ; \