mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 09:07:46 -04:00
ATmegaxxxx - add portYIELD_FROM_ISR
This commit is contained in:
parent
7b02dd55b6
commit
af8ad187f7
1 changed files with 3 additions and 0 deletions
|
@ -131,6 +131,9 @@ typedef uint8_t UBaseType_t;
|
||||||
/* Kernel utilities. */
|
/* Kernel utilities. */
|
||||||
extern void vPortYield( void ) __attribute__ ( ( naked ) );
|
extern void vPortYield( void ) __attribute__ ( ( naked ) );
|
||||||
#define portYIELD() vPortYield()
|
#define portYIELD() vPortYield()
|
||||||
|
|
||||||
|
extern void vPortYieldFromISR( void ) __attribute__ ( ( naked ) );
|
||||||
|
#define portYIELD_FROM_ISR() vPortYieldFromISR()
|
||||||
/*-----------------------------------------------------------*/
|
/*-----------------------------------------------------------*/
|
||||||
|
|
||||||
#if defined(__AVR_3_BYTE_PC__)
|
#if defined(__AVR_3_BYTE_PC__)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue