From c8f192ae3491c9e0603555def5ecb896f193246a Mon Sep 17 00:00:00 2001 From: richardbarry Date: Thu, 13 Jan 2011 10:28:40 +0000 Subject: [PATCH] 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 --- Source/portable/IAR/MSP430X/port.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.39.5