mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 17:48:33 -04:00
Sample FreeRTOSConfig.h and template port (#812)
* config file experiments * adding a config file for an example * Added a template port and updated the CMakeLists * template and default configuration build * finalising the sample FreeRTOSConfig.h header file * removed .config hidden file * further reductions in the template port * Uncrustify: triggered by comment. * Uncrustify: triggered by comment. * minor readme updates * fixed spelling error in HTTP * fixed a type and added a link to the sample readme * uncrustified FreeRTOSConfig.h * Uncrustify: triggered by comment. * Revert "Uncrustify: triggered by comment." This reverts commite534f46f2d
. * Revert "Revert "Uncrustify: triggered by comment."" This reverts commitc9058dd383
. * excluding the FreeRTOSConfig.h from copyright+license check because this file is intended to be incorporated into user code * Removed the copyright and license from the template files * put license copy in the template and sample files * Uncrustify: triggered by comment. --------- Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
parent
9d2571d2ed
commit
5a9d7c8388
8 changed files with 650 additions and 5 deletions
4
.github/scripts/kernel_checker.py
vendored
4
.github/scripts/kernel_checker.py
vendored
|
@ -38,6 +38,7 @@ KERNEL_IGNORED_FILES = [
|
|||
'Makefile',
|
||||
'.DS_Store',
|
||||
'cspell.config.yaml'
|
||||
'FreeRTOSConfig.h'
|
||||
]
|
||||
|
||||
KERNEL_IGNORED_EXTENSIONS = [
|
||||
|
@ -92,7 +93,8 @@ KERNEL_IGNORED_PATTERNS = [
|
|||
r'.*portable/ThirdParty/xClang/XCOREAI/*',
|
||||
r'.*IAR/ARM_C*',
|
||||
r'.*IAR/78K0R/*',
|
||||
r'.*CCS/MSP430X/*'
|
||||
r'.*CCS/MSP430X/*',
|
||||
r'.*portable/template/*'
|
||||
]
|
||||
|
||||
KERNEL_THIRD_PARTY_PATTERNS = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue