From ca7c065df7d44f731051825ccc34dbdaf5d06b0b Mon Sep 17 00:00:00 2001 From: atomega Date: Wed, 6 Oct 2021 12:45:12 +0200 Subject: [PATCH] New structure implmented with new main called from cppSrc/trasnfer.cpp now need to merge everything one level up --- bsl/csl/stm32f042/CMakeLists.txt | 28 +-- .../stm32f042/Inc/{main.h => stm32f0xx_csl.h} | 2 +- bsl/csl/stm32f042/Src/CMakeLists.txt | 2 +- .../stm32f042/Src/{main.c => stm32f0xx_csl.c} | 11 +- bsl/csl/stm32f042/Src/stm32f0xx_it.c | 2 +- bsl/csl/stm32f042/build/CMakeCache.txt | 3 - .../build/CMakeFiles/CMakeOutput.log | 214 +++++++++--------- .../stm32f042/build/CMakeFiles/Makefile.cmake | 1 - bsl/csl/stm32f042/build/CMakeFiles/Makefile2 | 43 +--- .../build/CMakeFiles/TargetDirectories.txt | 3 +- .../cpp_functions.dir/DependInfo.cmake | 47 ---- .../CMakeFiles/cpp_functions.dir/build.make | 99 -------- .../cpp_functions.dir/cmake_clean.cmake | 10 - .../cmake_clean_target.cmake | 3 - .../cpp_functions.dir/depend.internal | 28 --- .../CMakeFiles/cpp_functions.dir/depend.make | 28 --- .../CMakeFiles/cpp_functions.dir/flags.make | 10 - .../CMakeFiles/cpp_functions.dir/link.txt | 2 - .../cpp_functions.dir/progress.make | 3 - .../stm32f042/build/CMakeFiles/progress.marks | 2 +- .../refOvenTest.out.dir/C.includecache | 170 -------------- .../CXX.includecache | 10 +- .../refOvenTest.out.dir/DependInfo.cmake | 22 +- .../CMakeFiles/refOvenTest.out.dir/build.make | 26 +-- .../refOvenTest.out.dir/cmake_clean.cmake | 4 +- .../refOvenTest.out.dir/depend.internal | 50 ++-- .../refOvenTest.out.dir/depend.make | 48 ++-- .../CMakeFiles/refOvenTest.out.dir/flags.make | 8 +- .../CMakeFiles/refOvenTest.out.dir/link.txt | 2 +- .../refOvenTest.out.dir/progress.make | 4 +- bsl/csl/stm32f042/build/Makefile | 52 +---- .../CMakeFiles/CSources.dir/C.includecache | 20 +- .../CMakeFiles/CSources.dir/DependInfo.cmake | 2 +- .../Src/CMakeFiles/CSources.dir/build.make | 24 +- .../CMakeFiles/CSources.dir/cmake_clean.cmake | 2 +- .../CMakeFiles/CSources.dir/depend.internal | 8 +- .../Src/CMakeFiles/CSources.dir/depend.make | 50 ++-- .../Src/CMakeFiles/CSources.dir/link.txt | 2 +- bsl/csl/stm32f042/build/Src/Makefile | 36 +-- bsl/csl/stm32f042/build/refOvenTest.bin | Bin 7932 -> 7936 bytes bsl/csl/stm32f042/cppSrc/transfer.cpp | 5 + bsl/csl/stm32f042/cppSrc/transfer.h | 2 +- 42 files changed, 291 insertions(+), 797 deletions(-) rename bsl/csl/stm32f042/Inc/{main.h => stm32f0xx_csl.h} (99%) rename bsl/csl/stm32f042/Src/{main.c => stm32f0xx_csl.c} (98%) delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/build.make delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean.cmake delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.internal delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.make delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/flags.make delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/link.txt delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/progress.make delete mode 100644 bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/C.includecache rename bsl/csl/stm32f042/build/CMakeFiles/{cpp_functions.dir => refOvenTest.out.dir}/CXX.includecache (97%) diff --git a/bsl/csl/stm32f042/CMakeLists.txt b/bsl/csl/stm32f042/CMakeLists.txt index 6172fb7..edb374a 100644 --- a/bsl/csl/stm32f042/CMakeLists.txt +++ b/bsl/csl/stm32f042/CMakeLists.txt @@ -21,6 +21,7 @@ set(CMAKE_SYSTEM_NAME Generic) set(CMAKE_SYSTEM_PROCESSOR arm) set(CMAKE_CROSSCOMPILING TRUE) set(CMAKE_VERBOSE_MAKEFILE off)#Shoul make print everythign ?? + #################################################################################################### #VARIABLES : defined by user #################################################################################################### @@ -82,35 +83,18 @@ add_subdirectory(Drivers) add_subdirectory(startup) add_subdirectory(Src) -#################################################################################################### -#LIBRARIES -#################################################################################################### - -add_library(${CPP_FUNC} ${CPP_SOURCES}) -target_compile_options(${CPP_FUNC} PRIVATE ${CPP_FLAGS}) -target_compile_definitions(${CPP_FUNC} PRIVATE ${CPP_DEFS}) -target_include_directories(${CPP_FUNC} PUBLIC ${CPP_INCLUDES}) - -#Please note that this configuration can define in which order the libraries will be compiled an linked -#with eachother. - -#################################################################################################### -#LINKING LIBRARIES -#################################################################################################### -target_link_libraries(${CPP_FUNC} sub::cSources) - #################################################################################################### #EXECUTABLE #################################################################################################### -add_executable(${EXECUTABLE} Src/main.c) -target_compile_options(${EXECUTABLE} PRIVATE ${C_FLAGS}) -target_compile_definitions(${EXECUTABLE} PRIVATE ${C_DEFS}) -target_include_directories(${EXECUTABLE} PUBLIC ${C_INCLUDES}) +add_executable(${EXECUTABLE} cppSrc/transfer.cpp) +target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS}) +target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS}) +target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES}) #################################################################################################### #LINKING EXECUTEABLE #################################################################################################### -target_link_libraries(${EXECUTABLE} sub::startup sub::cSources ${CPP_FUNC})#${C_FUNC} ${CPP_FUNC}) +target_link_libraries(${EXECUTABLE} sub::startup sub::cSources)#${C_FUNC} ${CPP_FUNC}) target_link_options(${EXECUTABLE} PRIVATE ${CPU_MCU} -mthumb diff --git a/bsl/csl/stm32f042/Inc/main.h b/bsl/csl/stm32f042/Inc/stm32f0xx_csl.h similarity index 99% rename from bsl/csl/stm32f042/Inc/main.h rename to bsl/csl/stm32f042/Inc/stm32f0xx_csl.h index 1d994e9..4f8c2bb 100644 --- a/bsl/csl/stm32f042/Inc/main.h +++ b/bsl/csl/stm32f042/Inc/stm32f0xx_csl.h @@ -45,7 +45,7 @@ extern "C" { /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ - +int stmStart(); /* USER CODE END Includes */ /* Exported types ------------------------------------------------------------*/ diff --git a/bsl/csl/stm32f042/Src/CMakeLists.txt b/bsl/csl/stm32f042/Src/CMakeLists.txt index 9683724..d77b700 100644 --- a/bsl/csl/stm32f042/Src/CMakeLists.txt +++ b/bsl/csl/stm32f042/Src/CMakeLists.txt @@ -8,7 +8,7 @@ set (C_INCLUDES ../Drivers/CMSIS/Include) set(C_SOURCES - main.c + stm32f0xx_csl.c stm32f0xx_it.c system_stm32f0xx.c) diff --git a/bsl/csl/stm32f042/Src/main.c b/bsl/csl/stm32f042/Src/stm32f0xx_csl.c similarity index 98% rename from bsl/csl/stm32f042/Src/main.c rename to bsl/csl/stm32f042/Src/stm32f0xx_csl.c index d255457..d94fd5f 100644 --- a/bsl/csl/stm32f042/Src/main.c +++ b/bsl/csl/stm32f042/Src/stm32f0xx_csl.c @@ -18,7 +18,7 @@ */ /* USER CODE END Header */ /* Includes ------------------------------------------------------------------*/ -#include "main.h" +#include "stm32f0xx_csl.h" #include "transfer.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ @@ -53,18 +53,16 @@ static void MX_GPIO_Init(void); /* USER CODE END PFP */ /* Private user code ---------------------------------------------------------*/ + /* USER CODE BEGIN 0 */ -int cHook() -{ - return 1; -} + /* USER CODE END 0 */ /** * @brief The application entry point. * @retval int */ -int main(void) +int stmStart() { /* USER CODE BEGIN 1 */ @@ -95,7 +93,6 @@ int main(void) /* USER CODE BEGIN 2 */ /* USER CODE END 2 */ - cHook(); cppHook(); /* Infinite loop */ /* USER CODE BEGIN WHILE */ diff --git a/bsl/csl/stm32f042/Src/stm32f0xx_it.c b/bsl/csl/stm32f042/Src/stm32f0xx_it.c index f325c53..a51bf38 100644 --- a/bsl/csl/stm32f042/Src/stm32f0xx_it.c +++ b/bsl/csl/stm32f042/Src/stm32f0xx_it.c @@ -19,7 +19,7 @@ /* USER CODE END Header */ /* Includes ------------------------------------------------------------------*/ -#include "main.h" +#include "stm32f0xx_csl.h" #include "stm32f0xx_it.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ diff --git a/bsl/csl/stm32f042/build/CMakeCache.txt b/bsl/csl/stm32f042/build/CMakeCache.txt index bbff046..6ec5884 100644 --- a/bsl/csl/stm32f042/build/CMakeCache.txt +++ b/bsl/csl/stm32f042/build/CMakeCache.txt @@ -235,9 +235,6 @@ Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build/startup //Value Computed by CMake Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/startup -//Dependencies for the target -cpp_functions_LIB_DEPENDS:STATIC=general;sub::cSources; - //Value Computed by CMake refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build diff --git a/bsl/csl/stm32f042/build/CMakeFiles/CMakeOutput.log b/bsl/csl/stm32f042/build/CMakeFiles/CMakeOutput.log index 2654648..60d83e8 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/CMakeOutput.log +++ b/bsl/csl/stm32f042/build/CMakeFiles/CMakeOutput.log @@ -34,28 +34,28 @@ The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/csl/s Determining if the C compiler works passed with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_c47b0/fast" -/usr/bin/make -f CMakeFiles/cmTC_c47b0.dir/build.make CMakeFiles/cmTC_c47b0.dir/build +Run Build Command:"/usr/bin/make" "cmTC_e18b8/fast" +/usr/bin/make -f CMakeFiles/cmTC_e18b8.dir/build.make CMakeFiles/cmTC_e18b8.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_c47b0.dir/testCCompiler.c.o -/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c47b0.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCCompiler.c -Linking C executable cmTC_c47b0 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c47b0.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_c47b0.dir/testCCompiler.c.o -o cmTC_c47b0 +Building C object CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCCompiler.c +Linking C executable cmTC_e18b8 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e18b8.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o -o cmTC_e18b8 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' Detecting C compiler ABI info compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_e143b/fast" -/usr/bin/make -f CMakeFiles/cmTC_e143b.dir/build.make CMakeFiles/cmTC_e143b.dir/build +Run Build Command:"/usr/bin/make" "cmTC_5dc60/fast" +/usr/bin/make -f CMakeFiles/cmTC_5dc60.dir/build.make CMakeFiles/cmTC_5dc60.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c -Linking C executable cmTC_e143b -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e143b.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -o cmTC_e143b +Building C object CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o +/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c +Linking C executable cmTC_5dc60 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dc60.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -o cmTC_5dc60 Using built-in specs. Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence @@ -67,9 +67,9 @@ Thread model: single gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/ -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e143b' - /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKozBWK.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e143b /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e143b' +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60' + /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGQgJ1i.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_5dc60 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60' make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -77,14 +77,14 @@ Parsed C implicit link information from above output: link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ignore line: [Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_e143b/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_e143b.dir/build.make CMakeFiles/cmTC_e143b.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5dc60/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_5dc60.dir/build.make CMakeFiles/cmTC_5dc60.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'] - ignore line: [Building C object CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o] - ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] - ignore line: [Linking C executable cmTC_e143b] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e143b.dir/link.txt --verbose=1] - ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -o cmTC_e143b ] + ignore line: [Building C object CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o] + ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c] + ignore line: [Linking C executable cmTC_5dc60] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dc60.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -o cmTC_5dc60 ] ignore line: [Using built-in specs.] ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs] ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] @@ -96,13 +96,13 @@ Parsed C implicit link information from above output: ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e143b'] - link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKozBWK.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e143b /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60'] + link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGQgJ1i.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_5dc60 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccKozBWK.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/ccGQgJ1i.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore @@ -110,13 +110,13 @@ Parsed C implicit link information from above output: arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-X] ==> ignore arg [-o] ==> ignore - arg [cmTC_e143b] ==> ignore + arg [cmTC_5dc60] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1] arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] - arg [CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o] ==> ignore + arg [CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o] ==> ignore arg [--start-group] ==> ignore arg [-lgcc] ==> lib [gcc] arg [-lc] ==> lib [c] @@ -140,14 +140,14 @@ Parsed C implicit link information from above output: Detecting C [-std=c11] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_9784c/fast" -/usr/bin/make -f CMakeFiles/cmTC_9784c.dir/build.make CMakeFiles/cmTC_9784c.dir/build +Run Build Command:"/usr/bin/make" "cmTC_8aec9/fast" +/usr/bin/make -f CMakeFiles/cmTC_8aec9.dir/build.make CMakeFiles/cmTC_8aec9.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_9784c.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_9784c.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_9784c -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9784c.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_9784c.dir/feature_tests.c.o -o cmTC_9784c +Building C object CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_8aec9 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aec9.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o -o cmTC_8aec9 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -160,14 +160,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi Detecting C [-std=c99] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_dc52e/fast" -/usr/bin/make -f CMakeFiles/cmTC_dc52e.dir/build.make CMakeFiles/cmTC_dc52e.dir/build +Run Build Command:"/usr/bin/make" "cmTC_f0416/fast" +/usr/bin/make -f CMakeFiles/cmTC_f0416.dir/build.make CMakeFiles/cmTC_f0416.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_dc52e.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_dc52e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_dc52e -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dc52e.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_dc52e.dir/feature_tests.c.o -o cmTC_dc52e +Building C object CMakeFiles/cmTC_f0416.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_f0416.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_f0416 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0416.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_f0416.dir/feature_tests.c.o -o cmTC_f0416 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -180,14 +180,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi Detecting C [-std=c90] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_300d7/fast" -/usr/bin/make -f CMakeFiles/cmTC_300d7.dir/build.make CMakeFiles/cmTC_300d7.dir/build +Run Build Command:"/usr/bin/make" "cmTC_a0c0f/fast" +/usr/bin/make -f CMakeFiles/cmTC_a0c0f.dir/build.make CMakeFiles/cmTC_a0c0f.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building C object CMakeFiles/cmTC_300d7.dir/feature_tests.c.o -/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_300d7.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c -Linking C executable cmTC_300d7 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_300d7.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_300d7.dir/feature_tests.c.o -o cmTC_300d7 +Building C object CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o +/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c +Linking C executable cmTC_a0c0f +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a0c0f.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o -o cmTC_a0c0f make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -198,28 +198,28 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi Determining if the CXX compiler works passed with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_14370/fast" -/usr/bin/make -f CMakeFiles/cmTC_14370.dir/build.make CMakeFiles/cmTC_14370.dir/build +Run Build Command:"/usr/bin/make" "cmTC_b7a22/fast" +/usr/bin/make -f CMakeFiles/cmTC_b7a22.dir/build.make CMakeFiles/cmTC_b7a22.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_14370.dir/testCXXCompiler.cxx.o -/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_14370.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx -Linking CXX executable cmTC_14370 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_14370.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_14370.dir/testCXXCompiler.cxx.o -o cmTC_14370 +Building CXX object CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx +Linking CXX executable cmTC_b7a22 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7a22.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o -o cmTC_b7a22 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' Detecting CXX compiler ABI info compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_c83a4/fast" -/usr/bin/make -f CMakeFiles/cmTC_c83a4.dir/build.make CMakeFiles/cmTC_c83a4.dir/build +Run Build Command:"/usr/bin/make" "cmTC_c85b7/fast" +/usr/bin/make -f CMakeFiles/cmTC_c85b7.dir/build.make CMakeFiles/cmTC_c85b7.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp -Linking CXX executable cmTC_c83a4 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c83a4.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c83a4 +Building CXX object CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o +/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp +Linking CXX executable cmTC_c85b7 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c85b7.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c85b7 Using built-in specs. Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence @@ -231,9 +231,9 @@ Thread model: single gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/ LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/ -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c83a4' - /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCvaBvi.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c83a4 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o -COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c83a4' +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7' + /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6lRxDQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c85b7 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o +COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7' make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -241,14 +241,14 @@ Parsed CXX implicit link information from above output: link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)] ignore line: [Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp] ignore line: [] - ignore line: [Run Build Command:"/usr/bin/make" "cmTC_c83a4/fast"] - ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c83a4.dir/build.make CMakeFiles/cmTC_c83a4.dir/build] + ignore line: [Run Build Command:"/usr/bin/make" "cmTC_c85b7/fast"] + ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c85b7.dir/build.make CMakeFiles/cmTC_c85b7.dir/build] ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'] - ignore line: [Building CXX object CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o] - ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] - ignore line: [Linking CXX executable cmTC_c83a4] - ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c83a4.dir/link.txt --verbose=1] - ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c83a4 ] + ignore line: [Building CXX object CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o] + ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp] + ignore line: [Linking CXX executable cmTC_c85b7] + ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c85b7.dir/link.txt --verbose=1] + ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c85b7 ] ignore line: [Using built-in specs.] ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs] ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence] @@ -260,13 +260,13 @@ Parsed CXX implicit link information from above output: ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ] ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/] ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/] - ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c83a4'] - link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCvaBvi.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c83a4 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] + ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7'] + link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6lRxDQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c85b7 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o] arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore arg [-plugin] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore - arg [-plugin-opt=-fresolution=/tmp/ccCvaBvi.res] ==> ignore + arg [-plugin-opt=-fresolution=/tmp/cc6lRxDQ.res] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore arg [-plugin-opt=-pass-through=-lc] ==> ignore arg [-plugin-opt=-pass-through=-lgcc] ==> ignore @@ -274,13 +274,13 @@ Parsed CXX implicit link information from above output: arg [-plugin-opt=-pass-through=-lnosys] ==> ignore arg [-X] ==> ignore arg [-o] ==> ignore - arg [cmTC_c83a4] ==> ignore + arg [cmTC_c85b7] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1] arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] - arg [CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore + arg [CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore arg [-lstdc++] ==> lib [stdc++] arg [-lm] ==> lib [m] arg [--start-group] ==> ignore @@ -306,14 +306,14 @@ Parsed CXX implicit link information from above output: Detecting CXX [-std=c++1z] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_7e114/fast" -/usr/bin/make -f CMakeFiles/cmTC_7e114.dir/build.make CMakeFiles/cmTC_7e114.dir/build +Run Build Command:"/usr/bin/make" "cmTC_d6131/fast" +/usr/bin/make -f CMakeFiles/cmTC_d6131.dir/build.make CMakeFiles/cmTC_d6131.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_7e114.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_7e114.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_7e114 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e114.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_7e114.dir/feature_tests.cxx.o -o cmTC_7e114 +Building CXX object CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_d6131 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d6131.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o -o cmTC_d6131 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -379,14 +379,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi Detecting CXX [-std=c++14] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_dc5f0/fast" -/usr/bin/make -f CMakeFiles/cmTC_dc5f0.dir/build.make CMakeFiles/cmTC_dc5f0.dir/build +Run Build Command:"/usr/bin/make" "cmTC_30022/fast" +/usr/bin/make -f CMakeFiles/cmTC_30022.dir/build.make CMakeFiles/cmTC_30022.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_dc5f0.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_dc5f0.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_dc5f0 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dc5f0.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_dc5f0.dir/feature_tests.cxx.o -o cmTC_dc5f0 +Building CXX object CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_30022 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_30022.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o -o cmTC_30022 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -452,14 +452,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi Detecting CXX [-std=c++11] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_e8f8d/fast" -/usr/bin/make -f CMakeFiles/cmTC_e8f8d.dir/build.make CMakeFiles/cmTC_e8f8d.dir/build +Run Build Command:"/usr/bin/make" "cmTC_7b64d/fast" +/usr/bin/make -f CMakeFiles/cmTC_7b64d.dir/build.make CMakeFiles/cmTC_7b64d.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_e8f8d.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_e8f8d.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_e8f8d -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e8f8d.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_e8f8d.dir/feature_tests.cxx.o -o cmTC_e8f8d +Building CXX object CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_7b64d +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7b64d.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o -o cmTC_7b64d make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' @@ -525,14 +525,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi Detecting CXX [-std=c++98] compiler features compiled with the following output: Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp -Run Build Command:"/usr/bin/make" "cmTC_20504/fast" -/usr/bin/make -f CMakeFiles/cmTC_20504.dir/build.make CMakeFiles/cmTC_20504.dir/build +Run Build Command:"/usr/bin/make" "cmTC_54b40/fast" +/usr/bin/make -f CMakeFiles/cmTC_54b40.dir/build.make CMakeFiles/cmTC_54b40.dir/build make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' -Building CXX object CMakeFiles/cmTC_20504.dir/feature_tests.cxx.o -/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_20504.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx -Linking CXX executable cmTC_20504 -/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_20504.dir/link.txt --verbose=1 -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_20504.dir/feature_tests.cxx.o -o cmTC_20504 +Building CXX object CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o +/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx +Linking CXX executable cmTC_54b40 +/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_54b40.dir/link.txt --verbose=1 +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o -o cmTC_54b40 make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp' diff --git a/bsl/csl/stm32f042/build/CMakeFiles/Makefile.cmake b/bsl/csl/stm32f042/build/CMakeFiles/Makefile.cmake index f1ff69b..6e9b6eb 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/Makefile.cmake +++ b/bsl/csl/stm32f042/build/CMakeFiles/Makefile.cmake @@ -128,7 +128,6 @@ set(CMAKE_MAKEFILE_PRODUCTS # Dependency information for all targets: set(CMAKE_DEPEND_INFO_FILES - "CMakeFiles/cpp_functions.dir/DependInfo.cmake" "CMakeFiles/refOvenTest.out.dir/DependInfo.cmake" "Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" "startup/CMakeFiles/Startup.dir/DependInfo.cmake" diff --git a/bsl/csl/stm32f042/build/CMakeFiles/Makefile2 b/bsl/csl/stm32f042/build/CMakeFiles/Makefile2 index 03d8506..47bc3b0 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/Makefile2 +++ b/bsl/csl/stm32f042/build/CMakeFiles/Makefile2 @@ -64,55 +64,16 @@ CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/csl/stm32f042 # The top-level build directory on which CMake was run. CMAKE_BINARY_DIR = /home/key/github/KED/bsl/csl/stm32f042/build -#============================================================================= -# Target rules for target CMakeFiles/cpp_functions.dir - -# All Build rule for target. -CMakeFiles/cpp_functions.dir/all: Drivers/CMakeFiles/Drivers.dir/all -CMakeFiles/cpp_functions.dir/all: Src/CMakeFiles/CSources.dir/all - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/depend - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=13,14 "Built target cpp_functions" -.PHONY : CMakeFiles/cpp_functions.dir/all - -# Include target in all. -all: CMakeFiles/cpp_functions.dir/all - -.PHONY : all - -# Build rule for subdir invocation for target. -CMakeFiles/cpp_functions.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 12 - $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cpp_functions.dir/all - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0 -.PHONY : CMakeFiles/cpp_functions.dir/rule - -# Convenience name for target. -cpp_functions: CMakeFiles/cpp_functions.dir/rule - -.PHONY : cpp_functions - -# clean rule for target. -CMakeFiles/cpp_functions.dir/clean: - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/clean -.PHONY : CMakeFiles/cpp_functions.dir/clean - -# clean rule for target. -clean: CMakeFiles/cpp_functions.dir/clean - -.PHONY : clean - #============================================================================= # Target rules for target CMakeFiles/refOvenTest.out.dir # All Build rule for target. -CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/cpp_functions.dir/all CMakeFiles/refOvenTest.out.dir/all: Drivers/CMakeFiles/Drivers.dir/all CMakeFiles/refOvenTest.out.dir/all: startup/CMakeFiles/Startup.dir/all CMakeFiles/refOvenTest.out.dir/all: Src/CMakeFiles/CSources.dir/all $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/depend $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=15,16 "Built target refOvenTest.out" + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=13,14 "Built target refOvenTest.out" .PHONY : CMakeFiles/refOvenTest.out.dir/all # Include target in all. @@ -122,7 +83,7 @@ all: CMakeFiles/refOvenTest.out.dir/all # Build rule for subdir invocation for target. CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system - $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 16 + $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 14 $(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0 .PHONY : CMakeFiles/refOvenTest.out.dir/rule diff --git a/bsl/csl/stm32f042/build/CMakeFiles/TargetDirectories.txt b/bsl/csl/stm32f042/build/CMakeFiles/TargetDirectories.txt index 848b5bb..cec7794 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/TargetDirectories.txt +++ b/bsl/csl/stm32f042/build/CMakeFiles/TargetDirectories.txt @@ -1,7 +1,6 @@ /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/rebuild_cache.dir -/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/edit_cache.dir -/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir +/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/edit_cache.dir /home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/rebuild_cache.dir /home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir /home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/edit_cache.dir diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake deleted file mode 100644 index b9aebe2..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake +++ /dev/null @@ -1,47 +0,0 @@ -# The set of languages for which implicit dependencies are needed: -set(CMAKE_DEPENDS_LANGUAGES - "CXX" - ) -# The set of files for implicit dependencies of each language: -set(CMAKE_DEPENDS_CHECK_CXX - "/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o" - ) -set(CMAKE_CXX_COMPILER_ID "GNU") - -# Preprocessor definitions for this target. -set(CMAKE_TARGET_DEFINITIONS_CXX - "DATA_CACHE_ENABLE=0" - "HSE_STARTUP_TIMEOUT=100" - "HSE_VALUE=8000000" - "HSI_VALUE=8000000" - "INSTRUCTION_CACHE_ENABLE=0" - "LSE_STARTUP_TIMEOUT=5000" - "LSE_VALUE=32768" - "LSI_VALUE=40000" - "PREFETCH_ENABLE=1" - "STM32F042x6" - "USE_FULL_LL_DRIVER" - "VDD_VALUE=3300" - ) - -# The include file search paths: -set(CMAKE_CXX_TARGET_INCLUDE_PATH - "../cppSrc" - "../Src/../Inc" - "../Src/../cppSrc" - "../Src/../Drivers/STM32F0xx_HAL_Driver/Inc" - "../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" - "../Src/../Drivers/CMSIS/Include" - "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" - "../Drivers/CMSIS/Include" - "../Drivers/STM32F0xx_HAL_Driver/Inc" - ) - -# Targets to which this target links. -set(CMAKE_TARGET_LINKED_INFO_FILES - "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake" - "/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" - ) - -# Fortran module output directory. -set(CMAKE_Fortran_TARGET_MODULE_DIR "") diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/build.make b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/build.make deleted file mode 100644 index ec60438..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/build.make +++ /dev/null @@ -1,99 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.13 - -# Delete rule output on recipe failure. -.DELETE_ON_ERROR: - - -#============================================================================= -# Special targets provided by cmake. - -# Disable implicit rules so canonical targets will work. -.SUFFIXES: - - -# Remove some rules from gmake that .SUFFIXES does not remove. -SUFFIXES = - -.SUFFIXES: .hpux_make_needs_suffix_list - - -# Suppress display of executed commands. -$(VERBOSE).SILENT: - - -# A target that is always out of date. -cmake_force: - -.PHONY : cmake_force - -#============================================================================= -# Set environment variables for the build. - -# The shell in which to execute make rules. -SHELL = /bin/sh - -# The CMake executable. -CMAKE_COMMAND = /usr/bin/cmake - -# The command to remove a file. -RM = /usr/bin/cmake -E remove -f - -# Escaping for special characters. -EQUALS = = - -# The top-level source directory on which CMake was run. -CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/csl/stm32f042 - -# The top-level build directory on which CMake was run. -CMAKE_BINARY_DIR = /home/key/github/KED/bsl/csl/stm32f042/build - -# Include any dependencies generated for this target. -include CMakeFiles/cpp_functions.dir/depend.make - -# Include the progress variables for this target. -include CMakeFiles/cpp_functions.dir/progress.make - -# Include the compile flags for this target's objects. -include CMakeFiles/cpp_functions.dir/flags.make - -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: CMakeFiles/cpp_functions.dir/flags.make -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o" - /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o -c /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp - -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i" - /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp > CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i - -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s" - /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp -o CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s - -# Object files for target cpp_functions -cpp_functions_OBJECTS = \ -"CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o" - -# External object files for target cpp_functions -cpp_functions_EXTERNAL_OBJECTS = - -libcpp_functions.a: CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o -libcpp_functions.a: CMakeFiles/cpp_functions.dir/build.make -libcpp_functions.a: CMakeFiles/cpp_functions.dir/link.txt - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libcpp_functions.a" - $(CMAKE_COMMAND) -P CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake - $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cpp_functions.dir/link.txt --verbose=$(VERBOSE) - -# Rule to build all files generated by this target. -CMakeFiles/cpp_functions.dir/build: libcpp_functions.a - -.PHONY : CMakeFiles/cpp_functions.dir/build - -CMakeFiles/cpp_functions.dir/clean: - $(CMAKE_COMMAND) -P CMakeFiles/cpp_functions.dir/cmake_clean.cmake -.PHONY : CMakeFiles/cpp_functions.dir/clean - -CMakeFiles/cpp_functions.dir/depend: - cd /home/key/github/KED/bsl/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake --color=$(COLOR) -.PHONY : CMakeFiles/cpp_functions.dir/depend - diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean.cmake b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean.cmake deleted file mode 100644 index 27742de..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean.cmake +++ /dev/null @@ -1,10 +0,0 @@ -file(REMOVE_RECURSE - "CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o" - "libcpp_functions.pdb" - "libcpp_functions.a" -) - -# Per-language clean rules from dependency scanning. -foreach(lang CXX) - include(CMakeFiles/cpp_functions.dir/cmake_clean_${lang}.cmake OPTIONAL) -endforeach() diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake deleted file mode 100644 index b0696f6..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake +++ /dev/null @@ -1,3 +0,0 @@ -file(REMOVE_RECURSE - "libcpp_functions.a" -) diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.internal b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.internal deleted file mode 100644 index 0327783..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.internal +++ /dev/null @@ -1,28 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.13 - -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o - ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h - ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h - ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h - ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h - ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h - ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h - ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h - ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h - ../Src/../Drivers/CMSIS/Include/cmsis_version.h - ../Src/../Drivers/CMSIS/Include/core_cm0.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h - ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h - ../Src/../Inc/main.h - ../Src/../Inc/stm32_assert.h - /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp - /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.make b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.make deleted file mode 100644 index d57efaf..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/depend.make +++ /dev/null @@ -1,28 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.13 - -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Inc/main.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Src/../Inc/stm32_assert.h -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp -CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.h - diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/flags.make b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/flags.make deleted file mode 100644 index 640bd0c..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/flags.make +++ /dev/null @@ -1,10 +0,0 @@ -# CMAKE generated file: DO NOT EDIT! -# Generated by "Unix Makefiles" Generator, CMake Version 3.13 - -# compile CXX with /usr/bin/arm-none-eabi-g++ -CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++1z - -CXX_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 - -CXX_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc - diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/link.txt b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/link.txt deleted file mode 100644 index 26b573a..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/link.txt +++ /dev/null @@ -1,2 +0,0 @@ -/usr/bin/arm-none-eabi-ar qc libcpp_functions.a CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o -/usr/bin/arm-none-eabi-ranlib libcpp_functions.a diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/progress.make b/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/progress.make deleted file mode 100644 index d92f75a..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/progress.make +++ /dev/null @@ -1,3 +0,0 @@ -CMAKE_PROGRESS_1 = 13 -CMAKE_PROGRESS_2 = 14 - diff --git a/bsl/csl/stm32f042/build/CMakeFiles/progress.marks b/bsl/csl/stm32f042/build/CMakeFiles/progress.marks index b6a7d89..8351c19 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/progress.marks +++ b/bsl/csl/stm32f042/build/CMakeFiles/progress.marks @@ -1 +1 @@ -16 +14 diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/C.includecache b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/C.includecache deleted file mode 100644 index 88a8607..0000000 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/C.includecache +++ /dev/null @@ -1,170 +0,0 @@ -#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">]) - -#IncludeRegexScan: ^.*$ - -#IncludeRegexComplain: ^$ - -#IncludeRegexTransform: - -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -core_cm0.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h -system_stm32f0xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -stdint.h -- - -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -stm32f030x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h -stm32f030x8.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h -stm32f031x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h -stm32f038xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h -stm32f042x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -stm32f048xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h -stm32f051x8.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h -stm32f058xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h -stm32f070x6.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h -stm32f070xb.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h -stm32f071xb.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h -stm32f072xb.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h -stm32f078xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h -stm32f091xc.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h -stm32f098xx.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h -stm32f030xc.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h -stm32f0xx_hal.h -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h - -../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h - -../Drivers/CMSIS/Include/cmsis_armcc.h - -../Drivers/CMSIS/Include/cmsis_armclang.h -arm_compat.h -- - -../Drivers/CMSIS/Include/cmsis_compiler.h -stdint.h -- -cmsis_armcc.h -../Drivers/CMSIS/Include/cmsis_armcc.h -cmsis_armclang.h -../Drivers/CMSIS/Include/cmsis_armclang.h -cmsis_gcc.h -../Drivers/CMSIS/Include/cmsis_gcc.h -cmsis_iccarm.h -- -cmsis_ccs.h -- -cmsis_csm.h -- - -../Drivers/CMSIS/Include/cmsis_gcc.h - -../Drivers/CMSIS/Include/cmsis_iccarm.h -iccarm_builtin.h -../Drivers/CMSIS/Include/iccarm_builtin.h -intrinsics.h -- - -../Drivers/CMSIS/Include/cmsis_version.h - -../Drivers/CMSIS/Include/core_cm0.h -stdint.h -- -cmsis_version.h -../Drivers/CMSIS/Include/cmsis_version.h -cmsis_compiler.h -../Drivers/CMSIS/Include/cmsis_compiler.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h -stm32f0xx.h -../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h - -../Inc/main.h -stm32f0xx_ll_crs.h -../Inc/stm32f0xx_ll_crs.h -stm32f0xx_ll_rcc.h -../Inc/stm32f0xx_ll_rcc.h -stm32f0xx_ll_bus.h -../Inc/stm32f0xx_ll_bus.h -stm32f0xx_ll_system.h -../Inc/stm32f0xx_ll_system.h -stm32f0xx_ll_exti.h -../Inc/stm32f0xx_ll_exti.h -stm32f0xx_ll_cortex.h -../Inc/stm32f0xx_ll_cortex.h -stm32f0xx_ll_utils.h -../Inc/stm32f0xx_ll_utils.h -stm32f0xx_ll_pwr.h -../Inc/stm32f0xx_ll_pwr.h -stm32f0xx_ll_dma.h -../Inc/stm32f0xx_ll_dma.h -stm32f0xx_ll_gpio.h -../Inc/stm32f0xx_ll_gpio.h -stm32_assert.h -../Inc/stm32_assert.h - -../Inc/stm32_assert.h - -../Src/../cppSrc/transfer.h -main.h -../Src/../cppSrc/main.h - -/home/key/github/KED/bsl/csl/stm32f042/Src/main.c -main.h -/home/key/github/KED/bsl/csl/stm32f042/Src/main.h -transfer.h -/home/key/github/KED/bsl/csl/stm32f042/Src/transfer.h - diff --git a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/CXX.includecache b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/CXX.includecache similarity index 97% rename from bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/CXX.includecache rename to bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/CXX.includecache index 3234aed..7abb32d 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/CXX.includecache +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/CXX.includecache @@ -132,7 +132,9 @@ stm32f0xx.h stm32f0xx.h ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Src/../Inc/main.h +../Src/../Inc/stm32_assert.h + +../Src/../Inc/stm32f0xx_csl.h stm32f0xx_ll_crs.h ../Src/../Inc/stm32f0xx_ll_crs.h stm32f0xx_ll_rcc.h @@ -156,13 +158,11 @@ stm32f0xx_ll_gpio.h stm32_assert.h ../Src/../Inc/stm32_assert.h -../Src/../Inc/stm32_assert.h - /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp transfer.h /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h -main.h -/home/key/github/KED/bsl/csl/stm32f042/cppSrc/main.h +stm32f0xx_csl.h +/home/key/github/KED/bsl/csl/stm32f042/cppSrc/stm32f0xx_csl.h diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake index 4bf3b3b..12d22f9 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/DependInfo.cmake @@ -1,15 +1,15 @@ # The set of languages for which implicit dependencies are needed: set(CMAKE_DEPENDS_LANGUAGES - "C" + "CXX" ) # The set of files for implicit dependencies of each language: -set(CMAKE_DEPENDS_CHECK_C - "/home/key/github/KED/bsl/csl/stm32f042/Src/main.c" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/Src/main.c.o" +set(CMAKE_DEPENDS_CHECK_CXX + "/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" ) -set(CMAKE_C_COMPILER_ID "GNU") +set(CMAKE_CXX_COMPILER_ID "GNU") # Preprocessor definitions for this target. -set(CMAKE_TARGET_DEFINITIONS_C +set(CMAKE_TARGET_DEFINITIONS_CXX "DATA_CACHE_ENABLE=0" "HSE_STARTUP_TIMEOUT=100" "HSE_VALUE=8000000" @@ -25,24 +25,22 @@ set(CMAKE_TARGET_DEFINITIONS_C ) # The include file search paths: -set(CMAKE_C_TARGET_INCLUDE_PATH - "../Inc" - "../Drivers/STM32F0xx_HAL_Driver/Inc" - "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" - "../Drivers/CMSIS/Include" +set(CMAKE_CXX_TARGET_INCLUDE_PATH + "../cppSrc" "../Src/../Inc" "../Src/../cppSrc" "../Src/../Drivers/STM32F0xx_HAL_Driver/Inc" "../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include" "../Src/../Drivers/CMSIS/Include" - "../cppSrc" + "../Drivers/CMSIS/Device/ST/STM32F0xx/Include" + "../Drivers/CMSIS/Include" + "../Drivers/STM32F0xx_HAL_Driver/Inc" ) # Targets to which this target links. set(CMAKE_TARGET_LINKED_INFO_FILES "/home/key/github/KED/bsl/csl/stm32f042/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake" - "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake" "/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake" ) diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/build.make b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/build.make index 02b6107..27a62b8 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/build.make +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/build.make @@ -57,32 +57,30 @@ include CMakeFiles/refOvenTest.out.dir/progress.make # Include the compile flags for this target's objects. include CMakeFiles/refOvenTest.out.dir/flags.make -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: CMakeFiles/refOvenTest.out.dir/flags.make -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/refOvenTest.out.dir/Src/main.c.o" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/main.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/main.c +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: CMakeFiles/refOvenTest.out.dir/flags.make +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" + /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o -c /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp -CMakeFiles/refOvenTest.out.dir/Src/main.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/main.c.i" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/main.c > CMakeFiles/refOvenTest.out.dir/Src/main.c.i +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i" + /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp > CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i -CMakeFiles/refOvenTest.out.dir/Src/main.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/main.c.s" - /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/main.c -o CMakeFiles/refOvenTest.out.dir/Src/main.c.s +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s" + /usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp -o CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s # Object files for target refOvenTest.out refOvenTest_out_OBJECTS = \ -"CMakeFiles/refOvenTest.out.dir/Src/main.c.o" +"CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" # External object files for target refOvenTest.out refOvenTest_out_EXTERNAL_OBJECTS = -refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/main.c.o +refOvenTest.out: CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make refOvenTest.out: startup/libStartup.a refOvenTest.out: Src/libCSources.a -refOvenTest.out: libcpp_functions.a -refOvenTest.out: Src/libCSources.a refOvenTest.out: Drivers/libDrivers.a refOvenTest.out: CMakeFiles/refOvenTest.out.dir/link.txt @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out" diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake index f48c558..e6c8d82 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cmake_clean.cmake @@ -1,10 +1,10 @@ file(REMOVE_RECURSE - "CMakeFiles/refOvenTest.out.dir/Src/main.c.o" + "CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o" "refOvenTest.out.pdb" "refOvenTest.out" ) # Per-language clean rules from dependency scanning. -foreach(lang C) +foreach(lang CXX) include(CMakeFiles/refOvenTest.out.dir/cmake_clean_${lang}.cmake OPTIONAL) endforeach() diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.internal b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.internal index 0628ce9..ffeb767 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.internal +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.internal @@ -1,28 +1,28 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/refOvenTest.out.dir/Src/main.c.o - ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h - ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h - ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h - ../Drivers/CMSIS/Include/cmsis_armcc.h - ../Drivers/CMSIS/Include/cmsis_armclang.h - ../Drivers/CMSIS/Include/cmsis_compiler.h - ../Drivers/CMSIS/Include/cmsis_gcc.h - ../Drivers/CMSIS/Include/cmsis_iccarm.h - ../Drivers/CMSIS/Include/cmsis_version.h - ../Drivers/CMSIS/Include/core_cm0.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h - ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h - ../Inc/main.h - ../Inc/stm32_assert.h - ../Src/../cppSrc/transfer.h - /home/key/github/KED/bsl/csl/stm32f042/Src/main.c +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o + ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h + ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h + ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h + ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h + ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h + ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h + ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h + ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h + ../Src/../Drivers/CMSIS/Include/cmsis_version.h + ../Src/../Drivers/CMSIS/Include/core_cm0.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h + ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h + ../Src/../Inc/stm32_assert.h + ../Src/../Inc/stm32f0xx_csl.h + /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp + /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.make b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.make index eba81f1..50504d9 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.make +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/depend.make @@ -1,28 +1,28 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/cmsis_version.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/CMSIS/Include/core_cm0.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Inc/main.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Inc/stm32_assert.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/../cppSrc/transfer.h -CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Inc/stm32_assert.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../Src/../Inc/stm32f0xx_csl.h +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp +CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.h diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/flags.make b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/flags.make index 85e900c..640bd0c 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/flags.make +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/flags.make @@ -1,10 +1,10 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -# compile C with /usr/bin/arm-none-eabi-gcc -C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections +# compile CXX with /usr/bin/arm-none-eabi-g++ +CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++1z -C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 +CXX_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300 -C_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/cppSrc +CXX_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/link.txt b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/link.txt index dcfc25a..516438b 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/link.txt +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/link.txt @@ -1 +1 @@ -/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out startup/libStartup.a Src/libCSources.a libcpp_functions.a Src/libCSources.a Drivers/libDrivers.a +/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o -o refOvenTest.out startup/libStartup.a Src/libCSources.a Drivers/libDrivers.a diff --git a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/progress.make b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/progress.make index a35c33b..d92f75a 100644 --- a/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/progress.make +++ b/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/progress.make @@ -1,3 +1,3 @@ -CMAKE_PROGRESS_1 = 15 -CMAKE_PROGRESS_2 = 16 +CMAKE_PROGRESS_1 = 13 +CMAKE_PROGRESS_2 = 14 diff --git a/bsl/csl/stm32f042/build/Makefile b/bsl/csl/stm32f042/build/Makefile index 3d9448a..5207036 100644 --- a/bsl/csl/stm32f042/build/Makefile +++ b/bsl/csl/stm32f042/build/Makefile @@ -110,19 +110,6 @@ depend: $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1 .PHONY : depend -#============================================================================= -# Target rules for targets named cpp_functions - -# Build rule for target. -cpp_functions: cmake_check_build_system - $(MAKE) -f CMakeFiles/Makefile2 cpp_functions -.PHONY : cpp_functions - -# fast build rule for target. -cpp_functions/fast: - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build -.PHONY : cpp_functions/fast - #============================================================================= # Target rules for targets named refOvenTest.out @@ -175,40 +162,13 @@ CSources/fast: $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build .PHONY : CSources/fast -Src/main.o: Src/main.c.o - -.PHONY : Src/main.o - -# target to build an object file -Src/main.c.o: - $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/main.c.o -.PHONY : Src/main.c.o - -Src/main.i: Src/main.c.i - -.PHONY : Src/main.i - -# target to preprocess a source file -Src/main.c.i: - $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/main.c.i -.PHONY : Src/main.c.i - -Src/main.s: Src/main.c.s - -.PHONY : Src/main.s - -# target to generate assembly for a file -Src/main.c.s: - $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/main.c.s -.PHONY : Src/main.c.s - cppSrc/transfer.o: cppSrc/transfer.cpp.o .PHONY : cppSrc/transfer.o # target to build an object file cppSrc/transfer.cpp.o: - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o + $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o .PHONY : cppSrc/transfer.cpp.o cppSrc/transfer.i: cppSrc/transfer.cpp.i @@ -217,7 +177,7 @@ cppSrc/transfer.i: cppSrc/transfer.cpp.i # target to preprocess a source file cppSrc/transfer.cpp.i: - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i + $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i .PHONY : cppSrc/transfer.cpp.i cppSrc/transfer.s: cppSrc/transfer.cpp.s @@ -226,7 +186,7 @@ cppSrc/transfer.s: cppSrc/transfer.cpp.s # target to generate assembly for a file cppSrc/transfer.cpp.s: - $(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s + $(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s .PHONY : cppSrc/transfer.cpp.s # Help Target @@ -236,15 +196,11 @@ help: @echo "... clean" @echo "... depend" @echo "... rebuild_cache" - @echo "... edit_cache" - @echo "... cpp_functions" @echo "... refOvenTest.out" + @echo "... edit_cache" @echo "... Drivers" @echo "... Startup" @echo "... CSources" - @echo "... Src/main.o" - @echo "... Src/main.i" - @echo "... Src/main.s" @echo "... cppSrc/transfer.o" @echo "... cppSrc/transfer.i" @echo "... cppSrc/transfer.s" diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/C.includecache b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/C.includecache index 4d1d9f8..728a90e 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/C.includecache +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/C.includecache @@ -132,7 +132,9 @@ stm32f0xx.h stm32f0xx.h ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h -../Src/../Inc/main.h +../Src/../Inc/stm32_assert.h + +../Src/../Inc/stm32f0xx_csl.h stm32f0xx_ll_crs.h ../Src/../Inc/stm32f0xx_ll_crs.h stm32f0xx_ll_rcc.h @@ -156,23 +158,21 @@ stm32f0xx_ll_gpio.h stm32_assert.h ../Src/../Inc/stm32_assert.h -../Src/../Inc/stm32_assert.h - ../Src/../Inc/stm32f0xx_it.h ../Src/../cppSrc/transfer.h -main.h -../Src/../cppSrc/main.h +stm32f0xx_csl.h +../Src/../cppSrc/stm32f0xx_csl.h -/home/key/github/KED/bsl/csl/stm32f042/Src/main.c -main.h -/home/key/github/KED/bsl/csl/stm32f042/Src/main.h +/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c +stm32f0xx_csl.h +/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.h transfer.h /home/key/github/KED/bsl/csl/stm32f042/Src/transfer.h /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c -main.h -/home/key/github/KED/bsl/csl/stm32f042/Src/main.h +stm32f0xx_csl.h +/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.h stm32f0xx_it.h /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.h diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake index 3de97a6..efdee55 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake @@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES ) # The set of files for implicit dependencies of each language: set(CMAKE_DEPENDS_CHECK_C - "/home/key/github/KED/bsl/csl/stm32f042/Src/main.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/main.c.o" + "/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" "/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o" "/home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o" ) diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/build.make b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/build.make index 152c29a..3c790a6 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/build.make +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/build.make @@ -57,18 +57,18 @@ include Src/CMakeFiles/CSources.dir/progress.make # Include the compile flags for this target's objects. include Src/CMakeFiles/CSources.dir/flags.make -Src/CMakeFiles/CSources.dir/main.c.o: Src/CMakeFiles/CSources.dir/flags.make -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/main.c - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Src/CMakeFiles/CSources.dir/main.c.o" - cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/main.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/main.c +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: Src/CMakeFiles/CSources.dir/flags.make +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/stm32f0xx_csl.c + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" + cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/stm32f0xx_csl.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c -Src/CMakeFiles/CSources.dir/main.c.i: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/main.c.i" - cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/main.c > CMakeFiles/CSources.dir/main.c.i +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/stm32f0xx_csl.c.i" + cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c > CMakeFiles/CSources.dir/stm32f0xx_csl.c.i -Src/CMakeFiles/CSources.dir/main.c.s: cmake_force - @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/main.c.s" - cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/main.c -o CMakeFiles/CSources.dir/main.c.s +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s: cmake_force + @$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/stm32f0xx_csl.c.s" + cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c -o CMakeFiles/CSources.dir/stm32f0xx_csl.c.s Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: Src/CMakeFiles/CSources.dir/flags.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c @@ -98,14 +98,14 @@ Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s: cmake_force # Object files for target CSources CSources_OBJECTS = \ -"CMakeFiles/CSources.dir/main.c.o" \ +"CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" \ "CMakeFiles/CSources.dir/stm32f0xx_it.c.o" \ "CMakeFiles/CSources.dir/system_stm32f0xx.c.o" # External object files for target CSources CSources_EXTERNAL_OBJECTS = -Src/libCSources.a: Src/CMakeFiles/CSources.dir/main.c.o +Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o Src/libCSources.a: Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o Src/libCSources.a: Src/CMakeFiles/CSources.dir/build.make diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake index eee571a..454ca6b 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/cmake_clean.cmake @@ -1,5 +1,5 @@ file(REMOVE_RECURSE - "CMakeFiles/CSources.dir/main.c.o" + "CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" "CMakeFiles/CSources.dir/stm32f0xx_it.c.o" "CMakeFiles/CSources.dir/system_stm32f0xx.c.o" "libCSources.pdb" diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.internal b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.internal index ae95ddb..0762577 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.internal +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.internal @@ -1,7 +1,7 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -Src/CMakeFiles/CSources.dir/main.c.o +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h @@ -22,10 +22,10 @@ Src/CMakeFiles/CSources.dir/main.c.o ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h - ../Src/../Inc/main.h ../Src/../Inc/stm32_assert.h + ../Src/../Inc/stm32f0xx_csl.h ../Src/../cppSrc/transfer.h - /home/key/github/KED/bsl/csl/stm32f042/Src/main.c + /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -47,8 +47,8 @@ Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h - ../Src/../Inc/main.h ../Src/../Inc/stm32_assert.h + ../Src/../Inc/stm32f0xx_csl.h ../Src/../Inc/stm32f0xx_it.h /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.make b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.make index 74a3f1f..a595b78 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.make +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/depend.make @@ -1,30 +1,30 @@ # CMAKE generated file: DO NOT EDIT! # Generated by "Unix Makefiles" Generator, CMake Version 3.13 -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Inc/main.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../Inc/stm32_assert.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/../cppSrc/transfer.h -Src/CMakeFiles/CSources.dir/main.c.o: ../Src/main.c +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Inc/stm32_assert.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../Inc/stm32f0xx_csl.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/../cppSrc/transfer.h +Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/stm32f0xx_csl.c Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h @@ -46,8 +46,8 @@ Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Dr Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h -Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/main.h Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/stm32_assert.h +Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/stm32f0xx_csl.h Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Inc/stm32f0xx_it.h Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c diff --git a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/link.txt b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/link.txt index 71e72c4..9f94b56 100644 --- a/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/link.txt +++ b/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/link.txt @@ -1,2 +1,2 @@ -/usr/bin/arm-none-eabi-ar qc libCSources.a CMakeFiles/CSources.dir/main.c.o CMakeFiles/CSources.dir/stm32f0xx_it.c.o CMakeFiles/CSources.dir/system_stm32f0xx.c.o +/usr/bin/arm-none-eabi-ar qc libCSources.a CMakeFiles/CSources.dir/stm32f0xx_csl.c.o CMakeFiles/CSources.dir/stm32f0xx_it.c.o CMakeFiles/CSources.dir/system_stm32f0xx.c.o /usr/bin/arm-none-eabi-ranlib libCSources.a diff --git a/bsl/csl/stm32f042/build/Src/Makefile b/bsl/csl/stm32f042/build/Src/Makefile index 2df0123..edf0357 100644 --- a/bsl/csl/stm32f042/build/Src/Makefile +++ b/bsl/csl/stm32f042/build/Src/Makefile @@ -125,32 +125,32 @@ CSources/fast: cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build .PHONY : CSources/fast -main.o: main.c.o +stm32f0xx_csl.o: stm32f0xx_csl.c.o -.PHONY : main.o +.PHONY : stm32f0xx_csl.o # target to build an object file -main.c.o: - cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.o -.PHONY : main.c.o +stm32f0xx_csl.c.o: + cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o +.PHONY : stm32f0xx_csl.c.o -main.i: main.c.i +stm32f0xx_csl.i: stm32f0xx_csl.c.i -.PHONY : main.i +.PHONY : stm32f0xx_csl.i # target to preprocess a source file -main.c.i: - cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.i -.PHONY : main.c.i +stm32f0xx_csl.c.i: + cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i +.PHONY : stm32f0xx_csl.c.i -main.s: main.c.s +stm32f0xx_csl.s: stm32f0xx_csl.c.s -.PHONY : main.s +.PHONY : stm32f0xx_csl.s # target to generate assembly for a file -main.c.s: - cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.s -.PHONY : main.c.s +stm32f0xx_csl.c.s: + cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s +.PHONY : stm32f0xx_csl.c.s stm32f0xx_it.o: stm32f0xx_it.c.o @@ -215,9 +215,9 @@ help: @echo "... rebuild_cache" @echo "... CSources" @echo "... edit_cache" - @echo "... main.o" - @echo "... main.i" - @echo "... main.s" + @echo "... stm32f0xx_csl.o" + @echo "... stm32f0xx_csl.i" + @echo "... stm32f0xx_csl.s" @echo "... stm32f0xx_it.o" @echo "... stm32f0xx_it.i" @echo "... stm32f0xx_it.s" diff --git a/bsl/csl/stm32f042/build/refOvenTest.bin b/bsl/csl/stm32f042/build/refOvenTest.bin index 63488d3ff4ab9acb279ecf2f5b134767a46be3d5..07cc959d73c8d9bae8b9f1ff4d5e2ad4882c8eac 100755 GIT binary patch delta 791 zcmb`E&ubG=5XWcpqpYW<#FV6_F|viGcv5o7!3aIXV9|>RLV5_&Lv99z(nHHWO6bXh zvMKfu5Ahcos9j9O99+pk5Je#YFH-SVqbRsg_2q}zab9+7^9Q&v@3ZrLZ@x3T@6Rcg z^g$4!fpL)6ozTjWuqqO8p8bvg!C_DFKI}P^`~OXIAl`g&Rmy88B!$+C($SfIUp_CN z+dQ)A8)?AQUD&%M#W&8}pY1gB#*GNb`%$dkmeA#`O_EeCd;DYCLhxh^%vT*yf?%YW z0l=QZmUm7*76jxUu&ZR~r+~TI``Oa&gw7rs>soxJkG!t^3QhYq$UFxSEmBx5fa-SO zlS{Qtq$u(-G9}{`R%<9JnOXP1mRVr>+F&Nz$YYkrY4#2mqF_Gm{BG4#;DNLl1ju6@ z>nY?9&>iVDkvA-n?O1M*j(3|r+TXRrsc{tRv{)y(IXEN@O1yJo{%algfaQ*s421)= z9#eK)Vy+O5I{g>5E1{W*H|=`LNR8;sIG92x%%~P7;x51VwpAUrma>U#BDa*Y_%rQw z_?ueVMOC63N`FRGf8=5x1@(t4*0S|DQP(RhN4$rq#=hA46tQwT!SY0LetEzOd+y{7 zqVRp|AP)EBhFKU!$0i8f{7{=Jgi6*4FuD)zr1JbC8E%` TiK5YEj;dU^#jbO0EwcC*`I$*P delta 806 zcmb`E-)qxQ6vt2cV`M&T?FJ#Mwd;(a#l46_EaDF)#NyN!83+~Wz=u8z5fK@C$wkHx zQBX3lAWDY{t}qs?0|hI65r!bF=z}m6MYI(K0~6C<=6G(BY5xEN_kQmA^*!h2vIFh? zA&?=yFaTmA;x2tY7S*@`-nS9>AMDiR=T6NIyZ`Sr|C~3UUl1nsU4laUxGyk_dbm+!;+xL zP*Pb5z_H?J-A1OQgEFASP*BpN{vm#zw!!SHgL$Zq)+Yq>Wj!z^I*}K6HV&rL{8cTh z5P%fd0n)jSWfiTv=#RB3Xsy`XdTskb*x9UvDE{t@&C`02?}N@>bCMc1FA0vx0Onf5 z@36aBR-G~XrfJYw1D5vDqsdAHV92(%wwbc#<70-g*Bk4cemIiYw7bFUx(rs*d!(b? zvAS&)TWF2z6Vi5Rj($-VAU;RSuJXBgvaSy7i3UBDkJwbw)CtT~#GLy_sWo_%J{wn%S%YQ~qpa(nl1vO*A$3Acx57}_l_3tGbMuANd?;~o%HP^p` zSU8wu7l}NdIV`ZUXTKqG-Br(i>)DyFRM-26tq?PaC$;={SKt}(G&PWaxP@0t)L?)vjY?ten$jcP5_#F<+R+WOVlr9Y#SLJa@_ diff --git a/bsl/csl/stm32f042/cppSrc/transfer.cpp b/bsl/csl/stm32f042/cppSrc/transfer.cpp index 6037e76..1578ed8 100644 --- a/bsl/csl/stm32f042/cppSrc/transfer.cpp +++ b/bsl/csl/stm32f042/cppSrc/transfer.cpp @@ -1,5 +1,10 @@ #include "transfer.h" +int main(void) +{ + stmStart(); +} + int cppHook() { while (1) diff --git a/bsl/csl/stm32f042/cppSrc/transfer.h b/bsl/csl/stm32f042/cppSrc/transfer.h index 0d89d46..0b57e23 100644 --- a/bsl/csl/stm32f042/cppSrc/transfer.h +++ b/bsl/csl/stm32f042/cppSrc/transfer.h @@ -4,7 +4,7 @@ #ifdef __cplusplus extern "C" { #endif -#include "main.h" +#include "stm32f0xx_csl.h" int cppHook();