mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 05:34:59 -05:00
Replace configASSERT define check with configASSERT_DEFINED
This commit is contained in:
parent
810b387d21
commit
e37d32b3f4
60 changed files with 60 additions and 60 deletions
|
|
@ -148,7 +148,7 @@ value was found to be above configMAX_SYSCALL_INTERRUPT_PRIORITY when an ISR
|
|||
safe FreeRTOS API function was executed. ISR safe FreeRTOS API functions are
|
||||
those that end in FromISR. FreeRTOS maintains a separate interrupt API to
|
||||
ensure API function and interrupt entry is as fast and as simple as possible. */
|
||||
#ifdef configASSERT
|
||||
#if configASSERT_DEFINED == 1
|
||||
#define portDISABLE_INTERRUPTS() \
|
||||
{ \
|
||||
uint32_t ulStatus; \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue