fix issue with SVC_Handler SVCall_Handler name between keil & xpresso start up file. Host freertos works with lpc17xx

This commit is contained in:
hathach
2014-03-04 14:15:10 +07:00
parent c11946f318
commit 93a60641ea
8 changed files with 180 additions and 173 deletions

View File

@@ -149,10 +149,14 @@ function can have. Note that lower priority have numerically higher values. */
/* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS
standard names. */
#define vPortSVCHandler SVCall_Handler
#define xPortPendSVHandler PendSV_Handler
#define xPortSysTickHandler SysTick_Handler
#define xPortPendSVHandler PendSV_Handler
#define xPortSysTickHandler SysTick_Handler
#ifdef __CODE_RED
#define vPortSVCHandler SVCall_Handler
#else
#define vPortSVCHandler SVC_Handler
#endif
#endif /* FREERTOS_CONFIG_H */