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();
}

View file

@ -58,7 +58,7 @@
IMPORT vTaskSwitchContext
IMPORT vPortSetupTimerInterrupt
EXPORT vTickISR
EXPORT vPortTickISR
EXPORT vPortYield
EXPORT xPortStartScheduler
@ -74,7 +74,7 @@
RSEG ISR_CODE
vTickISR:
vPortTickISR:
/* The sr is not saved in portSAVE_CONTEXT() because vPortYield() needs
to save it manually before it gets modified (interrupts get disabled). */