mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Add in the portSET_INTERRUPT_MASK_FROM_ISR() and portCLEAR_INTERRUPT_MASK_FROM_ISR() default (empty) macros.
This commit is contained in:
parent
5d27f3ccf7
commit
6177c6e4a4
|
@ -189,6 +189,15 @@ typedef portBASE_TYPE (*pdTASK_HOOK_CODE)( void * );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
#ifndef portSET_INTERRUPT_MASK_FROM_ISR
|
||||||
|
#define portSET_INTERRUPT_MASK_FROM_ISR()
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef portCLEAR_INTERRUPT_MASK_FROM_ISR
|
||||||
|
#define portCLEAR_INTERRUPT_MASK_FROM_ISR()
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
/* Remove any unused trace macros. */
|
/* Remove any unused trace macros. */
|
||||||
#ifndef traceSTART
|
#ifndef traceSTART
|
||||||
/* Used to perform any necessary initialisation - for example, open a file
|
/* Used to perform any necessary initialisation - for example, open a file
|
||||||
|
|
Loading…
Reference in a new issue