mirror of
https://github.com/FreeRTOS/FreeRTOS.git
synced 2025-06-27 20:38:06 +08:00
Continue development of the MSP430X port layer for IAR. Still a work in progress.
This commit is contained in:
@ -145,10 +145,8 @@ extern void vPortYield( void );
|
||||
#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void *pvParameters )
|
||||
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )
|
||||
|
||||
#if configINTERRUPT_EXAMPLE_METHOD == 2
|
||||
extern void vTaskSwitchContext( void );
|
||||
#define portYIELD_FROM_ISR( x ) if( x ) vTaskSwitchContext()
|
||||
#endif /* configINTERRUPT_EXAMPLE_METHOD */
|
||||
extern void vTaskSwitchContext( void );
|
||||
#define portYIELD_FROM_ISR( x ) if( x ) vPortYield()
|
||||
|
||||
void vApplicationSetupTimerInterrupt( void );
|
||||
|
||||
|
Reference in New Issue
Block a user