Skip to content

Commit

Permalink
Rename sample configuration to template configuration (#927)
Browse files Browse the repository at this point in the history
* Rename sample configuration to template configuration

* Rename sample configuration to template configuration in cmake example file
  • Loading branch information
kar-rahul-aws authored Dec 18, 2023
1 parent 553b0ad commit b0439d3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/kernel_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
r'.*IAR/78K0R/*',
r'.*CCS/MSP430X/*',
r'.*portable/template/*',
r'.*sample_configuration/*'
r'.*template_configuration/*'
]

KERNEL_THIRD_PARTY_PATTERNS = [
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,8 @@ See the readme file in the ```./portable``` directory for more information.

- The ```./include``` directory contains the real time kernel header files.

- The ```./sample_configuration``` directory contains a sample `FreeRTOSConfig.h` to help jumpstart a new project.
See the [FreeRTOSConfig.h](examples/sample_configuration/FreeRTOSConfig.h) file for instructions.
- The ```./template_configuration``` directory contains a sample `FreeRTOSConfig.h` to help jumpstart a new project.
See the [FreeRTOSConfig.h](examples/template_configuration/FreeRTOSConfig.h) file for instructions.

### Code Formatting

Expand Down
2 changes: 1 addition & 1 deletion examples/cmake_example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ add_library(freertos_config INTERFACE)

target_include_directories(freertos_config
INTERFACE
"../sample_configuration"
"../template_configuration"
)

if (DEFINED FREERTOS_SMP_EXAMPLE AND FREERTOS_SMP_EXAMPLE STREQUAL "1")
Expand Down
File renamed without changes.

0 comments on commit b0439d3

Please sign in to comment.