mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 11:53:53 -04:00
Change vTickISR() to vPortTickISR() in the MSP430X IAR port layer.
This commit is contained in:
parent
98720fb72e
commit
38055abf18
2 changed files with 5 additions and 5 deletions
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue