]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/portable/Paradigm/Tern_EE/small/portmacro.h
Replace standard types with stdint.h types.
[freertos] / FreeRTOS / Source / portable / Paradigm / Tern_EE / small / portmacro.h
index fe7bca553f1e77a24fa312ea01cdc053137045df..5a913aa7dd95747f76480cd378f98101eb7e0574 100644 (file)
@@ -1,5 +1,5 @@
 /*\r
-    FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. \r
+    FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd.\r
     All rights reserved\r
 \r
     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
@@ -71,7 +71,7 @@ extern "C" {
 #endif\r
 \r
 /*-----------------------------------------------------------\r
- * Port specific definitions.  \r
+ * Port specific definitions.\r
  *\r
  * The settings in this file configure FreeRTOS correctly for the\r
  * given hardware and compiler.\r
@@ -86,17 +86,22 @@ extern "C" {
 #define portDOUBLE             long\r
 #define portLONG               long\r
 #define portSHORT              int\r
-#define portSTACK_TYPE unsigned portSHORT\r
-#define portBASE_TYPE  portSHORT\r
+#define portSTACK_TYPE uint16_t\r
+#define portBASE_TYPE  short\r
+\r
+typedef portSTACK_TYPE StackType_t;\r
+typedef short BaseType_t;\r
+typedef unsigned short UBaseType_t;\r
+\r
 \r
 typedef void ( __interrupt __far *pxISR )();\r
 \r
 #if( configUSE_16_BIT_TICKS == 1 )\r
-       typedef unsigned portSHORT portTickType;\r
-       #define portMAX_DELAY ( portTickType ) 0xffff\r
+       typedef uint16_t TickType_t;\r
+       #define portMAX_DELAY ( TickType_t ) 0xffff\r
 #else\r
-       typedef unsigned portLONG portTickType;\r
-       #define portMAX_DELAY ( portTickType ) 0xffffffffUL\r
+       typedef uint32_t TickType_t;\r
+       #define portMAX_DELAY ( TickType_t ) 0xffffffffUL\r
 #endif\r
 /*-----------------------------------------------------------*/\r
 \r
@@ -115,8 +120,8 @@ typedef void ( __interrupt __far *pxISR )();
 #define portNOP()                                              __asm{ nop }\r
 #define portSTACK_GROWTH                               ( -1 )\r
 #define portSWITCH_INT_NUMBER                  0x80\r
-#define portYIELD()                                            __asm{ int portSWITCH_INT_NUMBER } \r
-#define portTICK_RATE_MS                               ( ( portTickType ) 1000 / configTICK_RATE_HZ )          \r
+#define portYIELD()                                            __asm{ int portSWITCH_INT_NUMBER }\r
+#define portTICK_RATE_MS                               ( ( TickType_t ) 1000 / configTICK_RATE_HZ )\r
 #define portBYTE_ALIGNMENT                             2\r
 #define portINITIAL_SW                                 ( ( portSTACK_TYPE ) 0x0202 )   /* Start the tasks with interrupts enabled. */\r
 /*-----------------------------------------------------------*/\r