mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -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
|
#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 vTaskSwitchContext
|
||||||
IMPORT vPortSetupTimerInterrupt
|
IMPORT vPortSetupTimerInterrupt
|
||||||
|
|
||||||
EXPORT vTickISR
|
EXPORT vPortTickISR
|
||||||
EXPORT vPortYield
|
EXPORT vPortYield
|
||||||
EXPORT xPortStartScheduler
|
EXPORT xPortStartScheduler
|
||||||
|
|
||||||
|
@ -74,7 +74,7 @@
|
||||||
|
|
||||||
RSEG ISR_CODE
|
RSEG ISR_CODE
|
||||||
|
|
||||||
vTickISR:
|
vPortTickISR:
|
||||||
|
|
||||||
/* The sr is not saved in portSAVE_CONTEXT() because vPortYield() needs
|
/* The sr is not saved in portSAVE_CONTEXT() because vPortYield() needs
|
||||||
to save it manually before it gets modified (interrupts get disabled). */
|
to save it manually before it gets modified (interrupts get disabled). */
|
||||||
|
|
Loading…
Reference in a new issue