Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions config/arch/xtensa_esp32/FreeRTOSConfigArch.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,14 @@
#define DMOSI_TICK_TYPE_WIDTH_IN_BITS TICK_TYPE_WIDTH_32_BITS
#endif

/* Xtensa FreeRTOS port requires the maximum syscall interrupt priority to
* match the exception level used by the core. */
#ifndef configMAX_SYSCALL_INTERRUPT_PRIORITY
#define configMAX_SYSCALL_INTERRUPT_PRIORITY XCHAL_EXCM_LEVEL
#endif

#ifndef configMAX_API_CALL_INTERRUPT_PRIORITY
#define configMAX_API_CALL_INTERRUPT_PRIORITY configMAX_SYSCALL_INTERRUPT_PRIORITY
#endif

#endif /* FREERTOS_CONFIG_ARCH_H */