Skip to content

Commit b384312

Browse files
committed
Fix spelling
1 parent c0585ad commit b384312

File tree

132 files changed

+215
-215
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+215
-215
lines changed

examples/coverity/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ commands in a terminal:
3535
~~~
3636
2. Create the build files using CMake in a `build` directory:
3737

38-
Singe core FreeRTOS:
38+
Single core FreeRTOS:
3939
~~~
4040
cmake -B build -S examples/coverity
4141
~~~

examples/template_configuration/FreeRTOSConfig.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -643,7 +643,7 @@
643643
* contain the most recent error for that task. */
644644
#define configUSE_POSIX_ERRNO 0
645645

646-
/* Set the following INCLUDE_* constants to 1 to incldue the named API function,
646+
/* Set the following INCLUDE_* constants to 1 to include the named API function,
647647
* or 0 to exclude the named API function. Most linkers will remove unused
648648
* functions even when the constant is 1. */
649649
#define INCLUDE_vTaskPrioritySet 1

include/task.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2372,7 +2372,7 @@ char * pcTaskGetName( TaskHandle_t xTaskToQuery ) PRIVILEGED_FUNCTION;
23722372
*
23732373
* WARN: This function assumes that the pcWriteBuffer is of length
23742374
* configSTATS_BUFFER_MAX_LENGTH. This function is there only for
2375-
* backward compatiblity. New applications are recommended to use
2375+
* backward compatibility. New applications are recommended to use
23762376
* vTaskGetRunTimeStatistics and supply the length of the pcWriteBuffer
23772377
* explicitly.
23782378
*

portable/ARMv8M/non_secure/port.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
* The FreeRTOS Cortex M33 port can be configured to run on the Secure Side only
5757
* i.e. the processor boots as secure and never jumps to the non-secure side.
5858
* The Trust Zone support in the port must be disabled in order to run FreeRTOS
59-
* on the secure side. The following are the valid configuration seetings:
59+
* on the secure side. The following are the valid configuration settings:
6060
*
6161
* 1. Run FreeRTOS on the Secure Side:
6262
* configRUN_FREERTOS_SECURE_ONLY = 1 and configENABLE_TRUSTZONE = 0

portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portasm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ uint32_t ulSetInterruptMask( void ) /* __attribute__(( naked )) PRIVILEGED_FUNCT
227227
" \n"
228228
" mrs r0, basepri \n" /* r0 = basepri. Return original basepri value. */
229229
" mov r1, %0 \n" /* r1 = configMAX_SYSCALL_INTERRUPT_PRIORITY. */
230-
" msr basepri, r1 \n" /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
230+
" msr basepri, r1 \n" /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
231231
" dsb \n"
232232
" isb \n"
233233
" bx lr \n" /* Return. */
@@ -304,7 +304,7 @@ void vClearInterruptMask( __attribute__( ( unused ) ) uint32_t ulMask ) /* __att
304304
" \n"
305305
" select_next_task: \n"
306306
" mov r0, %0 \n" /* r0 = configMAX_SYSCALL_INTERRUPT_PRIORITY */
307-
" msr basepri, r0 \n" /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
307+
" msr basepri, r0 \n" /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
308308
" dsb \n"
309309
" isb \n"
310310
" bl vTaskSwitchContext \n"
@@ -447,7 +447,7 @@ void vClearInterruptMask( __attribute__( ( unused ) ) uint32_t ulMask ) /* __att
447447
" \n"
448448
" select_next_task: \n"
449449
" mov r0, %0 \n" /* r0 = configMAX_SYSCALL_INTERRUPT_PRIORITY */
450-
" msr basepri, r0 \n" /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
450+
" msr basepri, r0 \n" /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
451451
" dsb \n"
452452
" isb \n"
453453
" bl vTaskSwitchContext \n"

portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portasm.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ uint32_t ulSetInterruptMask( void ) /* __attribute__(( naked )) PRIVILEGED_FUNCT
223223
" \n"
224224
" mrs r0, basepri \n" /* r0 = basepri. Return original basepri value. */
225225
" mov r1, %0 \n" /* r1 = configMAX_SYSCALL_INTERRUPT_PRIORITY. */
226-
" msr basepri, r1 \n" /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
226+
" msr basepri, r1 \n" /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
227227
" dsb \n"
228228
" isb \n"
229229
" bx lr \n" /* Return. */
@@ -283,7 +283,7 @@ void vClearInterruptMask( __attribute__( ( unused ) ) uint32_t ulMask ) /* __att
283283
" \n"
284284
" select_next_task: \n"
285285
" mov r0, %0 \n" /* r0 = configMAX_SYSCALL_INTERRUPT_PRIORITY */
286-
" msr basepri, r0 \n" /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
286+
" msr basepri, r0 \n" /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
287287
" dsb \n"
288288
" isb \n"
289289
" bl vTaskSwitchContext \n"
@@ -386,7 +386,7 @@ void vClearInterruptMask( __attribute__( ( unused ) ) uint32_t ulMask ) /* __att
386386
" str r0, [r1] \n" /* Save the new top of stack in TCB. */
387387
" \n"
388388
" mov r0, %0 \n" /* r0 = configMAX_SYSCALL_INTERRUPT_PRIORITY */
389-
" msr basepri, r0 \n" /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
389+
" msr basepri, r0 \n" /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
390390
" dsb \n"
391391
" isb \n"
392392
" bl vTaskSwitchContext \n"

portable/ARMv8M/non_secure/portable/IAR/ARM_CM33/portasm.s

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ vStartFirstTask:
216216
ulSetInterruptMask:
217217
mrs r0, basepri /* r0 = basepri. Return original basepri value. */
218218
mov r1, #configMAX_SYSCALL_INTERRUPT_PRIORITY
219-
msr basepri, r1 /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
219+
msr basepri, r1 /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
220220
dsb
221221
isb
222222
bx lr /* Return. */
@@ -275,7 +275,7 @@ PendSV_Handler:
275275

276276
select_next_task:
277277
mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY
278-
msr basepri, r0 /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
278+
msr basepri, r0 /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
279279
dsb
280280
isb
281281
bl vTaskSwitchContext
@@ -409,7 +409,7 @@ PendSV_Handler:
409409

410410
select_next_task:
411411
mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY
412-
msr basepri, r0 /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
412+
msr basepri, r0 /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
413413
dsb
414414
isb
415415
bl vTaskSwitchContext

portable/ARMv8M/non_secure/portable/IAR/ARM_CM33_NTZ/portasm.s

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ vStartFirstTask:
202202
ulSetInterruptMask:
203203
mrs r0, basepri /* r0 = basepri. Return original basepri value. */
204204
mov r1, #configMAX_SYSCALL_INTERRUPT_PRIORITY
205-
msr basepri, r1 /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
205+
msr basepri, r1 /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
206206
dsb
207207
isb
208208
bx lr /* Return. */
@@ -246,7 +246,7 @@ PendSV_Handler:
246246

247247
select_next_task:
248248
mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY
249-
msr basepri, r0 /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
249+
msr basepri, r0 /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
250250
dsb
251251
isb
252252
bl vTaskSwitchContext
@@ -340,7 +340,7 @@ PendSV_Handler:
340340
str r0, [r1] /* Save the new top of stack in TCB. */
341341

342342
mov r0, #configMAX_SYSCALL_INTERRUPT_PRIORITY
343-
msr basepri, r0 /* Disable interrupts upto configMAX_SYSCALL_INTERRUPT_PRIORITY. */
343+
msr basepri, r0 /* Disable interrupts up to configMAX_SYSCALL_INTERRUPT_PRIORITY. */
344344
dsb
345345
isb
346346
bl vTaskSwitchContext

portable/ARMv8M/non_secure/portasm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ BaseType_t xIsPrivileged( void ) __attribute__( ( naked ) );
5252
* @brief Raises the privilege level by clearing the bit 0 of the CONTROL
5353
* register.
5454
*
55-
* @note This is a privileged function and should only be called from the kenrel
55+
* @note This is a privileged function and should only be called from the kernel
5656
* code.
5757
*
5858
* Bit 0 of the CONTROL register defines the privilege level of Thread Mode.

portable/ARMv8M/non_secure/portmacrocommon.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ extern void vClearInterruptMask( uint32_t ulMask ) /* __attribute__(( naked )) P
137137
#define portPRIVILEGE_BIT ( 0x0UL )
138138
#endif /* configENABLE_MPU */
139139

140-
/* MPU settings that can be overriden in FreeRTOSConfig.h. */
140+
/* MPU settings that can be overridden in FreeRTOSConfig.h. */
141141
#ifndef configTOTAL_MPU_REGIONS
142142
/* Define to 8 for backward compatibility. */
143143
#define configTOTAL_MPU_REGIONS ( 8UL )

0 commit comments

Comments
 (0)