Skip to content

Commit 9a62842

Browse files
authored
Fix typo in check comment of configMAX_SYSCALL_INTERRUPT_PRIORITY (#690)
1 parent 17a46c2 commit 9a62842

File tree

37 files changed

+37
-37
lines changed

37 files changed

+37
-37
lines changed

portable/ARMv8M/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/CCS/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ BaseType_t xPortStartScheduler( void )
249249
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
250250
configASSERT( ucMaxSysCallPriority );
251251

252-
/* Check that the bits not implemented bits in hardware are zero in
252+
/* Check that the bits not implemented in hardware are zero in
253253
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
254254
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
255255

portable/CCS/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ BaseType_t xPortStartScheduler( void )
268268
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
269269
configASSERT( ucMaxSysCallPriority );
270270

271-
/* Check that the bits not implemented bits in hardware are zero in
271+
/* Check that the bits not implemented in hardware are zero in
272272
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
273273
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
274274

portable/GCC/ARM_CM23/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM23_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ BaseType_t xPortStartScheduler( void )
292292
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
293293
configASSERT( ucMaxSysCallPriority );
294294

295-
/* Check that the bits not implemented bits in hardware are zero in
295+
/* Check that the bits not implemented in hardware are zero in
296296
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
297297
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
298298

portable/GCC/ARM_CM33/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM33_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM35P/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM35P_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM3_MPU/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ BaseType_t xPortStartScheduler( void )
415415
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
416416
configASSERT( ucMaxSysCallPriority );
417417

418-
/* Check that the bits not implemented bits in hardware are zero in
418+
/* Check that the bits not implemented in hardware are zero in
419419
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
420420
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
421421

portable/GCC/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ BaseType_t xPortStartScheduler( void )
335335
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
336336
configASSERT( ucMaxSysCallPriority );
337337

338-
/* Check that the bits not implemented bits in hardware are zero in
338+
/* Check that the bits not implemented in hardware are zero in
339339
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
340340
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
341341

portable/GCC/ARM_CM4_MPU/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ BaseType_t xPortStartScheduler( void )
458458
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
459459
configASSERT( ucMaxSysCallPriority );
460460

461-
/* Check that the bits not implemented bits in hardware are zero in
461+
/* Check that the bits not implemented in hardware are zero in
462462
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
463463
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
464464

portable/GCC/ARM_CM55/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM55_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM7/r0p1/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ BaseType_t xPortStartScheduler( void )
323323
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
324324
configASSERT( ucMaxSysCallPriority );
325325

326-
/* Check that the bits not implemented bits in hardware are zero in
326+
/* Check that the bits not implemented in hardware are zero in
327327
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
328328
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
329329

portable/GCC/ARM_CM85/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/GCC/ARM_CM85_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM23/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM23_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ BaseType_t xPortStartScheduler( void )
241241
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
242242
configASSERT( ucMaxSysCallPriority );
243243

244-
/* Check that the bits not implemented bits in hardware are zero in
244+
/* Check that the bits not implemented in hardware are zero in
245245
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
246246
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
247247

portable/IAR/ARM_CM33/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM33_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM35P/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM35P_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ BaseType_t xPortStartScheduler( void )
279279
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
280280
configASSERT( ucMaxSysCallPriority );
281281

282-
/* Check that the bits not implemented bits in hardware are zero in
282+
/* Check that the bits not implemented in hardware are zero in
283283
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
284284
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
285285

portable/IAR/ARM_CM4F_MPU/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ BaseType_t xPortStartScheduler( void )
393393
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
394394
configASSERT( ucMaxSysCallPriority );
395395

396-
/* Check that the bits not implemented bits in hardware are zero in
396+
/* Check that the bits not implemented in hardware are zero in
397397
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
398398
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
399399

portable/IAR/ARM_CM55/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM55_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM7/r0p1/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ BaseType_t xPortStartScheduler( void )
267267
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
268268
configASSERT( ucMaxSysCallPriority );
269269

270-
/* Check that the bits not implemented bits in hardware are zero in
270+
/* Check that the bits not implemented in hardware are zero in
271271
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
272272
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
273273

portable/IAR/ARM_CM85/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/IAR/ARM_CM85_NTZ/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ BaseType_t xPortStartScheduler( void ) /* PRIVILEGED_FUNCTION */
11281128
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
11291129
configASSERT( ucMaxSysCallPriority );
11301130

1131-
/* Check that the bits not implemented bits in hardware are zero in
1131+
/* Check that the bits not implemented in hardware are zero in
11321132
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
11331133
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
11341134

portable/MikroC/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ BaseType_t xPortStartScheduler( void )
329329
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
330330
configASSERT( ucMaxSysCallPriority );
331331

332-
/* Check that the bits not implemented bits in hardware are zero in
332+
/* Check that the bits not implemented in hardware are zero in
333333
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
334334
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
335335

portable/RVDS/ARM_CM3/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ BaseType_t xPortStartScheduler( void )
294294
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
295295
configASSERT( ucMaxSysCallPriority );
296296

297-
/* Check that the bits not implemented bits in hardware are zero in
297+
/* Check that the bits not implemented in hardware are zero in
298298
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
299299
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
300300

portable/RVDS/ARM_CM4F/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ BaseType_t xPortStartScheduler( void )
360360
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
361361
configASSERT( ucMaxSysCallPriority );
362362

363-
/* Check that the bits not implemented bits in hardware are zero in
363+
/* Check that the bits not implemented in hardware are zero in
364364
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
365365
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
366366

portable/RVDS/ARM_CM4_MPU/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -453,7 +453,7 @@ BaseType_t xPortStartScheduler( void )
453453
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
454454
configASSERT( ucMaxSysCallPriority );
455455

456-
/* Check that the bits not implemented bits in hardware are zero in
456+
/* Check that the bits not implemented in hardware are zero in
457457
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
458458
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
459459

portable/RVDS/ARM_CM7/r0p1/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ BaseType_t xPortStartScheduler( void )
344344
* See https://www.FreeRTOS.org/RTOS-Cortex-M3-M4.html */
345345
configASSERT( ucMaxSysCallPriority );
346346

347-
/* Check that the bits not implemented bits in hardware are zero in
347+
/* Check that the bits not implemented in hardware are zero in
348348
* configMAX_SYSCALL_INTERRUPT_PRIORITY. */
349349
configASSERT( ( configMAX_SYSCALL_INTERRUPT_PRIORITY & ( ~ucMaxPriorityValue ) ) == 0U );
350350

0 commit comments

Comments
 (0)