New structure implmented with new main called from cppSrc/trasnfer.cpp now need to merge everything one level up

interrupts
atomega 4 years ago
parent e36f800d3c
commit ca7c065df7

@ -21,6 +21,7 @@ set(CMAKE_SYSTEM_NAME Generic)
set(CMAKE_SYSTEM_PROCESSOR arm)
set(CMAKE_CROSSCOMPILING TRUE)
set(CMAKE_VERBOSE_MAKEFILE off)#Shoul make print everythign ??
####################################################################################################
#VARIABLES : defined by user
####################################################################################################
@ -82,35 +83,18 @@ add_subdirectory(Drivers)
add_subdirectory(startup)
add_subdirectory(Src)
####################################################################################################
#LIBRARIES
####################################################################################################
add_library(${CPP_FUNC} ${CPP_SOURCES})
target_compile_options(${CPP_FUNC} PRIVATE ${CPP_FLAGS})
target_compile_definitions(${CPP_FUNC} PRIVATE ${CPP_DEFS})
target_include_directories(${CPP_FUNC} PUBLIC ${CPP_INCLUDES})
#Please note that this configuration can define in which order the libraries will be compiled an linked
#with eachother.
####################################################################################################
#LINKING LIBRARIES
####################################################################################################
target_link_libraries(${CPP_FUNC} sub::cSources)
####################################################################################################
#EXECUTABLE
####################################################################################################
add_executable(${EXECUTABLE} Src/main.c)
target_compile_options(${EXECUTABLE} PRIVATE ${C_FLAGS})
target_compile_definitions(${EXECUTABLE} PRIVATE ${C_DEFS})
target_include_directories(${EXECUTABLE} PUBLIC ${C_INCLUDES})
add_executable(${EXECUTABLE} cppSrc/transfer.cpp)
target_compile_options(${EXECUTABLE} PRIVATE ${CPP_FLAGS})
target_compile_definitions(${EXECUTABLE} PRIVATE ${CPP_DEFS})
target_include_directories(${EXECUTABLE} PUBLIC ${CPP_INCLUDES})
####################################################################################################
#LINKING EXECUTEABLE
####################################################################################################
target_link_libraries(${EXECUTABLE} sub::startup sub::cSources ${CPP_FUNC})#${C_FUNC} ${CPP_FUNC})
target_link_libraries(${EXECUTABLE} sub::startup sub::cSources)#${C_FUNC} ${CPP_FUNC})
target_link_options(${EXECUTABLE} PRIVATE
${CPU_MCU}
-mthumb

@ -45,7 +45,7 @@ extern "C" {
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
int stmStart();
/* USER CODE END Includes */
/* Exported types ------------------------------------------------------------*/

@ -8,7 +8,7 @@ set (C_INCLUDES
../Drivers/CMSIS/Include)
set(C_SOURCES
main.c
stm32f0xx_csl.c
stm32f0xx_it.c
system_stm32f0xx.c)

@ -18,7 +18,7 @@
*/
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "stm32f0xx_csl.h"
#include "transfer.h"
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */
@ -53,18 +53,16 @@ static void MX_GPIO_Init(void);
/* USER CODE END PFP */
/* Private user code ---------------------------------------------------------*/
/* USER CODE BEGIN 0 */
int cHook()
{
return 1;
}
/* USER CODE END 0 */
/**
* @brief The application entry point.
* @retval int
*/
int main(void)
int stmStart()
{
/* USER CODE BEGIN 1 */
@ -95,7 +93,6 @@ int main(void)
/* USER CODE BEGIN 2 */
/* USER CODE END 2 */
cHook();
cppHook();
/* Infinite loop */
/* USER CODE BEGIN WHILE */

@ -19,7 +19,7 @@
/* USER CODE END Header */
/* Includes ------------------------------------------------------------------*/
#include "main.h"
#include "stm32f0xx_csl.h"
#include "stm32f0xx_it.h"
/* Private includes ----------------------------------------------------------*/
/* USER CODE BEGIN Includes */

@ -235,9 +235,6 @@ Startup_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build/startup
//Value Computed by CMake
Startup_SOURCE_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/startup
//Dependencies for the target
cpp_functions_LIB_DEPENDS:STATIC=general;sub::cSources;
//Value Computed by CMake
refOvenTest_BINARY_DIR:STATIC=/home/key/github/KED/bsl/csl/stm32f042/build

@ -34,28 +34,28 @@ The CXX compiler identification is GNU, found in "/home/key/github/KED/bsl/csl/s
Determining if the C compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c47b0/fast"
/usr/bin/make -f CMakeFiles/cmTC_c47b0.dir/build.make CMakeFiles/cmTC_c47b0.dir/build
Run Build Command:"/usr/bin/make" "cmTC_e18b8/fast"
/usr/bin/make -f CMakeFiles/cmTC_e18b8.dir/build.make CMakeFiles/cmTC_e18b8.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_c47b0.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_c47b0.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_c47b0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c47b0.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_c47b0.dir/testCCompiler.c.o -o cmTC_c47b0
Building C object CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCCompiler.c
Linking C executable cmTC_e18b8
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e18b8.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_e18b8.dir/testCCompiler.c.o -o cmTC_e18b8
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Detecting C compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e143b/fast"
/usr/bin/make -f CMakeFiles/cmTC_e143b.dir/build.make CMakeFiles/cmTC_e143b.dir/build
Run Build Command:"/usr/bin/make" "cmTC_5dc60/fast"
/usr/bin/make -f CMakeFiles/cmTC_5dc60.dir/build.make CMakeFiles/cmTC_5dc60.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_e143b
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e143b.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -o cmTC_e143b
Building C object CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o
/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c
Linking C executable cmTC_5dc60
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dc60.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -o cmTC_5dc60
Using built-in specs.
Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
@ -67,9 +67,9 @@ Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6)
COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e143b'
/usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKozBWK.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e143b /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e143b'
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60'
/usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGQgJ1i.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_5dc60 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60'
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -77,14 +77,14 @@ Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_e143b/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_e143b.dir/build.make CMakeFiles/cmTC_e143b.dir/build]
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_5dc60/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_5dc60.dir/build.make CMakeFiles/cmTC_5dc60.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp']
ignore line: [Building C object CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_e143b]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e143b.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o -o cmTC_e143b ]
ignore line: [Building C object CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o]
ignore line: [/usr/bin/arm-none-eabi-gcc -o CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -c /usr/share/cmake-3.13/Modules/CMakeCCompilerABI.c]
ignore line: [Linking C executable cmTC_5dc60]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_5dc60.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-gcc --specs=nosys.specs -v CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o -o cmTC_5dc60 ]
ignore line: [Using built-in specs.]
ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
@ -96,13 +96,13 @@ Parsed C implicit link information from above output:
ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_e143b']
link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccKozBWK.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_e143b /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_5dc60']
link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccGQgJ1i.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_5dc60 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccKozBWK.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccGQgJ1i.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
@ -110,13 +110,13 @@ Parsed C implicit link information from above output:
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-X] ==> ignore
arg [-o] ==> ignore
arg [cmTC_e143b] ==> ignore
arg [cmTC_5dc60] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1]
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_e143b.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [CMakeFiles/cmTC_5dc60.dir/CMakeCCompilerABI.c.o] ==> ignore
arg [--start-group] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
@ -140,14 +140,14 @@ Parsed C implicit link information from above output:
Detecting C [-std=c11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_9784c/fast"
/usr/bin/make -f CMakeFiles/cmTC_9784c.dir/build.make CMakeFiles/cmTC_9784c.dir/build
Run Build Command:"/usr/bin/make" "cmTC_8aec9/fast"
/usr/bin/make -f CMakeFiles/cmTC_8aec9.dir/build.make CMakeFiles/cmTC_8aec9.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_9784c.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_9784c.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_9784c
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_9784c.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_9784c.dir/feature_tests.c.o -o cmTC_9784c
Building C object CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c11 -o CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_8aec9
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_8aec9.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_8aec9.dir/feature_tests.c.o -o cmTC_8aec9
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -160,14 +160,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting C [-std=c99] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_dc52e/fast"
/usr/bin/make -f CMakeFiles/cmTC_dc52e.dir/build.make CMakeFiles/cmTC_dc52e.dir/build
Run Build Command:"/usr/bin/make" "cmTC_f0416/fast"
/usr/bin/make -f CMakeFiles/cmTC_f0416.dir/build.make CMakeFiles/cmTC_f0416.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_dc52e.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_dc52e.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_dc52e
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dc52e.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_dc52e.dir/feature_tests.c.o -o cmTC_dc52e
Building C object CMakeFiles/cmTC_f0416.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c99 -o CMakeFiles/cmTC_f0416.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_f0416
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_f0416.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_f0416.dir/feature_tests.c.o -o cmTC_f0416
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -180,14 +180,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting C [-std=c90] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_300d7/fast"
/usr/bin/make -f CMakeFiles/cmTC_300d7.dir/build.make CMakeFiles/cmTC_300d7.dir/build
Run Build Command:"/usr/bin/make" "cmTC_a0c0f/fast"
/usr/bin/make -f CMakeFiles/cmTC_a0c0f.dir/build.make CMakeFiles/cmTC_a0c0f.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building C object CMakeFiles/cmTC_300d7.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_300d7.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_300d7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_300d7.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_300d7.dir/feature_tests.c.o -o cmTC_300d7
Building C object CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o
/usr/bin/arm-none-eabi-gcc -std=c90 -o CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.c
Linking C executable cmTC_a0c0f
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_a0c0f.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-gcc --specs=nosys.specs CMakeFiles/cmTC_a0c0f.dir/feature_tests.c.o -o cmTC_a0c0f
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -198,28 +198,28 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Determining if the CXX compiler works passed with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_14370/fast"
/usr/bin/make -f CMakeFiles/cmTC_14370.dir/build.make CMakeFiles/cmTC_14370.dir/build
Run Build Command:"/usr/bin/make" "cmTC_b7a22/fast"
/usr/bin/make -f CMakeFiles/cmTC_b7a22.dir/build.make CMakeFiles/cmTC_b7a22.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_14370.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_14370.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_14370
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_14370.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_14370.dir/testCXXCompiler.cxx.o -o cmTC_14370
Building CXX object CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp/testCXXCompiler.cxx
Linking CXX executable cmTC_b7a22
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_b7a22.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_b7a22.dir/testCXXCompiler.cxx.o -o cmTC_b7a22
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_c83a4/fast"
/usr/bin/make -f CMakeFiles/cmTC_c83a4.dir/build.make CMakeFiles/cmTC_c83a4.dir/build
Run Build Command:"/usr/bin/make" "cmTC_c85b7/fast"
/usr/bin/make -f CMakeFiles/cmTC_c85b7.dir/build.make CMakeFiles/cmTC_c85b7.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_c83a4
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c83a4.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c83a4
Building CXX object CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o
/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp
Linking CXX executable cmTC_c85b7
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c85b7.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c85b7
Using built-in specs.
Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs
rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence
@ -231,9 +231,9 @@ Thread model: single
gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6)
COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/
LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c83a4'
/usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCvaBvi.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c83a4 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c83a4'
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7'
/usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6lRxDQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c85b7 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o
COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7'
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -241,14 +241,14 @@ Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(arm-none-eabi-ld|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_c83a4/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c83a4.dir/build.make CMakeFiles/cmTC_c83a4.dir/build]
ignore line: [Run Build Command:"/usr/bin/make" "cmTC_c85b7/fast"]
ignore line: [/usr/bin/make -f CMakeFiles/cmTC_c85b7.dir/build.make CMakeFiles/cmTC_c85b7.dir/build]
ignore line: [make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp']
ignore line: [Building CXX object CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_c83a4]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c83a4.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c83a4 ]
ignore line: [Building CXX object CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o]
ignore line: [/usr/bin/arm-none-eabi-g++ -o CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -c /usr/share/cmake-3.13/Modules/CMakeCXXCompilerABI.cpp]
ignore line: [Linking CXX executable cmTC_c85b7]
ignore line: [/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_c85b7.dir/link.txt --verbose=1]
ignore line: [/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -v CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -o cmTC_c85b7 ]
ignore line: [Using built-in specs.]
ignore line: [Reading specs from /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/nosys.specs]
ignore line: [rename spec link_gcc_c_sequence to nosys_link_gcc_c_sequence]
@ -260,13 +260,13 @@ Parsed CXX implicit link information from above output:
ignore line: [gcc version 7.3.1 20180622 (release) [ARM/embedded-7-branch revision 261907] (15:7-2018-q2-6) ]
ignore line: [COMPILER_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/bin/]
ignore line: [LIBRARY_PATH=/usr/lib/gcc/arm-none-eabi/7.3.1/:/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c83a4']
link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/ccCvaBvi.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c83a4 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o]
ignore line: [COLLECT_GCC_OPTIONS='-specs=nosys.specs' '-v' '-o' 'cmTC_c85b7']
link line: [ /usr/lib/gcc/arm-none-eabi/7.3.1/collect2 -plugin /usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so -plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper -plugin-opt=-fresolution=/tmp/cc6lRxDQ.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -X -o cmTC_c85b7 /usr/lib/gcc/arm-none-eabi/7.3.1/crti.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o /usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o -L/usr/lib/gcc/arm-none-eabi/7.3.1 -L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o -lstdc++ -lm --start-group -lgcc -lc --end-group --start-group -lgcc -lc -lnosys --end-group /usr/lib/gcc/arm-none-eabi/7.3.1/crtend.o /usr/lib/gcc/arm-none-eabi/7.3.1/crtn.o]
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/collect2] ==> ignore
arg [-plugin] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/liblto_plugin.so] ==> ignore
arg [-plugin-opt=/usr/lib/gcc/arm-none-eabi/7.3.1/lto-wrapper] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/ccCvaBvi.res] ==> ignore
arg [-plugin-opt=-fresolution=/tmp/cc6lRxDQ.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
@ -274,13 +274,13 @@ Parsed CXX implicit link information from above output:
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-X] ==> ignore
arg [-o] ==> ignore
arg [cmTC_c83a4] ==> ignore
arg [cmTC_c85b7] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crti.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/crtbegin.o] ==> ignore
arg [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib/crt0.o] ==> ignore
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1]
arg [-L/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib] ==> dir [/usr/lib/gcc/arm-none-eabi/7.3.1/../../../arm-none-eabi/lib]
arg [CMakeFiles/cmTC_c83a4.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [CMakeFiles/cmTC_c85b7.dir/CMakeCXXCompilerABI.cpp.o] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [--start-group] ==> ignore
@ -306,14 +306,14 @@ Parsed CXX implicit link information from above output:
Detecting CXX [-std=c++1z] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_7e114/fast"
/usr/bin/make -f CMakeFiles/cmTC_7e114.dir/build.make CMakeFiles/cmTC_7e114.dir/build
Run Build Command:"/usr/bin/make" "cmTC_d6131/fast"
/usr/bin/make -f CMakeFiles/cmTC_d6131.dir/build.make CMakeFiles/cmTC_d6131.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_7e114.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_7e114.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_7e114
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7e114.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_7e114.dir/feature_tests.cxx.o -o cmTC_7e114
Building CXX object CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++1z -o CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_d6131
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_d6131.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_d6131.dir/feature_tests.cxx.o -o cmTC_d6131
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -379,14 +379,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting CXX [-std=c++14] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_dc5f0/fast"
/usr/bin/make -f CMakeFiles/cmTC_dc5f0.dir/build.make CMakeFiles/cmTC_dc5f0.dir/build
Run Build Command:"/usr/bin/make" "cmTC_30022/fast"
/usr/bin/make -f CMakeFiles/cmTC_30022.dir/build.make CMakeFiles/cmTC_30022.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_dc5f0.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_dc5f0.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_dc5f0
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_dc5f0.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_dc5f0.dir/feature_tests.cxx.o -o cmTC_dc5f0
Building CXX object CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++14 -o CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_30022
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_30022.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_30022.dir/feature_tests.cxx.o -o cmTC_30022
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -452,14 +452,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting CXX [-std=c++11] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_e8f8d/fast"
/usr/bin/make -f CMakeFiles/cmTC_e8f8d.dir/build.make CMakeFiles/cmTC_e8f8d.dir/build
Run Build Command:"/usr/bin/make" "cmTC_7b64d/fast"
/usr/bin/make -f CMakeFiles/cmTC_7b64d.dir/build.make CMakeFiles/cmTC_7b64d.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_e8f8d.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_e8f8d.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_e8f8d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_e8f8d.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_e8f8d.dir/feature_tests.cxx.o -o cmTC_e8f8d
Building CXX object CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++11 -o CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_7b64d
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_7b64d.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_7b64d.dir/feature_tests.cxx.o -o cmTC_7b64d
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
@ -525,14 +525,14 @@ make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFi
Detecting CXX [-std=c++98] compiler features compiled with the following output:
Change Dir: /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp
Run Build Command:"/usr/bin/make" "cmTC_20504/fast"
/usr/bin/make -f CMakeFiles/cmTC_20504.dir/build.make CMakeFiles/cmTC_20504.dir/build
Run Build Command:"/usr/bin/make" "cmTC_54b40/fast"
/usr/bin/make -f CMakeFiles/cmTC_54b40.dir/build.make CMakeFiles/cmTC_54b40.dir/build
make[1]: Entering directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'
Building CXX object CMakeFiles/cmTC_20504.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_20504.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_20504
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_20504.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_20504.dir/feature_tests.cxx.o -o cmTC_20504
Building CXX object CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o
/usr/bin/arm-none-eabi-g++ -std=c++98 -o CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o -c /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/feature_tests.cxx
Linking CXX executable cmTC_54b40
/usr/bin/cmake -E cmake_link_script CMakeFiles/cmTC_54b40.dir/link.txt --verbose=1
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs CMakeFiles/cmTC_54b40.dir/feature_tests.cxx.o -o cmTC_54b40
make[1]: Leaving directory '/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/CMakeTmp'

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

@ -64,55 +64,16 @@ CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/csl/stm32f042
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/csl/stm32f042/build
#=============================================================================
# Target rules for target CMakeFiles/cpp_functions.dir
# All Build rule for target.
CMakeFiles/cpp_functions.dir/all: Drivers/CMakeFiles/Drivers.dir/all
CMakeFiles/cpp_functions.dir/all: Src/CMakeFiles/CSources.dir/all
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/depend
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=13,14 "Built target cpp_functions"
.PHONY : CMakeFiles/cpp_functions.dir/all
# Include target in all.
all: CMakeFiles/cpp_functions.dir/all
.PHONY : all
# Build rule for subdir invocation for target.
CMakeFiles/cpp_functions.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 12
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/cpp_functions.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0
.PHONY : CMakeFiles/cpp_functions.dir/rule
# Convenience name for target.
cpp_functions: CMakeFiles/cpp_functions.dir/rule
.PHONY : cpp_functions
# clean rule for target.
CMakeFiles/cpp_functions.dir/clean:
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/clean
.PHONY : CMakeFiles/cpp_functions.dir/clean
# clean rule for target.
clean: CMakeFiles/cpp_functions.dir/clean
.PHONY : clean
#=============================================================================
# Target rules for target CMakeFiles/refOvenTest.out.dir
# All Build rule for target.
CMakeFiles/refOvenTest.out.dir/all: CMakeFiles/cpp_functions.dir/all
CMakeFiles/refOvenTest.out.dir/all: Drivers/CMakeFiles/Drivers.dir/all
CMakeFiles/refOvenTest.out.dir/all: startup/CMakeFiles/Startup.dir/all
CMakeFiles/refOvenTest.out.dir/all: Src/CMakeFiles/CSources.dir/all
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/depend
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/build
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=15,16 "Built target refOvenTest.out"
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=13,14 "Built target refOvenTest.out"
.PHONY : CMakeFiles/refOvenTest.out.dir/all
# Include target in all.
@ -122,7 +83,7 @@ all: CMakeFiles/refOvenTest.out.dir/all
# Build rule for subdir invocation for target.
CMakeFiles/refOvenTest.out.dir/rule: cmake_check_build_system
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 16
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 14
$(MAKE) -f CMakeFiles/Makefile2 CMakeFiles/refOvenTest.out.dir/all
$(CMAKE_COMMAND) -E cmake_progress_start /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles 0
.PHONY : CMakeFiles/refOvenTest.out.dir/rule

@ -1,7 +1,6 @@
/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir
/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir
/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/edit_cache.dir
/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/rebuild_cache.dir
/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir
/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/edit_cache.dir

@ -1,47 +0,0 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_CXX
"/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o"
)
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_CXX
"DATA_CACHE_ENABLE=0"
"HSE_STARTUP_TIMEOUT=100"
"HSE_VALUE=8000000"
"HSI_VALUE=8000000"
"INSTRUCTION_CACHE_ENABLE=0"
"LSE_STARTUP_TIMEOUT=5000"
"LSE_VALUE=32768"
"LSI_VALUE=40000"
"PREFETCH_ENABLE=1"
"STM32F042x6"
"USE_FULL_LL_DRIVER"
"VDD_VALUE=3300"
)
# The include file search paths:
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../cppSrc"
"../Src/../Inc"
"../Src/../cppSrc"
"../Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Src/../Drivers/CMSIS/Include"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)
# Fortran module output directory.
set(CMAKE_Fortran_TARGET_MODULE_DIR "")

