Was able to additinonaly separate Src and Startup

interrupts
atomega 4 years ago
parent c7e9670222
commit ef0aa1340e

@ -83,7 +83,7 @@ set(LINKER_FLAGS
####################################################################################################
add_subdirectory(Drivers)
add_subdirectory(startup)
#add_subdirectory(Src)
add_subdirectory(Src)
####################################################################################################
#LIBRARIES
@ -105,8 +105,7 @@ target_include_directories(${CPP_FUNC} PUBLIC ${CPP_INCLUDES})
####################################################################################################
#LINKING LIBRARIES
####################################################################################################
target_link_libraries(${CPP_FUNC} ${C_FUNC})
target_link_libraries(${C_FUNC} sub::drivers)
target_link_libraries(${CPP_FUNC} sub::cSources)
####################################################################################################
#EXECUTABLE
@ -119,7 +118,7 @@ target_include_directories(${EXECUTABLE} PUBLIC ${C_INCLUDES})
####################################################################################################
#LINKING EXECUTEABLE
####################################################################################################
target_link_libraries(${EXECUTABLE} sub::startup ${C_FUNC} ${CPP_FUNC})
target_link_libraries(${EXECUTABLE} sub::startup sub::cSources ${CPP_FUNC})#${C_FUNC} ${CPP_FUNC})
target_link_options(${EXECUTABLE} PRIVATE
${CPU_MCU}
-mthumb

@ -2,6 +2,7 @@ project(CSources)
set (C_INCLUDES
../Inc
../cppSrc
../Drivers/STM32F0xx_HAL_Driver/Inc
../Drivers/CMSIS/Device/ST/STM32F0xx/Include
../Drivers/CMSIS/Include)
@ -11,10 +12,13 @@ set(C_SOURCES
stm32f0xx_it.c
system_stm32f0xx.c)
#add_subdirectory(Drivers)
add_library(${PROJECT_NAME} ${C_SOURCES})
target_compile_options(${PROJECT_NAME} PRIVATE ${C_FLAGS})
target_compile_definitions(${PROJECT_NAME} PRIVATE ${C_DEFS})
target_include_directories(${PROJECT_NAME} PUBLIC ${C_INCLUDES})
target_link_libraries(${PROJECT_NAME} sub::drivers)
#To create an alias to be used on the main CMAKE.
add_library(sub::cSources ALIAS ${PROJECT_NAME})

@ -214,6 +214,15 @@ CMAKE_STRIP:FILEPATH=/usr/bin/arm-none-eabi-strip
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Value Computed by CMake
CSources_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/Src
//Dependencies for the target
CSources_LIB_DEPENDS:STATIC=general;sub::drivers;
//Value Computed by CMake
CSources_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/Src
//Value Computed by CMake
Drivers_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers
@ -227,10 +236,7 @@ Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build/startup
Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/startup
//Dependencies for the target
c_functions_LIB_DEPENDS:STATIC=general;sub::drivers;
//Dependencies for the target
cpp_functions_LIB_DEPENDS:STATIC=general;c_functions;
cpp_functions_LIB_DEPENDS:STATIC=general;sub::cSources;
//Value Computed by CMake
refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/cmakeLowLayer/build
@ -350,7 +356,7 @@ CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=3
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=4
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized

@ -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_abaeb/fast"
/usr/bin/make -f CMakeFiles/cmTC_abaeb.dir/build.make CMakeFiles/cmTC_abaeb.dir/build
Run Build Command:"/usr/bin/make" "cmTC_6267d/fast"
/usr/bin/make -f CMakeFiles/cmTC_6267d.dir/build.make CMakeFiles/cmTC_6267d.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_abaeb
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_abaeb.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_abaeb.dir/testCCompiler.c.o -o cmTC_abaeb
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
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_c00de/fast"
/usr/bin/make -f CMakeFiles/cmTC_c00de.dir/build.make CMakeFiles/cmTC_c00de.dir/build
Run Build Command:"/usr/bin/make" "cmTC_27182/fast"
/usr/bin/make -f CMakeFiles/cmTC_27182.dir/build.make CMakeFiles/cmTC_27182.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_c00de
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c00de.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -o cmTC_c00de
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
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_c00de'
/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/ccmi4CH1.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_c00de /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_c00de.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_c00de'
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'
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_c00de/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c00de.dir/build.make CMakeFiles/cmTC_c00de.dir/build]
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: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_c00de]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c00de.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_c00de.dir/CMakeCCompilerABI.c.o -o cmTC_c00de ]
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: [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_c00de']
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/ccmi4CH1.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_c00de /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_c00de.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_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]
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/ccmi4CH1.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccdu7qxi.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_c00de] ==> ignore
arg [cmTC_27182] ==> 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_c00de.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [CMakeFiles/cmTC_27182.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_a3da3/fast"
/usr/bin/make -f CMakeFiles/cmTC_a3da3.dir/build.make CMakeFiles/cmTC_a3da3.dir/build
Run Build Command:"/usr/bin/make" "cmTC_2ccb5/fast"
/usr/bin/make -f CMakeFiles/cmTC_2ccb5.dir/build.make CMakeFiles/cmTC_2ccb5.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_a3da3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a3da3.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_a3da3.dir/feature_tests.c.o -o cmTC_a3da3
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
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_444a2/fast"
/usr/bin/make -f CMakeFiles/cmTC_444a2.dir/build.make CMakeFiles/cmTC_444a2.dir/build
Run Build Command:"/usr/bin/make" "cmTC_7e4f5/fast"
/usr/bin/make -f CMakeFiles/cmTC_7e4f5.dir/build.make CMakeFiles/cmTC_7e4f5.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_444a2.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_444a2
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_444a2.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_444a2.dir/feature_tests.c.o -o cmTC_444a2
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
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_31fb0/fast"
/usr/bin/make -f CMakeFiles/cmTC_31fb0.dir/build.make CMakeFiles/cmTC_31fb0.dir/build
Run Build Command:"/usr/bin/make" "cmTC_3e60e/fast"
/usr/bin/make -f CMakeFiles/cmTC_3e60e.dir/build.make CMakeFiles/cmTC_3e60e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_31fb0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_31fb0.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_31fb0.dir/feature_tests.c.o -o cmTC_31fb0
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
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_f2a35/fast"
/usr/bin/make -f CMakeFiles/cmTC_f2a35.dir/build.make CMakeFiles/cmTC_f2a35.dir/build
Run Build Command:"/usr/bin/make" "cmTC_5862e/fast"
/usr/bin/make -f CMakeFiles/cmTC_5862e.dir/build.make CMakeFiles/cmTC_5862e.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_f2a35
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f2a35.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_f2a35.dir/testCXXCompiler.cxx.o -o cmTC_f2a35
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
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_56b49/fast"
/usr/bin/make -f CMakeFiles/cmTC_56b49.dir/build.make CMakeFiles/cmTC_56b49.dir/build
Run Build Command:"/usr/bin/make" "cmTC_a3998/fast"
/usr/bin/make -f CMakeFiles/cmTC_a3998.dir/build.make CMakeFiles/cmTC_a3998.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_56b49
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_56b49.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_56b49
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
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_56b49'
/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/ccJiZHFC.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_56b49 /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_56b49.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_56b49'
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'
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_56b49/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_56b49.dir/build.make CMakeFiles/cmTC_56b49.dir/build]
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: [make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_56b49]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_56b49.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_56b49.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_56b49 ]
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: [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_56b49']
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/ccJiZHFC.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_56b49 /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_56b49.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_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]
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/ccJiZHFC.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccCpqD8P.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_56b49] ==> ignore
arg [cmTC_a3998] ==> 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_56b49.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [CMakeFiles/cmTC_a3998.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_b97e7/fast"
/usr/bin/make -f CMakeFiles/cmTC_b97e7.dir/build.make CMakeFiles/cmTC_b97e7.dir/build
Run Build Command:"/usr/bin/make" "cmTC_6547a/fast"
/usr/bin/make -f CMakeFiles/cmTC_6547a.dir/build.make CMakeFiles/cmTC_6547a.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_b97e7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b97e7.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_b97e7.dir/feature_tests.cxx.o -o cmTC_b97e7
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
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_05073/fast"
/usr/bin/make -f CMakeFiles/cmTC_05073.dir/build.make CMakeFiles/cmTC_05073.dir/build
Run Build Command:"/usr/bin/make" "cmTC_05034/fast"
/usr/bin/make -f CMakeFiles/cmTC_05034.dir/build.make CMakeFiles/cmTC_05034.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_05073
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_05073.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_05073.dir/feature_tests.cxx.o -o cmTC_05073
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
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_215a3/fast"
/usr/bin/make -f CMakeFiles/cmTC_215a3.dir/build.make CMakeFiles/cmTC_215a3.dir/build
Run Build Command:"/usr/bin/make" "cmTC_c5705/fast"
/usr/bin/make -f CMakeFiles/cmTC_c5705.dir/build.make CMakeFiles/cmTC_c5705.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_215a3
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_215a3.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_215a3.dir/feature_tests.cxx.o -o cmTC_215a3
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
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_2c26a/fast"
/usr/bin/make -f CMakeFiles/cmTC_2c26a.dir/build.make CMakeFiles/cmTC_2c26a.dir/build
Run Build Command:"/usr/bin/make" "cmTC_2dc75/fast"
/usr/bin/make -f CMakeFiles/cmTC_2dc75.dir/build.make CMakeFiles/cmTC_2dc75.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_2c26a
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_2c26a.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_2c26a.dir/feature_tests.cxx.o -o cmTC_2c26a
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
make[1]: Leaving directory '/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/CMakeTmp'

@ -9,6 +9,7 @@ set(CMAKE_MAKEFILE_DEPENDS
"CMakeCache.txt"
"../CMakeLists.txt"
"../Drivers/CMakeLists.txt"
"../Src/CMakeLists.txt"
"CMakeFiles/3.13.4/CMakeASMCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCCompiler.cmake"
"CMakeFiles/3.13.4/CMakeCXXCompiler.cmake"
@ -122,6 +123,7 @@ set(CMAKE_MAKEFILE_PRODUCTS
"CMakeFiles/CMakeDirectoryInformation.cmake"
"Drivers/CMakeFiles/CMakeDirectoryInformation.cmake"
"startup/CMakeFiles/CMakeDirectoryInformation.cmake"
"Src/CMakeFiles/CMakeDirectoryInformation.cmake"
)
# Dependency information for all targets:
@ -131,4 +133,5 @@ set(CMAKE_DEPEND_INFO_FILES
"CMakeFiles/cpp_functions.dir/DependInfo.cmake"
"Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
"startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"Src/CMakeFiles/CSources.dir/DependInfo.cmake"
)

@ -68,13 +68,13 @@ 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/c_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=14,15 "Built target refOvenTest.out"
@$(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.
@ -84,7 +84,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/cmakeLowLayer/build/CMakeFiles 15
$(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
@ -108,10 +108,10 @@ clean: CMakeFiles/refOvenTest.out.dir/clean
# Target rules for target CMakeFiles/c_functions.dir
# All Build rule for target.
CMakeFiles/c_functions.dir/all: Drivers/CMakeFiles/Drivers.dir/all
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=9,10,11 "Built target c_functions"
@$(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
# Include target in all.
@ -121,7 +121,7 @@ all: CMakeFiles/c_functions.dir/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 9
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 3
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/c_functions.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : CMakeFiles/c_functions.dir/rule
@ -145,11 +145,11 @@ clean: CMakeFiles/c_functions.dir/clean
# Target rules for target CMakeFiles/cpp_functions.dir
# All Build rule for target.
CMakeFiles/cpp_functions.dir/all: 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=12,13 "Built target cpp_functions"
@$(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
# Include target in all.
@ -159,7 +159,7 @@ all: CMakeFiles/cpp_functions.dir/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 11
$(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/cpp_functions.dir/rule
@ -204,7 +204,7 @@ Drivers/preinstall:
Drivers/CMakeFiles/Drivers.dir/all:
$(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/depend
$(MAKE) -f Drivers/CMakeFiles/Drivers.dir/build.make Drivers/CMakeFiles/Drivers.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=1,2,3,4,5,6 "Built target Drivers"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=5,6,7,8,9,10 "Built target Drivers"
.PHONY : Drivers/CMakeFiles/Drivers.dir/all
# Include target in all.
@ -259,7 +259,7 @@ startup/preinstall:
startup/CMakeFiles/Startup.dir/all:
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/depend
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=7,8 "Built target Startup"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=11,12 "Built target Startup"
.PHONY : startup/CMakeFiles/Startup.dir/all
# Include target in all.
@ -289,6 +289,61 @@ clean: startup/CMakeFiles/Startup.dir/clean
.PHONY : clean
#=============================================================================
# Directory level rules for directory Src
# Convenience name for "all" pass in the directory.
Src/all: Src/CMakeFiles/CSources.dir/all
.PHONY : Src/all
# Convenience name for "clean" pass in the directory.
Src/clean: Src/CMakeFiles/CSources.dir/clean
.PHONY : Src/clean
# Convenience name for "preinstall" pass in the directory.
Src/preinstall:
.PHONY : Src/preinstall
#=============================================================================
# Target rules for target Src/CMakeFiles/CSources.dir
# All Build rule for target.
Src/CMakeFiles/CSources.dir/all: Drivers/CMakeFiles/Drivers.dir/all
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/depend
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles --progress-num=1,2,3,4 "Built target CSources"
.PHONY : Src/CMakeFiles/CSources.dir/all
# Include target in all.
all: Src/CMakeFiles/CSources.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
Src/CMakeFiles/CSources.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 10
$(MAKE) -f CMakeFiles/Makefile2 Src/CMakeFiles/CSources.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : Src/CMakeFiles/CSources.dir/rule
# Convenience name for target.
CSources: Src/CMakeFiles/CSources.dir/rule
.PHONY : CSources
# clean rule for target.
Src/CMakeFiles/CSources.dir/clean:
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/clean
.PHONY : Src/CMakeFiles/CSources.dir/clean
# clean rule for target.
clean: Src/CMakeFiles/CSources.dir/clean
.PHONY : clean
#=============================================================================
# Special targets to cleanup operation of make.

@ -9,3 +9,6 @@
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir
/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/edit_cache.dir

@ -35,7 +35,6 @@ set(CMAKE_C_TARGET_INCLUDE_PATH
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)
# Fortran module output directory.

@ -1,4 +1,4 @@
CMAKE_PROGRESS_1 = 9
CMAKE_PROGRESS_2 = 10
CMAKE_PROGRESS_3 = 11
CMAKE_PROGRESS_1 = 13
CMAKE_PROGRESS_2 = 14
CMAKE_PROGRESS_3 = 15

@ -6,67 +6,67 @@
#IncludeRegexTransform:
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
core_cm0.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
system_stm32f0xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
stdint.h
-
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
stm32f030x6.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
stm32f030x8.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
stm32f031x6.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
stm32f038xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
stm32f042x6.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
stm32f048xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
stm32f051x8.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
stm32f058xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
stm32f070x6.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
stm32f070xb.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
stm32f071xb.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
stm32f072xb.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
stm32f078xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
stm32f091xc.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
stm32f098xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
stm32f030xc.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
stm32f0xx_hal.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../Drivers/CMSIS/Include/cmsis_armcc.h
../Src/../Drivers/CMSIS/Include/cmsis_armcc.h
../Drivers/CMSIS/Include/cmsis_armclang.h
../Src/../Drivers/CMSIS/Include/cmsis_armclang.h
arm_compat.h
-
../Drivers/CMSIS/Include/cmsis_compiler.h
../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
stdint.h
-
cmsis_armcc.h
../Drivers/CMSIS/Include/cmsis_armcc.h
../Src/../Drivers/CMSIS/Include/cmsis_armcc.h
cmsis_armclang.h
../Drivers/CMSIS/Include/cmsis_armclang.h
../Src/../Drivers/CMSIS/Include/cmsis_armclang.h
cmsis_gcc.h
../Drivers/CMSIS/Include/cmsis_gcc.h
../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
cmsis_iccarm.h
-
cmsis_ccs.h
@ -74,89 +74,89 @@ cmsis_ccs.h
cmsis_csm.h
-
../Drivers/CMSIS/Include/cmsis_gcc.h
../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../Drivers/CMSIS/Include/cmsis_iccarm.h
../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
iccarm_builtin.h
../Drivers/CMSIS/Include/iccarm_builtin.h
../Src/../Drivers/CMSIS/Include/iccarm_builtin.h
intrinsics.h
-
../Drivers/CMSIS/Include/cmsis_version.h
../Src/../Drivers/CMSIS/Include/cmsis_version.h
../Drivers/CMSIS/Include/core_cm0.h
../Src/../Drivers/CMSIS/Include/core_cm0.h
stdint.h
-
cmsis_version.h
../Drivers/CMSIS/Include/cmsis_version.h
../Src/../Drivers/CMSIS/Include/cmsis_version.h
cmsis_compiler.h
../Drivers/CMSIS/Include/cmsis_compiler.h
../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
stm32f0xx.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Inc/main.h
../Src/../Inc/main.h
stm32f0xx_ll_crs.h
../Inc/stm32f0xx_ll_crs.h
../Src/../Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
../Inc/stm32f0xx_ll_rcc.h
../Src/../Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h
../Inc/stm32f0xx_ll_bus.h
../Src/../Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h
../Inc/stm32f0xx_ll_system.h
../Src/../Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h
../Inc/stm32f0xx_ll_exti.h
../Src/../Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h
../Inc/stm32f0xx_ll_cortex.h
../Src/../Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h
../Inc/stm32f0xx_ll_utils.h
../Src/../Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h
../Inc/stm32f0xx_ll_pwr.h
../Src/../Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h
../Inc/stm32f0xx_ll_dma.h
../Src/../Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h
../Inc/stm32f0xx_ll_gpio.h
../Src/../Inc/stm32f0xx_ll_gpio.h
stm32_assert.h
../Inc/stm32_assert.h
../Src/../Inc/stm32_assert.h
../Inc/stm32_assert.h
../Src/../Inc/stm32_assert.h
/home/key/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.cpp
transfer.h

@ -27,15 +27,19 @@ set(CMAKE_TARGET_DEFINITIONS_CXX
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../cppSrc"
"../Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
"../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/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)

@ -2,27 +2,27 @@
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.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/../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/cmakeLowLayer/cppSrc/transfer.cpp
/home/key/github/KED/bsl/cmakeLowLayer/cppSrc/transfer.h

@ -1,28 +1,28 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_armcc.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_armclang.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_compiler.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_gcc.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_iccarm.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/cmsis_version.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/CMSIS/Include/core_cm0.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Inc/main.h
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../Inc/stm32_assert.h
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

@ -6,5 +6,5 @@ CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=
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/cmakeLowLayer/cppSrc -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
CXX_INCLUDES = -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../cppSrc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc

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

@ -158,9 +158,9 @@ stm32_assert.h
../Inc/stm32_assert.h
../cppSrc/transfer.h
../Src/../cppSrc/transfer.h
main.h
../cppSrc/main.h
../Src/../cppSrc/main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c
main.h

@ -30,13 +30,18 @@ set(CMAKE_C_TARGET_INCLUDE_PATH
"../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
"../Src/../Inc"
"../Src/../cppSrc"
"../Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Src/../Drivers/CMSIS/Include"
"../cppSrc"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/cmakeLowLayer/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/c_functions.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)

@ -80,9 +80,9 @@ refOvenTest_out_EXTERNAL_OBJECTS =
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/main.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make
refOvenTest.out: startup/libStartup.a
refOvenTest.out: libc_functions.a
refOvenTest.out: Src/libCSources.a
refOvenTest.out: libcpp_functions.a
refOvenTest.out: libc_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/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out"

@ -24,5 +24,5 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../Inc/main.h
../Inc/stm32_assert.h
../cppSrc/transfer.h
../Src/../cppSrc/transfer.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c

@ -23,6 +23,6 @@ CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Drivers/STM32F0xx_HAL_Driver/Inc
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: ../cppSrc/transfer.h
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/../cppSrc/transfer.h
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c

@ -6,5 +6,5 @@ C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=al
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 -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc
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 -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../cppSrc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/cppSrc

@ -1 +1 @@
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/cmakeLowLayer/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 libc_functions.a libcpp_functions.a libc_functions.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/cmakeLowLayer/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

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

@ -1,7 +1,7 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4
CMAKE_PROGRESS_5 = 5
CMAKE_PROGRESS_6 = 6
CMAKE_PROGRESS_1 = 5
CMAKE_PROGRESS_2 = 6
CMAKE_PROGRESS_3 = 7
CMAKE_PROGRESS_4 = 8
CMAKE_PROGRESS_5 = 9
CMAKE_PROGRESS_6 = 10

@ -175,6 +175,19 @@ Startup/fast:
$(MAKE) -f startup/CMakeFiles/Startup.dir/build.make startup/CMakeFiles/Startup.dir/build
.PHONY : Startup/fast
#=============================================================================
# Target rules for targets named CSources
# Build rule for target.
CSources: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 CSources
.PHONY : CSources
# fast build rule for target.
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
@ -296,6 +309,7 @@ help:
@echo "... cpp_functions"
@echo "... Drivers"
@echo "... Startup"
@echo "... CSources"
@echo "... Src/main.o"
@echo "... Src/main.i"
@echo "... Src/main.s"

@ -0,0 +1,16 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Relative path conversion top directories.
set(CMAKE_RELATIVE_PATH_TOP_SOURCE "/home/key/github/KED/bsl/cmakeLowLayer")
set(CMAKE_RELATIVE_PATH_TOP_BINARY "/home/key/github/KED/bsl/cmakeLowLayer/build")
# Force unix paths in dependencies.
set(CMAKE_FORCE_UNIX_PATHS 1)
# The C and CXX include file regular expressions for this directory.
set(CMAKE_C_INCLUDE_REGEX_SCAN "^.*$")
set(CMAKE_C_INCLUDE_REGEX_COMPLAIN "^$")
set(CMAKE_CXX_INCLUDE_REGEX_SCAN ${CMAKE_C_INCLUDE_REGEX_SCAN})
set(CMAKE_CXX_INCLUDE_REGEX_COMPLAIN ${CMAKE_C_INCLUDE_REGEX_COMPLAIN})

@ -0,0 +1,182 @@
#IncludeRegexLine: ^[ ]*[#%][ ]*(include|import)[ ]*[<"]([^">]+)([">])
#IncludeRegexScan: ^.*$
#IncludeRegexComplain: ^$
#IncludeRegexTransform:
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
core_cm0.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/core_cm0.h
system_stm32f0xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
stdint.h
-
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
stm32f030x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x6.h
stm32f030x8.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030x8.h
stm32f031x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f031x6.h
stm32f038xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f038xx.h
stm32f042x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
stm32f048xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f048xx.h
stm32f051x8.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f051x8.h
stm32f058xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f058xx.h
stm32f070x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070x6.h
stm32f070xb.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f070xb.h
stm32f071xb.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f071xb.h
stm32f072xb.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f072xb.h
stm32f078xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f078xx.h
stm32f091xc.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f091xc.h
stm32f098xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f098xx.h
stm32f030xc.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f030xc.h
stm32f0xx_hal.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx_hal.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
arm_compat.h
-
../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
stdint.h
-
cmsis_armcc.h
../Src/../Drivers/CMSIS/Include/cmsis_armcc.h
cmsis_armclang.h
../Src/../Drivers/CMSIS/Include/cmsis_armclang.h
cmsis_gcc.h
../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
cmsis_iccarm.h
-
cmsis_ccs.h
-
cmsis_csm.h
-
../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
iccarm_builtin.h
../Src/../Drivers/CMSIS/Include/iccarm_builtin.h
intrinsics.h
-
../Src/../Drivers/CMSIS/Include/cmsis_version.h
../Src/../Drivers/CMSIS/Include/core_cm0.h
stdint.h
-
cmsis_version.h
../Src/../Drivers/CMSIS/Include/cmsis_version.h
cmsis_compiler.h
../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Inc/main.h
stm32f0xx_ll_crs.h
../Src/../Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
../Src/../Inc/stm32f0xx_ll_rcc.h
stm32f0xx_ll_bus.h
../Src/../Inc/stm32f0xx_ll_bus.h
stm32f0xx_ll_system.h
../Src/../Inc/stm32f0xx_ll_system.h
stm32f0xx_ll_exti.h
../Src/../Inc/stm32f0xx_ll_exti.h
stm32f0xx_ll_cortex.h
../Src/../Inc/stm32f0xx_ll_cortex.h
stm32f0xx_ll_utils.h
../Src/../Inc/stm32f0xx_ll_utils.h
stm32f0xx_ll_pwr.h
../Src/../Inc/stm32f0xx_ll_pwr.h
stm32f0xx_ll_dma.h
../Src/../Inc/stm32f0xx_ll_dma.h
stm32f0xx_ll_gpio.h
../Src/../Inc/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
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.c
main.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.h
transfer.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/transfer.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

@ -0,0 +1,47 @@
# 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/main.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/main.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o"
"/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/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
"../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/cmakeLowLayer/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -0,0 +1,129 @@
# 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 Src/CMakeFiles/CSources.dir/depend.make
# Include the progress variables for this target.
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/cmakeLowLayer/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Src/CMakeFiles/CSources.dir/main.c.o"
cd /home/key/github/KED/bsl/cmakeLowLayer/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/cmakeLowLayer/Src/main.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/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c > CMakeFiles/CSources.dir/main.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/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/cmakeLowLayer/Src/main.c -o CMakeFiles/CSources.dir/main.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
@$(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 Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/stm32f0xx_it.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/stm32f0xx_it.c.i"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c > CMakeFiles/CSources.dir/stm32f0xx_it.c.i
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/stm32f0xx_it.c.s"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /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/CSources.dir/stm32f0xx_it.c.s
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/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_3) "Building C object Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/system_stm32f0xx.c.o -c /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/system_stm32f0xx.c.i"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c > CMakeFiles/CSources.dir/system_stm32f0xx.c.i
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/system_stm32f0xx.c.s"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && /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/CSources.dir/system_stm32f0xx.c.s
# Object files for target CSources
CSources_OBJECTS = \
"CMakeFiles/CSources.dir/main.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_it.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/build.make
Src/libCSources.a: Src/CMakeFiles/CSources.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_4) "Linking C static library libCSources.a"
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean_target.cmake
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && $(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/CSources.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
Src/CMakeFiles/CSources.dir/build: Src/libCSources.a
.PHONY : Src/CMakeFiles/CSources.dir/build
Src/CMakeFiles/CSources.dir/clean:
cd /home/key/github/KED/bsl/cmakeLowLayer/build/Src && $(CMAKE_COMMAND) -P CMakeFiles/CSources.dir/cmake_clean.cmake
.PHONY : Src/CMakeFiles/CSources.dir/clean
Src/CMakeFiles/CSources.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/Src /home/key/github/KED/bsl/cmakeLowLayer/build /home/key/github/KED/bsl/cmakeLowLayer/build/Src /home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : Src/CMakeFiles/CSources.dir/depend

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

@ -0,0 +1,65 @@
# 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/../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
../Src/../cppSrc/transfer.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/main.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
../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
../Src/../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/cmakeLowLayer/Src/stm32f0xx_it.c
Src/CMakeFiles/CSources.dir/system_stm32f0xx.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
../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
/home/key/github/KED/bsl/cmakeLowLayer/Src/system_stm32f0xx.c

@ -0,0 +1,65 @@
# 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_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
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
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_it.h
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armcc.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_armclang.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/cmsis_version.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/../Drivers/CMSIS/Include/core_cm0.h
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o: ../Src/system_stm32f0xx.c

@ -0,0 +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
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/Src/../Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../cppSrc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/cmakeLowLayer/Drivers/STM32F0xx_HAL_Driver/Inc

@ -0,0 +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-ranlib libCSources.a

@ -0,0 +1,5 @@
CMAKE_PROGRESS_1 = 1
CMAKE_PROGRESS_2 = 2
CMAKE_PROGRESS_3 = 3
CMAKE_PROGRESS_4 = 4

@ -0,0 +1,240 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Default target executed when no arguments are given to make.
default_target: all
.PHONY : default_target
# Allow only one "make -f Makefile2" at a time, but pass parallelism.
.NOTPARALLEL:
#=============================================================================
# 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
#=============================================================================
# Targets provided globally by CMake.
# Special rule for the target rebuild_cache
rebuild_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "Running CMake to regenerate build system..."
/usr/bin/cmake -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR)
.PHONY : rebuild_cache
# Special rule for the target rebuild_cache
rebuild_cache/fast: rebuild_cache
.PHONY : rebuild_cache/fast
# Special rule for the target edit_cache
edit_cache:
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --cyan "No interactive CMake dialog available..."
/usr/bin/cmake -E echo No\ interactive\ CMake\ dialog\ available.
.PHONY : edit_cache
# Special rule for the target edit_cache
edit_cache/fast: edit_cache
.PHONY : edit_cache/fast
# The main all target
all: cmake_check_build_system
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles /home/key/github/KED/bsl/cmakeLowLayer/build/Src/CMakeFiles/progress.marks
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/cmakeLowLayer/build/CMakeFiles 0
.PHONY : all
# The main clean target
clean:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/clean
.PHONY : clean
# The main clean target
clean/fast: clean
.PHONY : clean/fast
# Prepare targets for installation.
preinstall: all
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/preinstall
.PHONY : preinstall
# Prepare targets for installation.
preinstall/fast:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/preinstall
.PHONY : preinstall/fast
# clear depends
depend:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
# Convenience name for target.
Src/CMakeFiles/CSources.dir/rule:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f CMakeFiles/Makefile2 Src/CMakeFiles/CSources.dir/rule
.PHONY : Src/CMakeFiles/CSources.dir/rule
# Convenience name for target.
CSources: Src/CMakeFiles/CSources.dir/rule
.PHONY : CSources
# fast build rule for target.
CSources/fast:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build
.PHONY : CSources/fast
main.o: main.c.o
.PHONY : main.o
# target to build an object file
main.c.o:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.o
.PHONY : main.c.o
main.i: main.c.i
.PHONY : main.i
# target to preprocess a source file
main.c.i:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.i
.PHONY : main.c.i
main.s: main.c.s
.PHONY : main.s
# target to generate assembly for a file
main.c.s:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.s
.PHONY : main.c.s
stm32f0xx_it.o: stm32f0xx_it.c.o
.PHONY : stm32f0xx_it.o
# target to build an object file
stm32f0xx_it.c.o:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
.PHONY : stm32f0xx_it.c.o
stm32f0xx_it.i: stm32f0xx_it.c.i
.PHONY : stm32f0xx_it.i
# target to preprocess a source file
stm32f0xx_it.c.i:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.i
.PHONY : stm32f0xx_it.c.i
stm32f0xx_it.s: stm32f0xx_it.c.s
.PHONY : stm32f0xx_it.s
# target to generate assembly for a file
stm32f0xx_it.c.s:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.s
.PHONY : stm32f0xx_it.c.s
system_stm32f0xx.o: system_stm32f0xx.c.o
.PHONY : system_stm32f0xx.o
# target to build an object file
system_stm32f0xx.c.o:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o
.PHONY : system_stm32f0xx.c.o
system_stm32f0xx.i: system_stm32f0xx.c.i
.PHONY : system_stm32f0xx.i
# target to preprocess a source file
system_stm32f0xx.c.i:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.i
.PHONY : system_stm32f0xx.c.i
system_stm32f0xx.s: system_stm32f0xx.c.s
.PHONY : system_stm32f0xx.s
# target to generate assembly for a file
system_stm32f0xx.c.s:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s
.PHONY : system_stm32f0xx.c.s
# Help Target
help:
@echo "The following are some of the valid targets for this Makefile:"
@echo "... all (the default if no target is provided)"
@echo "... clean"
@echo "... depend"
@echo "... rebuild_cache"
@echo "... CSources"
@echo "... edit_cache"
@echo "... main.o"
@echo "... main.i"
@echo "... main.s"
@echo "... stm32f0xx_it.o"
@echo "... stm32f0xx_it.i"
@echo "... stm32f0xx_it.s"
@echo "... system_stm32f0xx.o"
@echo "... system_stm32f0xx.i"
@echo "... system_stm32f0xx.s"
.PHONY : help
#=============================================================================
# Special targets to cleanup operation of make.
# Special rule to run CMake to check the build system integrity.
# No rule that depends on this can have commands that come from listfiles
# because they might be regenerated.
cmake_check_build_system:
cd /home/key/github/KED/bsl/cmakeLowLayer/build && $(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 0
.PHONY : cmake_check_build_system

@ -0,0 +1,39 @@
# Install script for directory: /home/key/github/KED/bsl/cmakeLowLayer/Src
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "/usr/local")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Install shared libraries without execute permission?
if(NOT DEFINED CMAKE_INSTALL_SO_NO_EXE)
set(CMAKE_INSTALL_SO_NO_EXE "1")
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()

@ -41,6 +41,7 @@ if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for each subdirectory.
include("/home/key/github/KED/bsl/cmakeLowLayer/build/Drivers/cmake_install.cmake")
include("/home/key/github/KED/bsl/cmakeLowLayer/build/startup/cmake_install.cmake")
include("/home/key/github/KED/bsl/cmakeLowLayer/build/Src/cmake_install.cmake")
endif()

@ -1,3 +1,3 @@
CMAKE_PROGRESS_1 = 7
CMAKE_PROGRESS_2 = 8
CMAKE_PROGRESS_1 = 11
CMAKE_PROGRESS_2 = 12

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

Loading…
Cancel
Save