Skip to content

Commit

Permalink
Update some docs and syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
ckormanyos committed Jan 25, 2025
1 parent d91b9ef commit d7ce7fe
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/real-time-cpp-benchmarks.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##############################################################################
# Copyright Christopher Kormanyos 2021 - 2024.
# Copyright Christopher Kormanyos 2021 - 2025.
# Distributed under the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt
# or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/real-time-cpp.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
##############################################################################
# Copyright Christopher Kormanyos 2021 - 2024.
# Copyright Christopher Kormanyos 2021 - 2025.
# Distributed under the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt
# or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down
4 changes: 2 additions & 2 deletions examples/chapter11_07/chapter11_07.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@
<CodeAnalysisRuleAssemblies Condition="'$(Configuration)|$(Platform)'=='Release|x64'" />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<IncludePath>$(SolutionDir)src;$(SolutionDir)src/mcal/host;$(SolutionDir)src/os/FreeRTOS/Source/include/cfg/WIN32-MSVC-Static-Allocation-Only;$(SolutionDir)src/os/FreeRTOS/Source/portable/MSVC-MingW;$(SolutionDir)src/os/FreeRTOS/Source/include;$(SolutionDir)src/util/STL_C++XX_stdfloat;$(IncludePath)</IncludePath>
<IncludePath>$(SolutionDir)src;$(SolutionDir)src/mcal/host;$(SolutionDir)src/os/FreeRTOS/Source/include/cfg/WIN32-MSVC-Static-Allocation-Only;$(SolutionDir)src/os/FreeRTOS/Source/portable/MSVC-MingW;$(SolutionDir)src/os/FreeRTOS/Source/include;$(IncludePath)</IncludePath>
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
<IntDir>$(Configuration)\</IntDir>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<IncludePath>$(SolutionDir)src;$(SolutionDir)src/mcal/host;$(SolutionDir)src/os/FreeRTOS/Source/include/cfg/WIN32-MSVC-Static-Allocation-Only;$(SolutionDir)src/os/FreeRTOS/Source/portable/MSVC-MingW;$(SolutionDir)src/os/FreeRTOS/Source/include;$(SolutionDir)src/util/STL_C++XX_stdfloat;$(IncludePath)</IncludePath>
<IncludePath>$(SolutionDir)src;$(SolutionDir)src/mcal/host;$(SolutionDir)src/os/FreeRTOS/Source/include/cfg/WIN32-MSVC-Static-Allocation-Only;$(SolutionDir)src/os/FreeRTOS/Source/portable/MSVC-MingW;$(SolutionDir)src/os/FreeRTOS/Source/include;$(IncludePath)</IncludePath>
<OutDir>$(SolutionDir)$(Configuration)\</OutDir>
<IntDir>$(Configuration)\</IntDir>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions examples/chapter11_07/src/sys/start/sys_start.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
///////////////////////////////////////////////////////////////////////////////
// Copyright Christopher Kormanyos 2007 - 2021.
// Copyright Christopher Kormanyos 2007 - 2025.
// Distributed under the Boost Software License,
// Version 1.0. (See accompanying file LICENSE_1_0.txt
// or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down Expand Up @@ -28,7 +28,7 @@ extern "C" int main(void)

// Configure and create the OS tasks.
OS_TASK_CREATE(app_led_task_background, nullptr, 1U);
OS_TASK_CREATE(app_led_task_toggle_led0, nullptr, 2U);
OS_TASK_CREATE(app_led_task_toggle_led0, nullptr, 3U);

// Start the OS scheduler (and never return).
OS_TASK_START_SCHEDULER();
Expand Down
3 changes: 2 additions & 1 deletion examples/chapter11_07/target/micros/avr/make/avr_flags.gmk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright Christopher Kormanyos 2007 - 2024.
# Copyright Christopher Kormanyos 2007 - 2025.
# Distributed under the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt
# or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down Expand Up @@ -49,3 +49,4 @@ TGT_LDFLAGS = -nostdlib
-Wl,--gc-sections \
-Wl,-Map,$(APP).map \
-T $(LINKER_DEFINITION_FILE)

6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -496,10 +496,10 @@ the performance and the performance class of the microcontroller.
For more information, see the detailed information
on the [benchmarks](./ref_app/src/app/benchmark) pages.

## All Bare-Metal
## All-Bare-Metal

Projects in this repo are programmed _OS-less_ in naked,
bare-metal mode making use of self-written startup code.
Projects in this repo are programmed _OS-less_ in pure
all-bare-metal mode making use of self-written startup code.
No external libraries other than native C++ and its own
standard libraries are used.

Expand Down
2 changes: 1 addition & 1 deletion ref_app/target/micros/avr/make/avr_flags.gmk
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright Christopher Kormanyos 2007 - 2024.
# Copyright Christopher Kormanyos 2007 - 2025.
# Distributed under the Boost Software License,
# Version 1.0. (See accompanying file LICENSE_1_0.txt
# or copy at http://www.boost.org/LICENSE_1_0.txt)
Expand Down

0 comments on commit d7ce7fe

Please sign in to comment.