@ -1,99 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# Delete rule output on recipe failure.
.DELETE_ON_ERROR:
#=============================================================================
# Special targets provided by cmake.
# Disable implicit rules so canonical targets will work.
.SUFFIXES:
# Remove some rules from gmake that .SUFFIXES does not remove.
SUFFIXES =
.SUFFIXES: .hpux_make_needs_suffix_list
# Suppress display of executed commands.
$(VERBOSE).SILENT:
# A target that is always out of date.
cmake_force:
.PHONY : cmake_force
#=============================================================================
# Set environment variables for the build.
# The shell in which to execute make rules.
SHELL = /bin/sh
# The CMake executable.
CMAKE_COMMAND = /usr/bin/cmake
# The command to remove a file.
RM = /usr/bin/cmake -E remove -f
# Escaping for special characters.
EQUALS = =
# The top-level source directory on which CMake was run.
CMAKE_SOURCE_DIR = /home/key/github/KED/bsl/csl/stm32f042
# The top-level build directory on which CMake was run.
CMAKE_BINARY_DIR = /home/key/github/KED/bsl/csl/stm32f042/build
# Include any dependencies generated for this target.
include CMakeFiles/cpp_functions.dir/depend.make
# Include the progress variables for this target.
include CMakeFiles/cpp_functions.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/cpp_functions.dir/flags.make
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: CMakeFiles/cpp_functions.dir/flags.make
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o -c /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp > CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i
CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp -o CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s
# Object files for target cpp_functions
cpp_functions_OBJECTS = \
"CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o"
# External object files for target cpp_functions
cpp_functions_EXTERNAL_OBJECTS =
libcpp_functions.a: CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o
libcpp_functions.a: CMakeFiles/cpp_functions.dir/build.make
libcpp_functions.a: CMakeFiles/cpp_functions.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX static library libcpp_functions.a"
$(CMAKE_COMMAND) -P CMakeFiles/cpp_functions.dir/cmake_clean_target.cmake
$(CMAKE_COMMAND) -E cmake_link_script CMakeFiles/cpp_functions.dir/link.txt --verbose=$(VERBOSE)
# Rule to build all files generated by this target.
CMakeFiles/cpp_functions.dir/build: libcpp_functions.a
.PHONY : CMakeFiles/cpp_functions.dir/build
CMakeFiles/cpp_functions.dir/clean:
$(CMAKE_COMMAND) -P CMakeFiles/cpp_functions.dir/cmake_clean.cmake
.PHONY : CMakeFiles/cpp_functions.dir/clean
CMakeFiles/cpp_functions.dir/depend:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(CMAKE_COMMAND) -E cmake_depends "Unix Makefiles" /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042 /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build /home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake --color=$(COLOR)
.PHONY : CMakeFiles/cpp_functions.dir/depend

