aboutsummaryrefslogtreecommitdiffstats
path: root/src/gos/gos_freertos.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gos/gos_freertos.h')
-rw-r--r--src/gos/gos_freertos.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gos/gos_freertos.h b/src/gos/gos_freertos.h
index b65efdac..90c5af4c 100644
--- a/src/gos/gos_freertos.h
+++ b/src/gos/gos_freertos.h
@@ -33,9 +33,9 @@ typedef void gThreadreturn;
typedef portBASE_TYPE gThreadpriority;
#define MAX_SEMAPHORE_COUNT ((gSemcount)(((unsigned long)((gSemcount)(-1))) >> 1))
-#define LOW_PRIORITY 0
-#define NORMAL_PRIORITY configMAX_PRIORITIES/2
-#define HIGH_PRIORITY configMAX_PRIORITIES-1
+#define gThreadpriorityLow 0
+#define gThreadpriorityNormal configMAX_PRIORITIES/2
+#define gThreadpriorityHigh configMAX_PRIORITIES-1
/* FreeRTOS will allocate the stack when creating the thread */
#define DECLARE_THREAD_STACK(name, sz) uint8_t name[1]