Make the tick ISR entry function use the __raw attribute in the IAR MSP430X port layer.

This commit is contained in:
Richard Barry 2011-01-13 10:28:40 +00:00
parent 6b661d03a5
commit 749edf57e7

View file

@ -197,7 +197,7 @@ void vPortSetupTimerInterrupt( void )
/*-----------------------------------------------------------*/
#pragma vector=configTICK_VECTOR
__interrupt void vTickISREntry( void )
__interrupt __raw void vTickISREntry( void )
{
extern void vPortTickISR( void );