mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Change vTickISR() to vPortTickISR() in the MSP430X IAR port layer.
This commit is contained in:
parent
98720fb72e
commit
38055abf18
|
@ -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();
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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). */
|
||||
|
|
Loading…
Reference in a new issue