mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 13:45:00 -05:00
Fix two incorrect ifdef guards in mpu_wrappers_v2_asm.S
This commit is contained in:
parent
ca9f1cca49
commit
72ee9e302d
1 changed files with 3 additions and 3 deletions
|
|
@ -466,7 +466,7 @@ MPU_xStreamBufferNextMessageLengthBytes:
|
|||
|
||||
/* ----------------------------------------------------------------------------------- */
|
||||
|
||||
#if INCLUDE_xTaskDelayUntil == 1
|
||||
#if ( INCLUDE_xTaskDelayUntil == 1 ) || ( INCLUDE_vTaskDelayUntil == 1 )
|
||||
.extern MPU_xTaskDelayUntilImpl
|
||||
/**
|
||||
* Function: TaskHandle_t MPU_xTaskDelayUntil
|
||||
|
|
@ -483,7 +483,7 @@ MPU_xStreamBufferNextMessageLengthBytes:
|
|||
|
||||
/* ------------------------------------------------------------------------------- */
|
||||
|
||||
#endif /* if ( INCLUDE_xTaskDelayUntil == 1 ) */
|
||||
#endif /* if ( INCLUDE_xTaskDelayUntil == 1 ) || ( INCLUDE_vTaskDelayUntil == 1 ) */
|
||||
|
||||
#if INCLUDE_xTaskAbortDelay == 1
|
||||
|
||||
|
|
@ -1025,7 +1025,7 @@ MPU_xStreamBufferNextMessageLengthBytes:
|
|||
|
||||
#endif /* if ( configUSE_QUEUE_SETS == 1 ) */
|
||||
|
||||
#if configQUEUE_REGISTRY_SIZE == 1
|
||||
#if configQUEUE_REGISTRY_SIZE > 0
|
||||
|
||||
/* ------------------------------------------------------------------------------- */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue