mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 01:29:21 -04:00
fix(freertos): Added missing Linux port layer macros
This commit is contained in:
parent
3640dc86bb
commit
bee3ff952e
@ -102,6 +102,8 @@ extern void vPortExitCritical( void );
|
||||
#define portENABLE_INTERRUPTS() portCLEAR_INTERRUPT_MASK()
|
||||
#define portENTER_CRITICAL(mux) {(void)mux; vPortEnterCritical();}
|
||||
#define portEXIT_CRITICAL(mux) {(void)mux; vPortExitCritical();}
|
||||
#define portENTER_CRITICAL_SAFE(mux) {(void)mux; vPortEnterCritical();}
|
||||
#define portEXIT_CRITICAL_SAFE(mux) {(void)mux; vPortExitCritical();}
|
||||
#define portENTER_CRITICAL_ISR(mux) portENTER_CRITICAL(mux)
|
||||
#define portEXIT_CRITICAL_ISR(mux) portEXIT_CRITICAL(mux)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user