From 749edf57e7be94134b2fd377ba21b4953f98e486 Mon Sep 17 00:00:00 2001 From: Richard Barry 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. --- 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 );