Skip to content

Commit 295d124

Browse files
committed
Format and spell check all files in the portable directory
1 parent 1c1e4a4 commit 295d124

File tree

475 files changed

+112413
-108043
lines changed

Some content is hidden

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

475 files changed

+112413
-108043
lines changed

.github/.cSpellWords.txt

Lines changed: 812 additions & 0 deletions
Large diffs are not rendered by default.

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ jobs:
2727
with:
2828
path: portable/MemMang
2929

30+
- name: Check formatting of All
31+
if: success() || failure()
32+
uses: FreeRTOS/CI-CD-Github-Actions/formatting@v2
33+
3034
spell-check:
3135
runs-on: ubuntu-latest
3236
steps:
@@ -36,7 +40,6 @@ jobs:
3640
uses: FreeRTOS/CI-CD-GitHub-Actions/spellings@v2
3741
with:
3842
path: ./
39-
exclude-dirs: portable
4043
exclude-files: History.txt
4144

4245
link-verifier:

History.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Changes between FreeRTOS V10.5.1 and FreeRTOS 10.6.0 released July 13, 2023
9292
+ Fix the scheduler logic in a couple of places to not preempt a task when an
9393
equal priority task becomes ready.
9494
+ Add macros used in FreeRTOS-Plus libraries. Contributed by @Holden.
95-
+ Fix clang compiler warnings. Contributed by @phelter.
95+
+ Fix clang compiler warnings. Contributed by @phelder.
9696
+ Add assertions to ARMv8-M ports to detect when FreeRTOS APIs are called from
9797
interrupts with priority higher than the configMAX_SYSCALL_INTERRUPT_PRIORITY.
9898
Contributed by @urutva.
@@ -109,7 +109,7 @@ Changes between FreeRTOS V10.5.1 and FreeRTOS 10.6.0 released July 13, 2023
109109
by @jacky309.
110110
+ Add portMEMORY_BARRIER to Microblaze port. Contributed by @bbain.
111111
+ Add portPOINTER_SIZE_TYPE definition for ATmega port. Contributed by @jputcu.
112-
+ Multiple improvements in the CMake support. Contributed by @phelte and @cookpate.
112+
+ Multiple improvements in the CMake support. Contributed by @phelde and @cookpate.
113113

114114
Changes between FreeRTOS V10.5.0 and FreeRTOS V10.5.1 released November 16 2022
115115
+ Updated the kernel version in manifest and SBOM

cspell.config.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ version: '0.2'
44
# Allows things like stringLength
55
allowCompoundWords: true
66
useGitignore: true
7+
languageSettings:
8+
- allowCompoundWords: true
9+
caseSensitive: false
10+
enabled: true
11+
languageId: c
12+
locale: "*"
713
# Could split this up? And do a dictionary for each repo?
814
# But feel like if this isn't super slow
915
# That having just one single dictionary might be nicer?
@@ -14,9 +20,8 @@ dictionaryDefinitions:
1420
dictionaries:
1521
- freertos-words
1622
ignorePaths:
17-
- 'node_modules'
1823
- '.cSpellWords.txt'
1924
- 'dependency'
2025
- 'docs'
2126
- 'ThirdParty'
22-
27+
- 'History.txt'

include/FreeRTOS.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1071,6 +1071,10 @@
10711071
#define configAPPLICATION_ALLOCATED_HEAP 0
10721072
#endif
10731073

1074+
#ifndef configENABLE_HEAP_PROTECTOR
1075+
#define configENABLE_HEAP_PROTECTOR 0
1076+
#endif
1077+
10741078
#ifndef configUSE_TASK_NOTIFICATIONS
10751079
#define configUSE_TASK_NOTIFICATIONS 1
10761080
#endif

portable/ARMv8M/ReadMe.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This directory tree contains the master copy of the FreeeRTOS Armv8-M and
1+
This directory tree contains the master copy of the FreeRTOS Armv8-M and
22
Armv8.1-M ports.
33
Do not use the files located here! These file are copied into separate
44
FreeRTOS/Source/portable/[compiler]/ARM_CM[23|33|55|85]_NNN directories prior to each

0 commit comments

Comments
 (0)