@ -1,10 +0,0 @@
file(REMOVE_RECURSE
"CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o"
"libcpp_functions.pdb"
"libcpp_functions.a"
)
# Per-language clean rules from dependency scanning.
foreach(lang CXX)
include(CMakeFiles/cpp_functions.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

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

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

@ -1,10 +0,0 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# compile CXX with /usr/bin/arm-none-eabi-g++
CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++1z
CXX_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300
CXX_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc

@ -1,2 +0,0 @@
/usr/bin/arm-none-eabi-ar qc libcpp_functions.a CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o
/usr/bin/arm-none-eabi-ranlib libcpp_functions.a

@ -1,3 +0,0 @@
CMAKE_PROGRESS_1 = 13
CMAKE_PROGRESS_2 = 14

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

@ -132,7 +132,9 @@ stm32f0xx.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Inc/main.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32f0xx_csl.h
stm32f0xx_ll_crs.h
../Src/../Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
@ -156,13 +158,11 @@ stm32f0xx_ll_gpio.h
stm32_assert.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32_assert.h
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp
transfer.h
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h
main.h
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/main.h
stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/stm32f0xx_csl.h

@ -1,15 +1,15 @@
# The set of languages for which implicit dependencies are needed:
set(CMAKE_DEPENDS_LANGUAGES
"C"
"CXX"
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/key/github/KED/bsl/csl/stm32f042/Src/main.c" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
set(CMAKE_DEPENDS_CHECK_CXX
"/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp" "/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o"
)
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_ID "GNU")
# Preprocessor definitions for this target.
set(CMAKE_TARGET_DEFINITIONS_C
set(CMAKE_TARGET_DEFINITIONS_CXX
"DATA_CACHE_ENABLE=0"
"HSE_STARTUP_TIMEOUT=100"
"HSE_VALUE=8000000"
@ -25,24 +25,22 @@ set(CMAKE_TARGET_DEFINITIONS_C
)
# The include file search paths:
set(CMAKE_C_TARGET_INCLUDE_PATH
"../Inc"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
set(CMAKE_CXX_TARGET_INCLUDE_PATH
"../cppSrc"
"../Src/../Inc"
"../Src/../cppSrc"
"../Src/../Drivers/STM32F0xx_HAL_Driver/Inc"
"../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Src/../Drivers/CMSIS/Include"
"../cppSrc"
"../Drivers/CMSIS/Device/ST/STM32F0xx/Include"
"../Drivers/CMSIS/Include"
"../Drivers/STM32F0xx_HAL_Driver/Inc"
)
# Targets to which this target links.
set(CMAKE_TARGET_LINKED_INFO_FILES
"/home/key/github/KED/bsl/csl/stm32f042/build/startup/CMakeFiles/Startup.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles/cpp_functions.dir/DependInfo.cmake"
"/home/key/github/KED/bsl/csl/stm32f042/build/Drivers/CMakeFiles/Drivers.dir/DependInfo.cmake"
)

@ -57,32 +57,30 @@ include CMakeFiles/refOvenTest.out.dir/progress.make
# Include the compile flags for this target's objects.
include CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/Src/main.c.o: ../Src/main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/refOvenTest.out.dir/Src/main.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/main.c
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: CMakeFiles/refOvenTest.out.dir/flags.make
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o: ../cppSrc/transfer.cpp
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building CXX object CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -o CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o -c /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp
CMakeFiles/refOvenTest.out.dir/Src/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/refOvenTest.out.dir/Src/main.c.i"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/main.c > CMakeFiles/refOvenTest.out.dir/Src/main.c.i
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing CXX source to CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp > CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i
CMakeFiles/refOvenTest.out.dir/Src/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/refOvenTest.out.dir/Src/main.c.s"
/usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/main.c -o CMakeFiles/refOvenTest.out.dir/Src/main.c.s
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling CXX source to assembly CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s"
/usr/bin/arm-none-eabi-g++ $(CXX_DEFINES) $(CXX_INCLUDES) $(CXX_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp -o CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s
# Object files for target refOvenTest.out
refOvenTest_out_OBJECTS = \
"CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
"CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o"
# External object files for target refOvenTest.out
refOvenTest_out_EXTERNAL_OBJECTS =
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/Src/main.c.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/build.make
refOvenTest.out: startup/libStartup.a
refOvenTest.out: Src/libCSources.a
refOvenTest.out: libcpp_functions.a
refOvenTest.out: Src/libCSources.a
refOvenTest.out: Drivers/libDrivers.a
refOvenTest.out: CMakeFiles/refOvenTest.out.dir/link.txt
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --bold --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_2) "Linking CXX executable refOvenTest.out"

@ -1,10 +1,10 @@
file(REMOVE_RECURSE
"CMakeFiles/refOvenTest.out.dir/Src/main.c.o"
"CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o"
"refOvenTest.out.pdb"
"refOvenTest.out"
)
# Per-language clean rules from dependency scanning.
foreach(lang C)
foreach(lang CXX)
include(CMakeFiles/refOvenTest.out.dir/cmake_clean_${lang}.cmake OPTIONAL)
endforeach()

@ -1,28 +1,28 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
CMakeFiles/refOvenTest.out.dir/Src/main.c.o
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../Drivers/CMSIS/Include/cmsis_armcc.h
../Drivers/CMSIS/Include/cmsis_armclang.h
../Drivers/CMSIS/Include/cmsis_compiler.h
../Drivers/CMSIS/Include/cmsis_gcc.h
../Drivers/CMSIS/Include/cmsis_iccarm.h
../Drivers/CMSIS/Include/cmsis_version.h
../Drivers/CMSIS/Include/core_cm0.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../Inc/main.h
../Inc/stm32_assert.h
../Src/../cppSrc/transfer.h
/home/key/github/KED/bsl/csl/stm32f042/Src/main.c
CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
../Src/../Drivers/CMSIS/Include/cmsis_armcc.h
../Src/../Drivers/CMSIS/Include/cmsis_armclang.h
../Src/../Drivers/CMSIS/Include/cmsis_compiler.h
../Src/../Drivers/CMSIS/Include/cmsis_gcc.h
../Src/../Drivers/CMSIS/Include/cmsis_iccarm.h
../Src/../Drivers/CMSIS/Include/cmsis_version.h
../Src/../Drivers/CMSIS/Include/core_cm0.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_bus.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_cortex.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_crs.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_dma.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_exti.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_gpio.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_pwr.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.cpp
/home/key/github/KED/bsl/csl/stm32f042/cppSrc/transfer.h

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

@ -1,10 +1,10 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
# compile C with /usr/bin/arm-none-eabi-gcc
C_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections
# compile CXX with /usr/bin/arm-none-eabi-g++
CXX_FLAGS = -mcpu=cortex-m0 -mthumb -Wall -fdata-sections -fdiagnostics-color=always -ffunction-sections -std=gnu++1z
C_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300
CXX_DEFINES = -DDATA_CACHE_ENABLE=0 -DHSE_STARTUP_TIMEOUT=100 -DHSE_VALUE=8000000 -DHSI_VALUE=8000000 -DINSTRUCTION_CACHE_ENABLE=0 -DLSE_STARTUP_TIMEOUT=5000 -DLSE_VALUE=32768 -DLSI_VALUE=40000 -DPREFETCH_ENABLE=1 -DSTM32F042x6 -DUSE_FULL_LL_DRIVER -DVDD_VALUE=3300
C_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/cppSrc
CXX_INCLUDES = -I/home/key/github/KED/bsl/csl/stm32f042/cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../cppSrc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/STM32F0xx_HAL_Driver/Inc -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Src/../Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Device/ST/STM32F0xx/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/CMSIS/Include -I/home/key/github/KED/bsl/csl/stm32f042/Drivers/STM32F0xx_HAL_Driver/Inc

@ -1 +1 @@
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/Src/main.c.o -o refOvenTest.out startup/libStartup.a Src/libCSources.a libcpp_functions.a Src/libCSources.a Drivers/libDrivers.a
/usr/bin/arm-none-eabi-g++ --specs=nosys.specs -mcpu=cortex-m0 -mthumb -specs=nano.specs -T/home/key/github/KED/bsl/csl/stm32f042/startup/STM32F042K6Tx_FLASH.ld -lc -lm -lnosys -Wl,-Map=refOvenTest.map,--cref -Wl,--gc-sections CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o -o refOvenTest.out startup/libStartup.a Src/libCSources.a Drivers/libDrivers.a

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

@ -110,19 +110,6 @@ depend:
$(CMAKE_COMMAND) -S$(CMAKE_SOURCE_DIR) -B$(CMAKE_BINARY_DIR) --check-build-system CMakeFiles/Makefile.cmake 1
.PHONY : depend
#=============================================================================
# Target rules for targets named cpp_functions
# Build rule for target.
cpp_functions: cmake_check_build_system
$(MAKE) -f CMakeFiles/Makefile2 cpp_functions
.PHONY : cpp_functions
# fast build rule for target.
cpp_functions/fast:
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/build
.PHONY : cpp_functions/fast
#=============================================================================
# Target rules for targets named refOvenTest.out
@ -175,40 +162,13 @@ CSources/fast:
$(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build
.PHONY : CSources/fast
Src/main.o: Src/main.c.o
.PHONY : Src/main.o
# target to build an object file
Src/main.c.o:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/main.c.o
.PHONY : Src/main.c.o
Src/main.i: Src/main.c.i
.PHONY : Src/main.i
# target to preprocess a source file
Src/main.c.i:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/main.c.i
.PHONY : Src/main.c.i
Src/main.s: Src/main.c.s
.PHONY : Src/main.s
# target to generate assembly for a file
Src/main.c.s:
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/Src/main.c.s
.PHONY : Src/main.c.s
cppSrc/transfer.o: cppSrc/transfer.cpp.o
.PHONY : cppSrc/transfer.o
# target to build an object file
cppSrc/transfer.cpp.o:
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.o
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.o
.PHONY : cppSrc/transfer.cpp.o
cppSrc/transfer.i: cppSrc/transfer.cpp.i
@ -217,7 +177,7 @@ cppSrc/transfer.i: cppSrc/transfer.cpp.i
# target to preprocess a source file
cppSrc/transfer.cpp.i:
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.i
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.i
.PHONY : cppSrc/transfer.cpp.i
cppSrc/transfer.s: cppSrc/transfer.cpp.s
@ -226,7 +186,7 @@ cppSrc/transfer.s: cppSrc/transfer.cpp.s
# target to generate assembly for a file
cppSrc/transfer.cpp.s:
$(MAKE) -f CMakeFiles/cpp_functions.dir/build.make CMakeFiles/cpp_functions.dir/cppSrc/transfer.cpp.s
$(MAKE) -f CMakeFiles/refOvenTest.out.dir/build.make CMakeFiles/refOvenTest.out.dir/cppSrc/transfer.cpp.s
.PHONY : cppSrc/transfer.cpp.s
# Help Target
@ -236,15 +196,11 @@ help:
@echo "... clean"
@echo "... depend"
@echo "... rebuild_cache"
@echo "... edit_cache"
@echo "... cpp_functions"
@echo "... refOvenTest.out"
@echo "... edit_cache"
@echo "... Drivers"
@echo "... Startup"
@echo "... CSources"
@echo "... Src/main.o"
@echo "... Src/main.i"
@echo "... Src/main.s"
@echo "... cppSrc/transfer.o"
@echo "... cppSrc/transfer.i"
@echo "... cppSrc/transfer.s"

@ -132,7 +132,9 @@ stm32f0xx.h
stm32f0xx.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx.h
../Src/../Inc/main.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32f0xx_csl.h
stm32f0xx_ll_crs.h
../Src/../Inc/stm32f0xx_ll_crs.h
stm32f0xx_ll_rcc.h
@ -156,23 +158,21 @@ stm32f0xx_ll_gpio.h
stm32_assert.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32f0xx_it.h
../Src/../cppSrc/transfer.h
main.h
../Src/../cppSrc/main.h
stm32f0xx_csl.h
../Src/../cppSrc/stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/main.c
main.h
/home/key/github/KED/bsl/csl/stm32f042/Src/main.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.h
transfer.h
/home/key/github/KED/bsl/csl/stm32f042/Src/transfer.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c
main.h
/home/key/github/KED/bsl/csl/stm32f042/Src/main.h
stm32f0xx_csl.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.h
stm32f0xx_it.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.h

@ -4,7 +4,7 @@ set(CMAKE_DEPENDS_LANGUAGES
)
# The set of files for implicit dependencies of each language:
set(CMAKE_DEPENDS_CHECK_C
"/home/key/github/KED/bsl/csl/stm32f042/Src/main.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/main.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o"
"/home/key/github/KED/bsl/csl/stm32f042/Src/system_stm32f0xx.c" "/home/key/github/KED/bsl/csl/stm32f042/build/Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
)

@ -57,18 +57,18 @@ include Src/CMakeFiles/CSources.dir/progress.make
# Include the compile flags for this target's objects.
include Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/main.c.o: Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/main.c.o: ../Src/main.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Src/CMakeFiles/CSources.dir/main.c.o"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/main.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/main.c
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o: ../Src/stm32f0xx_csl.c
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green --progress-dir=/home/key/github/KED/bsl/csl/stm32f042/build/CMakeFiles --progress-num=$(CMAKE_PROGRESS_1) "Building C object Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -o CMakeFiles/CSources.dir/stm32f0xx_csl.c.o -c /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
Src/CMakeFiles/CSources.dir/main.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/main.c.i"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/main.c > CMakeFiles/CSources.dir/main.c.i
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Preprocessing C source to CMakeFiles/CSources.dir/stm32f0xx_csl.c.i"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -E /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c > CMakeFiles/CSources.dir/stm32f0xx_csl.c.i
Src/CMakeFiles/CSources.dir/main.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/main.c.s"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/main.c -o CMakeFiles/CSources.dir/main.c.s
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s: cmake_force
@$(CMAKE_COMMAND) -E cmake_echo_color --switch=$(COLOR) --green "Compiling C source to assembly CMakeFiles/CSources.dir/stm32f0xx_csl.c.s"
cd /home/key/github/KED/bsl/csl/stm32f042/build/Src && /usr/bin/arm-none-eabi-gcc $(C_DEFINES) $(C_INCLUDES) $(C_FLAGS) -S /home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c -o CMakeFiles/CSources.dir/stm32f0xx_csl.c.s
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: Src/CMakeFiles/CSources.dir/flags.make
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o: ../Src/stm32f0xx_it.c
@ -98,14 +98,14 @@ Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.s: cmake_force
# Object files for target CSources
CSources_OBJECTS = \
"CMakeFiles/CSources.dir/main.c.o" \
"CMakeFiles/CSources.dir/stm32f0xx_csl.c.o" \
"CMakeFiles/CSources.dir/stm32f0xx_it.c.o" \
"CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
# External object files for target CSources
CSources_EXTERNAL_OBJECTS =
Src/libCSources.a: Src/CMakeFiles/CSources.dir/main.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o
Src/libCSources.a: Src/CMakeFiles/CSources.dir/build.make

@ -1,5 +1,5 @@
file(REMOVE_RECURSE
"CMakeFiles/CSources.dir/main.c.o"
"CMakeFiles/CSources.dir/stm32f0xx_csl.c.o"
"CMakeFiles/CSources.dir/stm32f0xx_it.c.o"
"CMakeFiles/CSources.dir/system_stm32f0xx.c.o"
"libCSources.pdb"

@ -1,7 +1,7 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Unix Makefiles" Generator, CMake Version 3.13
Src/CMakeFiles/CSources.dir/main.c.o
Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/system_stm32f0xx.h
@ -22,10 +22,10 @@ Src/CMakeFiles/CSources.dir/main.c.o
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../Src/../Inc/main.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32f0xx_csl.h
../Src/../cppSrc/transfer.h
/home/key/github/KED/bsl/csl/stm32f042/Src/main.c
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_csl.c
Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f042x6.h
../Src/../Drivers/CMSIS/Device/ST/STM32F0xx/Include/stm32f0xx.h
@ -47,8 +47,8 @@ Src/CMakeFiles/CSources.dir/stm32f0xx_it.c.o
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_rcc.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_system.h
../Src/../Drivers/STM32F0xx_HAL_Driver/Inc/stm32f0xx_ll_utils.h
../Src/../Inc/main.h
../Src/../Inc/stm32_assert.h
../Src/../Inc/stm32f0xx_csl.h
../Src/../Inc/stm32f0xx_it.h
/home/key/github/KED/bsl/csl/stm32f042/Src/stm32f0xx_it.c
Src/CMakeFiles/CSources.dir/system_stm32f0xx.c.o

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

@ -1,2 +1,2 @@
/usr/bin/arm-none-eabi-ar qc libCSources.a CMakeFiles/CSources.dir/main.c.o CMakeFiles/CSources.dir/stm32f0xx_it.c.o CMakeFiles/CSources.dir/system_stm32f0xx.c.o
/usr/bin/arm-none-eabi-ar qc libCSources.a CMakeFiles/CSources.dir/stm32f0xx_csl.c.o CMakeFiles/CSources.dir/stm32f0xx_it.c.o CMakeFiles/CSources.dir/system_stm32f0xx.c.o
/usr/bin/arm-none-eabi-ranlib libCSources.a

@ -125,32 +125,32 @@ CSources/fast:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/build
.PHONY : CSources/fast
main.o: main.c.o
stm32f0xx_csl.o: stm32f0xx_csl.c.o
.PHONY : main.o
.PHONY : stm32f0xx_csl.o
# target to build an object file
main.c.o:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.o
.PHONY : main.c.o
stm32f0xx_csl.c.o:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.o
.PHONY : stm32f0xx_csl.c.o
main.i: main.c.i
stm32f0xx_csl.i: stm32f0xx_csl.c.i
.PHONY : main.i
.PHONY : stm32f0xx_csl.i
# target to preprocess a source file
main.c.i:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.i
.PHONY : main.c.i
stm32f0xx_csl.c.i:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.i
.PHONY : stm32f0xx_csl.c.i
main.s: main.c.s
stm32f0xx_csl.s: stm32f0xx_csl.c.s
.PHONY : main.s
.PHONY : stm32f0xx_csl.s
# target to generate assembly for a file
main.c.s:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/main.c.s
.PHONY : main.c.s
stm32f0xx_csl.c.s:
cd /home/key/github/KED/bsl/csl/stm32f042/build && $(MAKE) -f Src/CMakeFiles/CSources.dir/build.make Src/CMakeFiles/CSources.dir/stm32f0xx_csl.c.s
.PHONY : stm32f0xx_csl.c.s
stm32f0xx_it.o: stm32f0xx_it.c.o
@ -215,9 +215,9 @@ help:
@echo "... rebuild_cache"
@echo "... CSources"
@echo "... edit_cache"
@echo "... main.o"
@echo "... main.i"
@echo "... main.s"
@echo "... stm32f0xx_csl.o"
@echo "... stm32f0xx_csl.i"
@echo "... stm32f0xx_csl.s"
@echo "... stm32f0xx_it.o"
@echo "... stm32f0xx_it.i"
@echo "... stm32f0xx_it.s"

@ -1,5 +1,10 @@
#include "transfer.h"
int main(void)
{
stmStart();
}
int cppHook()
{
while (1)

@ -4,7 +4,7 @@
#ifdef __cplusplus
extern "C" {
#endif
#include "main.h"
#include "stm32f0xx_csl.h"
int cppHook();

Loading…
Cancel
Save