From 2f0aa8998280072fee69344bc797e0c882fa0f4c Mon Sep 17 00:00:00 2001 From: richardbarry 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. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1679 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- .../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 -- 2.39.5