summaryrefslogtreecommitdiff
path: root/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c')
-rw-r--r--FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c b/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c
index be4fc61da..169a6063f 100644
--- a/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c
+++ b/FreeRTOS/Source/portable/GCC/ARM7_LPC23xx/portISR.c
@@ -75,12 +75,12 @@
#include "task.h"
/* Constants required to handle interrupts. */
-#define portTIMER_MATCH_ISR_BIT ( ( unsigned portCHAR ) 0x01 )
-#define portCLEAR_VIC_INTERRUPT ( ( unsigned portLONG ) 0 )
+#define portTIMER_MATCH_ISR_BIT ( ( uint8_t ) 0x01 )
+#define portCLEAR_VIC_INTERRUPT ( ( uint32_t ) 0 )
/* Constants required to handle critical sections. */
-#define portNO_CRITICAL_NESTING ( ( unsigned portLONG ) 0 )
-volatile unsigned portLONG ulCriticalNesting = 9999UL;
+#define portNO_CRITICAL_NESTING ( ( uint32_t ) 0 )
+volatile uint32_t ulCriticalNesting = 9999UL;
/*-----------------------------------------------------------*/