From: richardbarry Date: Wed, 25 Jan 2012 09:23:55 +0000 (+0000) Subject: Change FreeRTOSConfig.h for the LPCXpresso CM0 demo as there seem to be two forms... X-Git-Tag: V7.1.1~67 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2f0aa8998280072fee69344bc797e0c882fa0f4c;p=freertos 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 --- 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