From 0f7f97f3a3764ea092a85decdd02c0fb23117c52 Mon Sep 17 00:00:00 2001 From: Richard Barry Date: Wed, 25 Jan 2012 09:23:55 +0000 Subject: [PATCH] Change FreeRTOSConfig.h for the LPCXpresso CM0 demo as there seem to be two forms of the CMSIS names. --- .../RTOSDemo/Source/FreeRTOSConfig.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Demo/CORTEX_M0_LPC1114_LPCXpresso/RTOSDemo/Source/FreeRTOSConfig.h b/Demo/CORTEX_M0_LPC1114_LPCXpresso/RTOSDemo/Source/FreeRTOSConfig.h index 2f00c1243..1f0fc4c86 100644 --- a/Demo/CORTEX_M0_LPC1114_LPCXpresso/RTOSDemo/Source/FreeRTOSConfig.h +++ b/Demo/CORTEX_M0_LPC1114_LPCXpresso/RTOSDemo/Source/FreeRTOSConfig.h @@ -116,8 +116,8 @@ header file. */ #define configASSERT( x ) if( ( x ) == 0 ) { taskDISABLE_INTERRUPTS(); for( ;; ); } /* Definitions that map the FreeRTOS port interrupt handlers to their CMSIS -standard names. */ -#define vPortSVCHandler SVC_Handler +standard names - or at least those used in the unmodified vector table. */ +#define vPortSVCHandler SVCall_Handler #define xPortPendSVHandler PendSV_Handler #define xPortSysTickHandler SysTick_Handler