Fix typo in check comment of configMAX_SYSCALL_INTERRUPT_PRIORITY (#690)

This commit is contained in:
chinglee-iot 2023-06-21 17:35:18 +08:00 committed by GitHub
parent 17a46c252f
commit 9a6284262e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
37 changed files with 37 additions and 37 deletions

View file

@ -335,7 +335,7 @@ BaseType_t xPortStartScheduler( void )
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
configASSERT( ucMaxSysCallPriority );
/* Check that the bits not implemented bits in hardware are zero in
/* Check that the bits not implemented in hardware are zero in
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );