From: richardbarry Date: Thu, 13 Jan 2011 10:28:40 +0000 (+0000) Subject: Make the tick ISR entry function use the __raw attribute in the IAR MSP430X port... X-Git-Tag: V6.1.1~12 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c8f192ae3491c9e0603555def5ecb896f193246a;p=freertos Make the tick ISR entry function use the __raw attribute in the IAR MSP430X port layer. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1245 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/IAR/MSP430X/port.c b/Source/portable/IAR/MSP430X/port.c index ac8901243..efff17761 100644 --- a/Source/portable/IAR/MSP430X/port.c +++ b/Source/portable/IAR/MSP430X/port.c @@ -197,7 +197,7 @@ void vPortSetupTimerInterrupt( void ) /*-----------------------------------------------------------*/ #pragma vector=configTICK_VECTOR -__interrupt void vTickISREntry( void ) +__interrupt __raw void vTickISREntry( void ) { extern void vPortTickISR( void );