Change vTickISR() to vPortTickISR() in the MSP430X IAR port layer.

This commit is contained in:
Richard Barry 2010-12-30 14:00:30 +00:00
parent 98720fb72e
commit 38055abf18
2 changed files with 5 additions and 5 deletions

View file

@ -172,11 +172,11 @@ void vPortSetupTimerInterrupt( void )
/*-----------------------------------------------------------*/
#pragma vector=configTICK_INTERRUPT_VECTOR
__interrupt void vISR( void )
__interrupt void vTickISREntry( void )
{
extern void vTickISR( void );
extern void vPortTickISR( void );
vTickISR();
vPortTickISR();
}