]> git.sur5r.net Git - freertos/blobdiff - FreeRTOS/Source/portable/Renesas/RX600/portmacro.h
Replace standard types with stdint.h types.
[freertos] / FreeRTOS / Source / portable / Renesas / RX600 / portmacro.h
index 847021405ccb65a4e338e85b200d45bdf441f5e9..e1fe541c506fd8b2dcd691312b0cadbc6523d6fc 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
@@ -91,22 +91,26 @@ portSTACK_TYPE and portBASE_TYPE. */
 #define portDOUBLE             double\r
 #define portLONG               long\r
 #define portSHORT              short\r
-#define portSTACK_TYPE unsigned portLONG\r
+#define portSTACK_TYPE uint32_t\r
 #define portBASE_TYPE  long\r
 \r
+typedef portSTACK_TYPE StackType_t;\r
+typedef long BaseType_t;\r
+typedef unsigned long UBaseType_t;\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
 /* Hardware specifics. */\r
 #define portBYTE_ALIGNMENT                             8       /* Could make four, according to manual. */\r
 #define portSTACK_GROWTH                               -1\r
-#define portTICK_RATE_MS                               ( ( portTickType ) 1000 / configTICK_RATE_HZ )\r
+#define portTICK_RATE_MS                               ( ( TickType_t ) 1000 / configTICK_RATE_HZ )\r
 #define portNOP()                                              nop()\r
 \r
 \r
@@ -128,14 +132,14 @@ static void vPortYield( void )
 #define portYIELD()    vPortYield()\r
 #define portYIELD_FROM_ISR( x )        if( x != pdFALSE ) portYIELD()\r
 \r
-/* These macros should not be called directly, but through the \r
-taskENTER_CRITICAL() and taskEXIT_CRITICAL() macros.  An extra check is \r
-performed if configASSERT() is defined to ensure an assertion handler does not \r
-inadvertently attempt to lower the IPL when the call to assert was triggered \r
-because the IPL value was found to be above    configMAX_SYSCALL_INTERRUPT_PRIORITY \r
-when an ISR safe FreeRTOS API function was executed.  ISR safe FreeRTOS API \r
-functions are those that end in FromISR.  FreeRTOS maintains a separate \r
-interrupt API to ensure API function and interrupt entry is as fast and as \r
+/* These macros should not be called directly, but through the\r
+taskENTER_CRITICAL() and taskEXIT_CRITICAL() macros.  An extra check is\r
+performed if configASSERT() is defined to ensure an assertion handler does not\r
+inadvertently attempt to lower the IPL when the call to assert was triggered\r
+because the IPL value was found to be above    configMAX_SYSCALL_INTERRUPT_PRIORITY\r
+when an ISR safe FreeRTOS API function was executed.  ISR safe FreeRTOS API\r
+functions are those that end in FromISR.  FreeRTOS maintains a separate\r
+interrupt API to ensure API function and interrupt entry is as fast and as\r
 simple as possible. */\r
 #define portENABLE_INTERRUPTS()        set_ipl( ( long ) 0 )\r
 #ifdef configASSERT\r