Cleaned the Cmake now triying to move the main function entry point to the the cpp

interrupts
atomega 4 years ago
parent ef0aa1340e
commit bcca9f4157

@ -10,6 +10,7 @@ set(CMAKE_ASM_COMPILER "/usr/bin/arm-none-eabi-gcc")
#set(CMAKE_ASM_FLAGS "-x assembler-with-cpp") #This flag is now part of a library The reason that we use arm-none-eabi-gcc is that we will invoke c before the assemly Thus the flags.
set(CMAKE_OBJCOPY "/usr/bin/arm-none-eabi-objcopy")
set(CMAKE_EXE_LINKER_FLAGS "--specs=nosys.specs")
####################################################################################################
#PROJECT & LIBRARIES : defined by user and important that it comes after the VARIABLES otherwise the Set varibale will not be used.
####################################################################################################
@ -32,10 +33,6 @@ set(EXECUTABLE ${PROJECT_NAME}.out)
####################################################################################################
#SOURCES
####################################################################################################
set(C_SOURCES
Src/stm32f0xx_it.c
Src/system_stm32f0xx.c)
set (C_INCLUDES
Inc
Drivers/STM32F0xx_HAL_Driver/Inc
@ -89,11 +86,6 @@ add_subdirectory(Src)
#LIBRARIES
####################################################################################################
add_library(${C_FUNC} ${C_SOURCES})
target_compile_options(${C_FUNC} PRIVATE ${C_FLAGS})
target_compile_definitions(${C_FUNC} PRIVATE ${C_DEFS})
target_include_directories(${C_FUNC} PUBLIC ${C_INCLUDES})
add_library(${CPP_FUNC} ${CPP_SOURCES})
target_compile_options(${CPP_FUNC} PRIVATE ${CPP_FLAGS})
target_compile_definitions(${CPP_FUNC} PRIVATE ${CPP_DEFS})

@ -34,28 +34,28 @@ The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/cmake
Determining if the C compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6267d/fast"
/usr/bin/make -f CMakeFiles/cmTC_6267d.dir/build.make CMakeFiles/cmTC_6267d.dir/build
Run Build Command:"/usr/bin/make" "cmTC_ffbd4/fast"
/usr/bin/make -f CMakeFiles/cmTC_ffbd4.dir/build.make CMakeFiles/cmTC_ffbd4.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_6267d.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_6267d.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_6267d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6267d.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_6267d.dir/testCCompiler.c.o -o cmTC_6267d
Building C object CMakeFiles/cmTC_ffbd4.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_ffbd4.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_ffbd4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_ffbd4.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_ffbd4.dir/testCCompiler.c.o -o cmTC_ffbd4
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_27182/fast"
/usr/bin/make -f CMakeFiles/cmTC_27182.dir/build.make CMakeFiles/cmTC_27182.dir/build
Run Build Command:"/usr/bin/make" "cmTC_acbaf/fast"
/usr/bin/make -f CMakeFiles/cmTC_acbaf.dir/build.make CMakeFiles/cmTC_acbaf.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_27182
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27182.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -o cmTC_27182
Building C object CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_acbaf
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_acbaf.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -o cmTC_acbaf
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_27182'
/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/ccdu7qxi.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_27182 /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_27182.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_27182'
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_acbaf'
/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/ccIXnsH3.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_acbaf /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_acbaf.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_acbaf'
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_27182/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_27182.dir/build.make CMakeFiles/cmTC_27182.dir/build]
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_acbaf/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_acbaf.dir/build.make CMakeFiles/cmTC_acbaf.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_27182]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_27182.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_27182.dir/CMakeCCompilerABI.c.o -o cmTC_27182 ]
ignore line: [Building C object CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_acbaf]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_acbaf.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_acbaf.dir/CMakeCCompilerABI.c.o -o cmTC_acbaf ]
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_27182']
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/ccdu7qxi.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_27182 /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_27182.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_acbaf']
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/ccIXnsH3.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_acbaf /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_acbaf.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/ccdu7qxi.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccIXnsH3.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_27182] ==> ignore
arg [cmTC_acbaf] ==> 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_27182.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [CMakeFiles/cmTC_acbaf.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/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2ccb5/fast"
/usr/bin/make -f CMakeFiles/cmTC_2ccb5.dir/build.make CMakeFiles/cmTC_2ccb5.dir/build
Run Build Command:"/usr/bin/make" "cmTC_f756e/fast"
/usr/bin/make -f CMakeFiles/cmTC_f756e.dir/build.make CMakeFiles/cmTC_f756e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_2ccb5.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_2ccb5.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_2ccb5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2ccb5.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_2ccb5.dir/feature_tests.c.o -o cmTC_2ccb5
Building C object CMakeFiles/cmTC_f756e.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_f756e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_f756e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f756e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_f756e.dir/feature_tests.c.o -o cmTC_f756e
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -160,14 +160,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7e4f5/fast"
/usr/bin/make -f CMakeFiles/cmTC_7e4f5.dir/build.make CMakeFiles/cmTC_7e4f5.dir/build
Run Build Command:"/usr/bin/make" "cmTC_36c60/fast"
/usr/bin/make -f CMakeFiles/cmTC_36c60.dir/build.make CMakeFiles/cmTC_36c60.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_7e4f5.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_7e4f5.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_7e4f5
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e4f5.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_7e4f5.dir/feature_tests.c.o -o cmTC_7e4f5
Building C object CMakeFiles/cmTC_36c60.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_36c60.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_36c60
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_36c60.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_36c60.dir/feature_tests.c.o -o cmTC_36c60
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -180,14 +180,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_3e60e/fast"
/usr/bin/make -f CMakeFiles/cmTC_3e60e.dir/build.make CMakeFiles/cmTC_3e60e.dir/build
Run Build Command:"/usr/bin/make" "cmTC_7ffd1/fast"
/usr/bin/make -f CMakeFiles/cmTC_7ffd1.dir/build.make CMakeFiles/cmTC_7ffd1.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_3e60e.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_3e60e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_3e60e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_3e60e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_3e60e.dir/feature_tests.c.o -o cmTC_3e60e
Building C object CMakeFiles/cmTC_7ffd1.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_7ffd1.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_7ffd1
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ffd1.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_7ffd1.dir/feature_tests.c.o -o cmTC_7ffd1
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -198,28 +198,28 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_5862e/fast"
/usr/bin/make -f CMakeFiles/cmTC_5862e.dir/build.make CMakeFiles/cmTC_5862e.dir/build
Run Build Command:"/usr/bin/make" "cmTC_e2d64/fast"
/usr/bin/make -f CMakeFiles/cmTC_e2d64.dir/build.make CMakeFiles/cmTC_e2d64.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_5862e.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_5862e.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_5862e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5862e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_5862e.dir/testCXXCompiler.cxx.o -o cmTC_5862e
Building CXX object CMakeFiles/cmTC_e2d64.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_e2d64.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_e2d64
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e2d64.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_e2d64.dir/testCXXCompiler.cxx.o -o cmTC_e2d64
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_a3998/fast"
/usr/bin/make -f CMakeFiles/cmTC_a3998.dir/build.make CMakeFiles/cmTC_a3998.dir/build
Run Build Command:"/usr/bin/make" "cmTC_1a30a/fast"
/usr/bin/make -f CMakeFiles/cmTC_1a30a.dir/build.make CMakeFiles/cmTC_1a30a.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_a3998
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3998.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a3998
Building CXX object CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_1a30a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a30a.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_1a30a
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_a3998'
/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/ccCpqD8P.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_a3998 /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_a3998.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_a3998'
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_1a30a'
/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/ccCmmMlv.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_1a30a /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_1a30a.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_1a30a'
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_a3998/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_a3998.dir/build.make CMakeFiles/cmTC_a3998.dir/build]
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_1a30a/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_1a30a.dir/build.make CMakeFiles/cmTC_1a30a.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_a3998]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3998.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_a3998.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_a3998 ]
ignore line: [Building CXX object CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_1a30a]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_1a30a.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_1a30a.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_1a30a ]
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_a3998']
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/ccCpqD8P.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_a3998 /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_a3998.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_1a30a']
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/ccCmmMlv.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_1a30a /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_1a30a.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/ccCpqD8P.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccCmmMlv.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_a3998] ==> ignore
arg [cmTC_1a30a] ==> 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_a3998.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [CMakeFiles/cmTC_1a30a.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/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_6547a/fast"
/usr/bin/make -f CMakeFiles/cmTC_6547a.dir/build.make CMakeFiles/cmTC_6547a.dir/build
Run Build Command:"/usr/bin/make" "cmTC_7ec2e/fast"
/usr/bin/make -f CMakeFiles/cmTC_7ec2e.dir/build.make CMakeFiles/cmTC_7ec2e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_6547a.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_6547a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_6547a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6547a.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_6547a.dir/feature_tests.cxx.o -o cmTC_6547a
Building CXX object CMakeFiles/cmTC_7ec2e.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_7ec2e.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_7ec2e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7ec2e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_7ec2e.dir/feature_tests.cxx.o -o cmTC_7ec2e
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -379,14 +379,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_05034/fast"
/usr/bin/make -f CMakeFiles/cmTC_05034.dir/build.make CMakeFiles/cmTC_05034.dir/build
Run Build Command:"/usr/bin/make" "cmTC_f37ce/fast"
/usr/bin/make -f CMakeFiles/cmTC_f37ce.dir/build.make CMakeFiles/cmTC_f37ce.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_05034.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_05034.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_05034
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05034.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_05034.dir/feature_tests.cxx.o -o cmTC_05034
Building CXX object CMakeFiles/cmTC_f37ce.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_f37ce.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_f37ce
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f37ce.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_f37ce.dir/feature_tests.cxx.o -o cmTC_f37ce
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -452,14 +452,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c5705/fast"
/usr/bin/make -f CMakeFiles/cmTC_c5705.dir/build.make CMakeFiles/cmTC_c5705.dir/build
Run Build Command:"/usr/bin/make" "cmTC_6c44f/fast"
/usr/bin/make -f CMakeFiles/cmTC_6c44f.dir/build.make CMakeFiles/cmTC_6c44f.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_c5705.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_c5705.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_c5705
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c5705.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_c5705.dir/feature_tests.cxx.o -o cmTC_c5705
Building CXX object CMakeFiles/cmTC_6c44f.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_6c44f.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_6c44f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_6c44f.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_6c44f.dir/feature_tests.cxx.o -o cmTC_6c44f
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
@ -525,14 +525,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFi
Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_2dc75/fast"
/usr/bin/make -f CMakeFiles/cmTC_2dc75.dir/build.make CMakeFiles/cmTC_2dc75.dir/build
Run Build Command:"/usr/bin/make" "cmTC_c9720/fast"
/usr/bin/make -f CMakeFiles/cmTC_c9720.dir/build.make CMakeFiles/cmTC_c9720.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2dc75.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_2dc75.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_2dc75
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2dc75.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_2dc75.dir/feature_tests.cxx.o -o cmTC_2dc75
Building CXX object CMakeFiles/cmTC_c9720.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_c9720.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_c9720
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c9720.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_c9720.dir/feature_tests.cxx.o -o cmTC_c9720
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'

@ -128,9 +128,8 @@ set(CMAKE_MAKEFILE_PRODUCTS
# Dependency information for all targets:
set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/refOvenTest.out.dir/DependInfo.cmake"
"CMakeFiles/c_functions.dir/DependInfo.cmake"
"CMakeFiles/cpp_functions.dir/DependInfo.cmake"
"CMakeFiles/refOvenTest.out.dir/DependInfo.cmake"
"Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
"startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"Src/CMakeFiles/CSources.dir/DependInfo.cmake"

@ -65,117 +65,80 @@ CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/cmakeLowLayer
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
#=============================================================================
# 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/cmakeLowLayer/build/CMakeFiles --progress-num=18,19 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Include target in all.
all: CMakeFiles/refOvenTest.out.dir/all
.PHONY : 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/cmakeLowLayer/build/CMakeFiles 16
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/refOvenTest.out.dir/rule
# Convenience name for target.
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule
.PHONY : refOvenTest.out
# clean rule for target.
CMakeFiles/refOvenTest.out.dir/clean:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean
.PHONY : CMakeFiles/refOvenTest.out.dir/clean
# clean rule for target.
clean: CMakeFiles/refOvenTest.out.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/c_functions.dir
# Target rules for target CMakeFiles/cpp_functions.dir
# All Build rule for target.
CMakeFiles/c_functions.dir/all:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/depend
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=13,14,15 "Built target c_functions"
.PHONY : CMakeFiles/c_functions.dir/all
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/cmakeLowLayer/build/CMakeFiles --progress-num=13,14 "Built target cpp_functions"
.PHONY : CMakeFiles/cpp_functions.dir/all
# Include target in all.
all: CMakeFiles/c_functions.dir/all
all: CMakeFiles/cpp_functions.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/c_functions.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 3
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/c_functions.dir/all
CMakeFiles/cpp_functions.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 12
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cpp_functions.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/c_functions.dir/rule
.PHONY : CMakeFiles/cpp_functions.dir/rule
# Convenience name for target.
c_functions: CMakeFiles/c_functions.dir/rule
cpp_functions: CMakeFiles/cpp_functions.dir/rule
.PHONY : c_functions
.PHONY : cpp_functions
# clean rule for target.
CMakeFiles/c_functions.dir/clean:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/clean
.PHONY : CMakeFiles/c_functions.dir/clean
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/c_functions.dir/clean
clean: CMakeFiles/cpp_functions.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/cpp_functions.dir
# Target rules for target CMakeFiles/refOvenTest.out.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/cmakeLowLayer/build/CMakeFiles --progress-num=16,17 "Built target cpp_functions"
.PHONY : CMakeFiles/cpp_functions.dir/all
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/cmakeLowLayer/build/CMakeFiles --progress-num=15,16 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Include target in all.
all: CMakeFiles/cpp_functions.dir/all
all: CMakeFiles/refOvenTest.out.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/cmakeLowLayer/build/CMakeFiles 12
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cpp_functions.dir/all
CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 16
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/cpp_functions.dir/rule
.PHONY : CMakeFiles/refOvenTest.out.dir/rule
# Convenience name for target.
cpp_functions: CMakeFiles/cpp_functions.dir/rule
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/rule
.PHONY : cpp_functions
.PHONY : refOvenTest.out
# 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
CMakeFiles/refOvenTest.out.dir/clean:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/clean
.PHONY : CMakeFiles/refOvenTest.out.dir/clean
# clean rule for target.
clean: CMakeFiles/cpp_functions.dir/clean
clean: CMakeFiles/refOvenTest.out.dir/clean
.PHONY : clean

@ -1,8 +1,7 @@
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/edit_cache.dir

@ -1,172 +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
../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h
stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
stm32f0xx.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx.h

@ -1,41 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o"
)
set(CMAKE_C_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
"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_C_TARGET_INCLUDE_PATH
"../Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,114 +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/cmakeLowLayer
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/cmakeLowLayer/build
# Include any dependencies generated for this target.
include CMakeFiles/c_functions.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/c_functions.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c -o CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: CMakeFiles/c_functions.dir/flags.make
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Building C object CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c -o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s
# Object files for target c_functions
c_functions_OBJECTS = \
"CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o" \
"CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o"
# External object files for target c_functions
c_functions_EXTERNAL_OBJECTS =
libc_functions.a: CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o
libc_functions.a: CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o
libc_functions.a: CMakeFiles/c_functions.dir/build.make
libc_functions.a: CMakeFiles/c_functions.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_3) "Linking C static library libc_functions.a"
$(CMAKE_COMMAND) -P CMakeFiles/c_functions.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/c_functions.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/c_functions.dir/build: libc_functions.a
.PHONY : CMakeFiles/c_functions.dir/build
CMakeFiles/c_functions.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/c_functions.dir/cmake_clean.cmake
.PHONY : CMakeFiles/c_functions.dir/clean
CMakeFiles/c_functions.dir/depend:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/c_functions.dir/depend

@ -1,11 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o"
"CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o"
"libc_functions.pdb"
"libc_functions.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
include(CMakeFiles/c_functions.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,40 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.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
../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.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
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c

@ -1,40 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Inc/main.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Inc/stm32_assert.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Inc/stm32f0xx_it.h
CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c

@ -1,10 +0,0 @@
# 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
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
C_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include

@ -1,2 +0,0 @@
/usr/bin/arm-none-eabi-ar qc libc_functions.a CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o
/usr/bin/arm-none-eabi-ranlib libc_functions.a

@ -1,4 +0,0 @@
CMAKE_PROGRESS_1 = 13
CMAKE_PROGRESS_2 = 14
CMAKE_PROGRESS_3 = 15

@ -1,3 +1,3 @@
CMAKE_PROGRESS_1 = 16
CMAKE_PROGRESS_2 = 17
CMAKE_PROGRESS_1 = 13
CMAKE_PROGRESS_2 = 14

@ -1,3 +1,3 @@
CMAKE_PROGRESS_1 = 18
CMAKE_PROGRESS_2 = 19
CMAKE_PROGRESS_1 = 15
CMAKE_PROGRESS_2 = 16

@ -110,32 +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 refOvenTest.out
# Build rule for target.
refOvenTest.out: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 refOvenTest.out
.PHONY : refOvenTest.out
# fast build rule for target.
refOvenTest.out/fast:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
.PHONY : refOvenTest.out/fast
#=============================================================================
# Target rules for targets named c_functions
# Build rule for target.
c_functions: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 c_functions
.PHONY : c_functions
# fast build rule for target.
c_functions/fast:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/build
.PHONY : c_functions/fast
#=============================================================================
# Target rules for targets named cpp_functions
@ -149,6 +123,19 @@ 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
# Build rule for target.
refOvenTest.out: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 refOvenTest.out
.PHONY : refOvenTest.out
# fast build rule for target.
refOvenTest.out/fast:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
.PHONY : refOvenTest.out/fast
#=============================================================================
# Target rules for targets named Drivers
@ -215,60 +202,6 @@ 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
Src/stm32f0xx_it.o: Src/stm32f0xx_it.c.o
.PHONY : Src/stm32f0xx_it.o
# target to build an object file
Src/stm32f0xx_it.c.o:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.o
.PHONY : Src/stm32f0xx_it.c.o
Src/stm32f0xx_it.i: Src/stm32f0xx_it.c.i
.PHONY : Src/stm32f0xx_it.i
# target to preprocess a source file
Src/stm32f0xx_it.c.i:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.i
.PHONY : Src/stm32f0xx_it.c.i
Src/stm32f0xx_it.s: Src/stm32f0xx_it.c.s
.PHONY : Src/stm32f0xx_it.s
# target to generate assembly for a file
Src/stm32f0xx_it.c.s:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/stm32f0xx_it.c.s
.PHONY : Src/stm32f0xx_it.c.s
Src/system_stm32f0xx.o: Src/system_stm32f0xx.c.o
.PHONY : Src/system_stm32f0xx.o
# target to build an object file
Src/system_stm32f0xx.c.o:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.o
.PHONY : Src/system_stm32f0xx.c.o
Src/system_stm32f0xx.i: Src/system_stm32f0xx.c.i
.PHONY : Src/system_stm32f0xx.i
# target to preprocess a source file
Src/system_stm32f0xx.c.i:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.i
.PHONY : Src/system_stm32f0xx.c.i
Src/system_stm32f0xx.s: Src/system_stm32f0xx.c.s
.PHONY : Src/system_stm32f0xx.s
# target to generate assembly for a file
Src/system_stm32f0xx.c.s:
$(MAKE) -f CMakeFiles/c_functions.dir/build.make CMakeFiles/c_functions.dir/Src/system_stm32f0xx.c.s
.PHONY : Src/system_stm32f0xx.c.s
cppSrc/transfer.o: cppSrc/transfer.cpp.o
.PHONY : cppSrc/transfer.o
@ -304,21 +237,14 @@ help:
@echo "... depend"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... refOvenTest.out"
@echo "... c_functions"
@echo "... cpp_functions"
@echo "... refOvenTest.out"
@echo "... Drivers"
@echo "... Startup"
@echo "... CSources"
@echo "... Src/main.o"
@echo "... Src/main.i"
@echo "... Src/main.s"
@echo "... Src/stm32f0xx_it.o"
@echo "... Src/stm32f0xx_it.i"
@echo "... Src/stm32f0xx_it.s"
@echo "... Src/system_stm32f0xx.o"
@echo "... Src/system_stm32f0xx.i"
@echo "... Src/system_stm32f0xx.s"
@echo "... cppSrc/transfer.o"
@echo "... cppSrc/transfer.i"
@echo "... cppSrc/transfer.s"

@ -6,7 +6,7 @@ int cppHook()
{
/* USER CODE END WHILE */
LL_GPIO_TogglePin(LED_G_GPIO_Port,LED_G_Pin);
LL_mDelay(1000);
LL_mDelay(500);
/* USER CODE BEGIN 3 */
}
return 1;

Loading…
Cancel
Save