mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/CAN-Demo.git
synced 2025-09-29 00:37:33 +00:00
Working CAN sending on TACOS via user space
This commit is contained in:
@@ -5,23 +5,26 @@
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
CPP_SRCS += \
|
||||
../App/Src/startup.cpp \
|
||||
../App/Src/test.cpp
|
||||
|
||||
OBJS += \
|
||||
./App/Src/startup.o \
|
||||
./App/Src/test.o
|
||||
|
||||
CPP_DEPS += \
|
||||
./App/Src/startup.d \
|
||||
./App/Src/test.d
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
App/Src/%.o App/Src/%.su App/Src/%.cyclo: ../App/Src/%.cpp App/Src/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-App-2f-Src
|
||||
|
||||
clean-App-2f-Src:
|
||||
-$(RM) ./App/Src/test.cyclo ./App/Src/test.d ./App/Src/test.o ./App/Src/test.su
|
||||
-$(RM) ./App/Src/startup.cyclo ./App/Src/startup.d ./App/Src/startup.o ./App/Src/startup.su ./App/Src/test.cyclo ./App/Src/test.d ./App/Src/test.o ./App/Src/test.su
|
||||
|
||||
.PHONY: clean-App-2f-Src
|
||||
|
||||
|
@@ -1,4 +1,4 @@
|
||||
../App/Src/test.cpp:14:18:void testCan(CAN_HandleTypeDef*) 1
|
||||
../App/Src/test.cpp:37:18:void testCanMsg(CAN_HandleTypeDef*, uint8_t*) 1
|
||||
../App/Src/test.cpp:55:7:void unpackValues(uint8_t, uint8_t*, uint8_t*, uint8_t*, uint8_t*) 1
|
||||
../App/Src/test.cpp:62:10:uint8_t packValues(uint8_t, uint8_t, uint8_t, uint8_t) 1
|
||||
../App/Src/test.cpp:55:18:void unpackValues(uint8_t, uint8_t*, uint8_t*, uint8_t*, uint8_t*) 1
|
||||
../App/Src/test.cpp:62:21:uint8_t packValues(uint8_t, uint8_t, uint8_t, uint8_t) 1
|
||||
|
@@ -1,6 +1,7 @@
|
||||
App/Src/test.o: ../App/Src/test.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/can.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -35,7 +36,8 @@ App/Src/test.o: ../App/Src/test.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/headers.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/iter.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/can.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -1,4 +1,4 @@
|
||||
../App/Src/test.cpp:14:18:void testCan(CAN_HandleTypeDef*) 608 static
|
||||
../App/Src/test.cpp:37:18:void testCanMsg(CAN_HandleTypeDef*, uint8_t*) 600 static
|
||||
../App/Src/test.cpp:55:7:void unpackValues(uint8_t, uint8_t*, uint8_t*, uint8_t*, uint8_t*) 24 static
|
||||
../App/Src/test.cpp:62:10:uint8_t packValues(uint8_t, uint8_t, uint8_t, uint8_t) 24 static
|
||||
../App/Src/test.cpp:55:18:void unpackValues(uint8_t, uint8_t*, uint8_t*, uint8_t*, uint8_t*) 24 static
|
||||
../App/Src/test.cpp:62:21:uint8_t packValues(uint8_t, uint8_t, uint8_t, uint8_t) 24 static
|
||||
|
@@ -1,7 +1,4 @@
|
||||
../Core/Src/main.c:79:5:main 3
|
||||
../Core/Src/main.c:159:6:SystemClock_Config 3
|
||||
../Core/Src/main.c:205:13:MX_CAN1_Init 2
|
||||
../Core/Src/main.c:242:13:MX_UART4_Init 2
|
||||
../Core/Src/main.c:275:13:MX_GPIO_Init 1
|
||||
../Core/Src/main.c:322:6:HAL_CAN_RxFifo0MsgPendingCallback 1
|
||||
../Core/Src/main.c:351:6:Error_Handler 1
|
||||
../Core/Src/main.c:78:5:main 2
|
||||
../Core/Src/main.c:168:6:SystemClock_Config 3
|
||||
../Core/Src/main.c:211:6:HAL_CAN_RxFifo0MsgPendingCallback 1
|
||||
../Core/Src/main.c:240:6:Error_Handler 1
|
||||
|
@@ -25,7 +25,20 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_flash_ramfunc.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
|
||||
../Core/Inc/FreeRTOSConfig.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/list.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h \
|
||||
../Core/Inc/can.h ../Core/Inc/main.h ../Core/Inc/usart.h \
|
||||
../Core/Inc/gpio.h
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
../Core/Inc/stm32f4xx_hal_conf.h:
|
||||
@@ -54,3 +67,18 @@ Core/Src/main.o: ../Core/Src/main.c ../Core/Inc/main.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
|
||||
../Core/Inc/FreeRTOSConfig.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.h:
|
||||
../Core/Inc/can.h:
|
||||
../Core/Inc/main.h:
|
||||
../Core/Inc/usart.h:
|
||||
../Core/Inc/gpio.h:
|
||||
|
Binary file not shown.
@@ -1,7 +1,4 @@
|
||||
../Core/Src/main.c:79:5:main 8 static
|
||||
../Core/Src/main.c:159:6:SystemClock_Config 88 static
|
||||
../Core/Src/main.c:205:13:MX_CAN1_Init 8 static
|
||||
../Core/Src/main.c:242:13:MX_UART4_Init 8 static
|
||||
../Core/Src/main.c:275:13:MX_GPIO_Init 48 static
|
||||
../Core/Src/main.c:322:6:HAL_CAN_RxFifo0MsgPendingCallback 16 static
|
||||
../Core/Src/main.c:351:6:Error_Handler 8 static,ignoring_inline_asm
|
||||
../Core/Src/main.c:78:5:main 8 static
|
||||
../Core/Src/main.c:168:6:SystemClock_Config 88 static
|
||||
../Core/Src/main.c:211:6:HAL_CAN_RxFifo0MsgPendingCallback 16 static
|
||||
../Core/Src/main.c:240:6:Error_Handler 8 static,ignoring_inline_asm
|
||||
|
@@ -1,5 +1 @@
|
||||
../Core/Src/stm32f4xx_hal_msp.c:64:6:HAL_MspInit 1
|
||||
../Core/Src/stm32f4xx_hal_msp.c:86:6:HAL_CAN_MspInit 2
|
||||
../Core/Src/stm32f4xx_hal_msp.c:127:6:HAL_CAN_MspDeInit 2
|
||||
../Core/Src/stm32f4xx_hal_msp.c:159:6:HAL_UART_MspInit 2
|
||||
../Core/Src/stm32f4xx_hal_msp.c:195:6:HAL_UART_MspDeInit 2
|
||||
|
Binary file not shown.
@@ -1,5 +1 @@
|
||||
../Core/Src/stm32f4xx_hal_msp.c:64:6:HAL_MspInit 16 static
|
||||
../Core/Src/stm32f4xx_hal_msp.c:86:6:HAL_CAN_MspInit 48 static
|
||||
../Core/Src/stm32f4xx_hal_msp.c:127:6:HAL_CAN_MspDeInit 16 static
|
||||
../Core/Src/stm32f4xx_hal_msp.c:159:6:HAL_UART_MspInit 48 static
|
||||
../Core/Src/stm32f4xx_hal_msp.c:195:6:HAL_UART_MspDeInit 16 static
|
||||
|
@@ -1,11 +1,9 @@
|
||||
../Core/Src/stm32f4xx_it.c:69:6:NMI_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:84:6:HardFault_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:99:6:MemManage_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:114:6:BusFault_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:129:6:UsageFault_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:144:6:SVC_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:157:6:DebugMon_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:170:6:PendSV_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:183:6:SysTick_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:204:6:CAN1_RX0_IRQHandler 1
|
||||
../Core/Src/stm32f4xx_it.c:218:6:CAN1_RX1_IRQHandler 1
|
||||
../Core/Src/stm32f4xx_it.c:71:6:NMI_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:86:6:HardFault_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:101:6:MemManage_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:116:6:BusFault_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:131:6:UsageFault_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:146:6:DebugMon_Handler 1
|
||||
../Core/Src/stm32f4xx_it.c:159:6:SysTick_Handler 2
|
||||
../Core/Src/stm32f4xx_it.c:188:6:CAN1_RX0_IRQHandler 1
|
||||
../Core/Src/stm32f4xx_it.c:202:6:CAN1_RX1_IRQHandler 1
|
||||
|
@@ -26,7 +26,16 @@ Core/Src/stm32f4xx_it.o: ../Core/Src/stm32f4xx_it.c ../Core/Inc/main.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \
|
||||
../Core/Inc/stm32f4xx_it.h
|
||||
../Core/Inc/stm32f4xx_it.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h \
|
||||
../Core/Inc/FreeRTOSConfig.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/task.h \
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/list.h
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
../Core/Inc/stm32f4xx_hal_conf.h:
|
||||
@@ -56,3 +65,12 @@ Core/Src/stm32f4xx_it.o: ../Core/Src/stm32f4xx_it.c ../Core/Inc/main.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
|
||||
../Core/Inc/stm32f4xx_it.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/FreeRTOS.h:
|
||||
../Core/Inc/FreeRTOSConfig.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/projdefs.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/portable.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/deprecated_definitions.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/portmacro.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/mpu_wrappers.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/task.h:
|
||||
../Middlewares/Third_Party/FreeRTOS/Source/include/list.h:
|
||||
|
Binary file not shown.
@@ -1,11 +1,9 @@
|
||||
../Core/Src/stm32f4xx_it.c:69:6:NMI_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:84:6:HardFault_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:99:6:MemManage_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:114:6:BusFault_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:129:6:UsageFault_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:144:6:SVC_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:157:6:DebugMon_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:170:6:PendSV_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:183:6:SysTick_Handler 8 static
|
||||
../Core/Src/stm32f4xx_it.c:204:6:CAN1_RX0_IRQHandler 8 static
|
||||
../Core/Src/stm32f4xx_it.c:218:6:CAN1_RX1_IRQHandler 8 static
|
||||
../Core/Src/stm32f4xx_it.c:71:6:NMI_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:86:6:HardFault_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:101:6:MemManage_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:116:6:BusFault_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:131:6:UsageFault_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:146:6:DebugMon_Handler 4 static
|
||||
../Core/Src/stm32f4xx_it.c:159:6:SysTick_Handler 8 static
|
||||
../Core/Src/stm32f4xx_it.c:188:6:CAN1_RX0_IRQHandler 8 static
|
||||
../Core/Src/stm32f4xx_it.c:202:6:CAN1_RX1_IRQHandler 8 static
|
||||
|
@@ -5,38 +5,50 @@
|
||||
|
||||
# Add inputs and outputs from these tool invocations to the build variables
|
||||
C_SRCS += \
|
||||
../Core/Src/can.c \
|
||||
../Core/Src/freertos.c \
|
||||
../Core/Src/gpio.c \
|
||||
../Core/Src/main.c \
|
||||
../Core/Src/stm32f4xx_hal_msp.c \
|
||||
../Core/Src/stm32f4xx_it.c \
|
||||
../Core/Src/syscalls.c \
|
||||
../Core/Src/sysmem.c \
|
||||
../Core/Src/system_stm32f4xx.c
|
||||
../Core/Src/system_stm32f4xx.c \
|
||||
../Core/Src/usart.c
|
||||
|
||||
C_DEPS += \
|
||||
./Core/Src/can.d \
|
||||
./Core/Src/freertos.d \
|
||||
./Core/Src/gpio.d \
|
||||
./Core/Src/main.d \
|
||||
./Core/Src/stm32f4xx_hal_msp.d \
|
||||
./Core/Src/stm32f4xx_it.d \
|
||||
./Core/Src/syscalls.d \
|
||||
./Core/Src/sysmem.d \
|
||||
./Core/Src/system_stm32f4xx.d
|
||||
./Core/Src/system_stm32f4xx.d \
|
||||
./Core/Src/usart.d
|
||||
|
||||
OBJS += \
|
||||
./Core/Src/can.o \
|
||||
./Core/Src/freertos.o \
|
||||
./Core/Src/gpio.o \
|
||||
./Core/Src/main.o \
|
||||
./Core/Src/stm32f4xx_hal_msp.o \
|
||||
./Core/Src/stm32f4xx_it.o \
|
||||
./Core/Src/syscalls.o \
|
||||
./Core/Src/sysmem.o \
|
||||
./Core/Src/system_stm32f4xx.o
|
||||
./Core/Src/system_stm32f4xx.o \
|
||||
./Core/Src/usart.o
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Core/Src/%.o Core/Src/%.su Core/Src/%.cyclo: ../Core/Src/%.c Core/Src/subdir.mk
|
||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Core-2f-Src
|
||||
|
||||
clean-Core-2f-Src:
|
||||
-$(RM) ./Core/Src/main.cyclo ./Core/Src/main.d ./Core/Src/main.o ./Core/Src/main.su ./Core/Src/stm32f4xx_hal_msp.cyclo ./Core/Src/stm32f4xx_hal_msp.d ./Core/Src/stm32f4xx_hal_msp.o ./Core/Src/stm32f4xx_hal_msp.su ./Core/Src/stm32f4xx_it.cyclo ./Core/Src/stm32f4xx_it.d ./Core/Src/stm32f4xx_it.o ./Core/Src/stm32f4xx_it.su ./Core/Src/syscalls.cyclo ./Core/Src/syscalls.d ./Core/Src/syscalls.o ./Core/Src/syscalls.su ./Core/Src/sysmem.cyclo ./Core/Src/sysmem.d ./Core/Src/sysmem.o ./Core/Src/sysmem.su ./Core/Src/system_stm32f4xx.cyclo ./Core/Src/system_stm32f4xx.d ./Core/Src/system_stm32f4xx.o ./Core/Src/system_stm32f4xx.su
|
||||
-$(RM) ./Core/Src/can.cyclo ./Core/Src/can.d ./Core/Src/can.o ./Core/Src/can.su ./Core/Src/freertos.cyclo ./Core/Src/freertos.d ./Core/Src/freertos.o ./Core/Src/freertos.su ./Core/Src/gpio.cyclo ./Core/Src/gpio.d ./Core/Src/gpio.o ./Core/Src/gpio.su ./Core/Src/main.cyclo ./Core/Src/main.d ./Core/Src/main.o ./Core/Src/main.su ./Core/Src/stm32f4xx_hal_msp.cyclo ./Core/Src/stm32f4xx_hal_msp.d ./Core/Src/stm32f4xx_hal_msp.o ./Core/Src/stm32f4xx_hal_msp.su ./Core/Src/stm32f4xx_it.cyclo ./Core/Src/stm32f4xx_it.d ./Core/Src/stm32f4xx_it.o ./Core/Src/stm32f4xx_it.su ./Core/Src/syscalls.cyclo ./Core/Src/syscalls.d ./Core/Src/syscalls.o ./Core/Src/syscalls.su ./Core/Src/sysmem.cyclo ./Core/Src/sysmem.d ./Core/Src/sysmem.o ./Core/Src/sysmem.su ./Core/Src/system_stm32f4xx.cyclo ./Core/Src/system_stm32f4xx.d ./Core/Src/system_stm32f4xx.o ./Core/Src/system_stm32f4xx.su ./Core/Src/usart.cyclo ./Core/Src/usart.d ./Core/Src/usart.o ./Core/Src/usart.su
|
||||
|
||||
.PHONY: clean-Core-2f-Src
|
||||
|
||||
|
Binary file not shown.
@@ -19,6 +19,8 @@ C_SRCS += \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.c \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.c \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.c \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.c \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.c \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.c
|
||||
|
||||
C_DEPS += \
|
||||
@@ -36,6 +38,8 @@ C_DEPS += \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.d \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.d \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d
|
||||
|
||||
OBJS += \
|
||||
@@ -53,17 +57,19 @@ OBJS += \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o \
|
||||
./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o
|
||||
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Drivers/STM32F4xx_HAL_Driver/Src/%.o Drivers/STM32F4xx_HAL_Driver/Src/%.su Drivers/STM32F4xx_HAL_Driver/Src/%.cyclo: ../Drivers/STM32F4xx_HAL_Driver/Src/%.c Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk
|
||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-gcc "$<" -mcpu=cortex-m4 -std=gnu11 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -O0 -ffunction-sections -fdata-sections -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Drivers-2f-STM32F4xx_HAL_Driver-2f-Src
|
||||
|
||||
clean-Drivers-2f-STM32F4xx_HAL_Driver-2f-Src:
|
||||
-$(RM) ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.su
|
||||
-$(RM) ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_cortex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_dma_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_exti.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_flash_ramfunc.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_gpio.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.su ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.cyclo ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.d ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o ./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.su
|
||||
|
||||
.PHONY: clean-Drivers-2f-STM32F4xx_HAL_Driver-2f-Src
|
||||
|
||||
|
@@ -1,5 +1,7 @@
|
||||
Libs/sta-core/src/atomic/mutex.o: ../Libs/sta-core/src/atomic/mutex.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/atomic/mutex.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/atomic/mutex.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -1,5 +1,7 @@
|
||||
Libs/sta-core/src/atomic/signal.o: ../Libs/sta-core/src/atomic/signal.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/atomic/signal.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/atomic/signal.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/atomic/%.o Libs/sta-core/src/atomic/%.su Libs/sta-core/src/atomic/%.cyclo: ../Libs/sta-core/src/atomic/%.cpp Libs/sta-core/src/atomic/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-atomic
|
||||
|
||||
|
@@ -3,9 +3,11 @@ Libs/sta-core/src/bus/device.o: ../Libs/sta-core/src/bus/device.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/device.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -6,11 +6,13 @@ Libs/sta-core/src/bus/i2c/device.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/device.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/i2c/device.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/i2c/i2c.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/device.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/bus/i2c/%.o Libs/sta-core/src/bus/i2c/%.su Libs/sta-core/src/bus/i2c/%.cyclo: ../Libs/sta-core/src/bus/i2c/%.cpp Libs/sta-core/src/bus/i2c/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus-2f-i2c
|
||||
|
||||
|
@@ -2,8 +2,10 @@ Libs/sta-core/src/bus/interface.o: ../Libs/sta-core/src/bus/interface.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -8,7 +8,8 @@ Libs/sta-core/src/bus/spi/device.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/gpio_pin.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/device.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/device.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp:
|
||||
@@ -17,4 +18,5 @@ Libs/sta-core/src/bus/spi/device.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/gpio_pin.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -2,9 +2,11 @@ Libs/sta-core/src/bus/spi/settings.o: \
|
||||
../Libs/sta-core/src/bus/spi/settings.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp:
|
||||
|
Binary file not shown.
@@ -22,7 +22,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/bus/spi/%.o Libs/sta-core/src/bus/spi/%.su Libs/sta-core/src/bus/spi/%.cyclo: ../Libs/sta-core/src/bus/spi/%.cpp Libs/sta-core/src/bus/spi/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus-2f-spi
|
||||
|
||||
|
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/bus/%.o Libs/sta-core/src/bus/%.su Libs/sta-core/src/bus/%.cyclo: ../Libs/sta-core/src/bus/%.cpp Libs/sta-core/src/bus/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus
|
||||
|
||||
|
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/bus/uart/%.o Libs/sta-core/src/bus/uart/%.su Libs/sta-core/src/bus/uart/%.cyclo: ../Libs/sta-core/src/bus/uart/%.cpp Libs/sta-core/src/bus/uart/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus-2f-uart
|
||||
|
||||
|
@@ -1,7 +1,9 @@
|
||||
Libs/sta-core/src/can/iter.o: ../Libs/sta-core/src/can/iter.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/iter.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/iter.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/can/%.o Libs/sta-core/src/can/%.su Libs/sta-core/src/can/%.cyclo: ../Libs/sta-core/src/can/%.cpp Libs/sta-core/src/can/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-can
|
||||
|
||||
|
@@ -1,9 +1,13 @@
|
||||
Libs/sta-core/src/debug/assert.o: ../Libs/sta-core/src/debug/assert.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/debug.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/debug.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp:
|
||||
|
Binary file not shown.
@@ -2,9 +2,11 @@ Libs/sta-core/src/debug/printing/printable.o: \
|
||||
../Libs/sta-core/src/debug/printing/printable.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp:
|
||||
|
Binary file not shown.
@@ -3,8 +3,10 @@ Libs/sta-core/src/debug/printing/printable_printf.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable_printf.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable_printf.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -7,7 +7,8 @@ Libs/sta-core/src/debug/printing/printable_uart.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/printf.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable_uart.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp:
|
||||
@@ -16,5 +17,6 @@ Libs/sta-core/src/debug/printing/printable_uart.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/printf.hpp:
|
||||
|
Binary file not shown.
@@ -22,7 +22,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/debug/printing/%.o Libs/sta-core/src/debug/printing/%.su Libs/sta-core/src/debug/printing/%.cyclo: ../Libs/sta-core/src/debug/printing/%.cpp Libs/sta-core/src/debug/printing/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-debug-2f-printing
|
||||
|
||||
|
@@ -16,7 +16,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/debug/%.o Libs/sta-core/src/debug/%.su Libs/sta-core/src/debug/%.cyclo: ../Libs/sta-core/src/debug/%.cpp Libs/sta-core/src/debug/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-debug
|
||||
|
||||
|
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/arduino/bus/i2c.o: \
|
||||
../Libs/sta-core/src/devices/arduino/bus/i2c.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/bus/i2c.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/bus/i2c.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/arduino/bus/%.o Libs/sta-core/src/devices/arduino/bus/%.su Libs/sta-core/src/devices/arduino/bus/%.cyclo: ../Libs/sta-core/src/devices/arduino/bus/%.cpp Libs/sta-core/src/devices/arduino/bus/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-arduino-2f-bus
|
||||
|
||||
|
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/arduino/delay.o: \
|
||||
../Libs/sta-core/src/devices/arduino/delay.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/delay.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/delay.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/arduino/gpio_pin.o: \
|
||||
../Libs/sta-core/src/devices/arduino/gpio_pin.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/gpio_pin.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/gpio_pin.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/arduino/%.o Libs/sta-core/src/devices/arduino/%.su Libs/sta-core/src/devices/arduino/%.cyclo: ../Libs/sta-core/src/devices/arduino/%.cpp Libs/sta-core/src/devices/arduino/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-arduino
|
||||
|
||||
|
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/raspi/bus/i2c.o: \
|
||||
../Libs/sta-core/src/devices/raspi/bus/i2c.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/i2c.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/i2c.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/raspi/bus/spi.o: \
|
||||
../Libs/sta-core/src/devices/raspi/bus/spi.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/spi.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/spi.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/raspi/bus/%.o Libs/sta-core/src/devices/raspi/bus/%.su Libs/sta-core/src/devices/raspi/bus/%.cyclo: ../Libs/sta-core/src/devices/raspi/bus/%.cpp Libs/sta-core/src/devices/raspi/bus/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-raspi-2f-bus
|
||||
|
||||
|
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/raspi/delay.o: \
|
||||
../Libs/sta-core/src/devices/raspi/delay.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/delay.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/delay.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/raspi/gpio_pin.o: \
|
||||
../Libs/sta-core/src/devices/raspi/gpio_pin.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/gpio_pin.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/gpio_pin.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/raspi/%.o Libs/sta-core/src/devices/raspi/%.su Libs/sta-core/src/devices/raspi/%.cyclo: ../Libs/sta-core/src/devices/raspi/%.cpp Libs/sta-core/src/devices/raspi/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-raspi
|
||||
|
||||
|
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/adc.o: \
|
||||
../Libs/sta-core/src/devices/stm32/adc.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/adc.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -31,7 +32,8 @@ Libs/sta-core/src/devices/stm32/adc.o: \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/adc.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/bus/i2c.o: \
|
||||
../Libs/sta-core/src/devices/stm32/bus/i2c.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/bus/i2c.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -32,7 +33,8 @@ Libs/sta-core/src/devices/stm32/bus/i2c.o: \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/bus/i2c.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/bus/spi.o: \
|
||||
../Libs/sta-core/src/devices/stm32/bus/spi.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/bus/spi.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -31,7 +32,8 @@ Libs/sta-core/src/devices/stm32/bus/spi.o: \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr_ex.h \
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/bus/spi.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -22,7 +22,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/stm32/bus/%.o Libs/sta-core/src/devices/stm32/bus/%.su Libs/sta-core/src/devices/stm32/bus/%.cyclo: ../Libs/sta-core/src/devices/stm32/bus/%.cpp Libs/sta-core/src/devices/stm32/bus/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-stm32-2f-bus
|
||||
|
||||
|
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/bus/uart.o: \
|
||||
../Libs/sta-core/src/devices/stm32/bus/uart.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/bus/uart.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -36,7 +37,8 @@ Libs/sta-core/src/devices/stm32/bus/uart.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/bus/uart.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/can.o: \
|
||||
../Libs/sta-core/src/devices/stm32/can.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/can.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -38,7 +39,8 @@ Libs/sta-core/src/devices/stm32/can.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/can.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/delay.o: \
|
||||
../Libs/sta-core/src/devices/stm32/delay.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/delay.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -34,7 +35,8 @@ Libs/sta-core/src/devices/stm32/delay.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/delay.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -1,7 +1,8 @@
|
||||
Libs/sta-core/src/devices/stm32/gpio_pin.o: \
|
||||
../Libs/sta-core/src/devices/stm32/gpio_pin.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/gpio_pin.hpp \
|
||||
../Core/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp \
|
||||
../Core/Inc/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
|
||||
../Core/Inc/stm32f4xx_hal_conf.h \
|
||||
@@ -34,7 +35,8 @@ Libs/sta-core/src/devices/stm32/gpio_pin.o: \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/lang.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/gpio_pin.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
|
||||
../Core/Inc/main.h:
|
||||
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
|
||||
|
Binary file not shown.
@@ -2,7 +2,9 @@ Libs/sta-core/src/devices/stm32/init.o: \
|
||||
../Libs/sta-core/src/devices/stm32/init.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/init.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/init.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -28,7 +28,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/stm32/%.o Libs/sta-core/src/devices/stm32/%.su Libs/sta-core/src/devices/stm32/%.cyclo: ../Libs/sta-core/src/devices/stm32/%.cpp Libs/sta-core/src/devices/stm32/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-stm32
|
||||
|
||||
|
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/template/custom_printable.o: \
|
||||
../Libs/sta-core/src/devices/template/custom_printable.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/template/custom_printable.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/template/custom_printable.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -1,6 +1,8 @@
|
||||
Libs/sta-core/src/devices/template/delay.o: \
|
||||
../Libs/sta-core/src/devices/template/delay.cpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/template/delay.hpp \
|
||||
../Core/Inc/sta/config.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/template/delay.hpp:
|
||||
../Core/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp:
|
||||
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:
|
||||
|
Binary file not shown.
@@ -19,7 +19,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/devices/template/%.o Libs/sta-core/src/devices/template/%.su Libs/sta-core/src/devices/template/%.cyclo: ../Libs/sta-core/src/devices/template/%.cpp Libs/sta-core/src/devices/template/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-template
|
||||
|
||||
|
@@ -16,7 +16,7 @@ CPP_DEPS += \
|
||||
|
||||
# Each subdirectory must supply rules for building sources it contributes
|
||||
Libs/sta-core/src/%.o Libs/sta-core/src/%.su Libs/sta-core/src/%.cyclo: ../Libs/sta-core/src/%.cpp Libs/sta-core/src/subdir.mk
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
arm-none-eabi-g++ "$<" -mcpu=cortex-m4 -std=gnu++14 -g3 -DDEBUG -DUSE_HAL_DRIVER -DSTM32F407xx -c -I../Core/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc -I../Drivers/STM32F4xx_HAL_Driver/Inc/Legacy -I../Drivers/CMSIS/Device/ST/STM32F4xx/Include -I../Drivers/CMSIS/Include -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc" -I../Middlewares/Third_Party/FreeRTOS/Source/include -I../Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 -I../Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Tacos/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta" -O0 -ffunction-sections -fdata-sections -fno-exceptions -fno-rtti -fno-use-cxa-atexit -Wall -fstack-usage -fcyclomatic-complexity -MMD -MP -MF"$(@:%.o=%.d)" -MT"$@" --specs=nano.specs -mfpu=fpv4-sp-d16 -mfloat-abi=hard -mthumb -o "$@"
|
||||
|
||||
clean: clean-Libs-2f-sta-2d-core-2f-src
|
||||
|
||||
|
@@ -9,6 +9,11 @@ RM := rm -rf
|
||||
|
||||
# All of the sources participating in the build are defined here
|
||||
-include sources.mk
|
||||
-include Tacos/src/subdir.mk
|
||||
-include Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/subdir.mk
|
||||
-include Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/subdir.mk
|
||||
-include Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/subdir.mk
|
||||
-include Middlewares/Third_Party/FreeRTOS/Source/subdir.mk
|
||||
-include Libs/sta-core/src/devices/template/subdir.mk
|
||||
-include Libs/sta-core/src/devices/stm32/bus/subdir.mk
|
||||
-include Libs/sta-core/src/devices/stm32/subdir.mk
|
||||
@@ -25,9 +30,13 @@ RM := rm -rf
|
||||
-include Libs/sta-core/src/bus/subdir.mk
|
||||
-include Libs/sta-core/src/atomic/subdir.mk
|
||||
-include Libs/sta-core/src/subdir.mk
|
||||
-include Libs/rtos2-utils/src/system/subdir.mk
|
||||
-include Libs/rtos2-utils/src/debug/subdir.mk
|
||||
-include Libs/rtos2-utils/src/subdir.mk
|
||||
-include Drivers/STM32F4xx_HAL_Driver/Src/subdir.mk
|
||||
-include Core/Startup/subdir.mk
|
||||
-include Core/Src/subdir.mk
|
||||
-include App/Src/tasks/subdir.mk
|
||||
-include App/Src/subdir.mk
|
||||
-include objects.mk
|
||||
|
||||
|
@@ -1,10 +1,16 @@
|
||||
"./App/Src/startup.o"
|
||||
"./App/Src/test.o"
|
||||
"./App/Src/tasks/can_task.o"
|
||||
"./Core/Src/can.o"
|
||||
"./Core/Src/freertos.o"
|
||||
"./Core/Src/gpio.o"
|
||||
"./Core/Src/main.o"
|
||||
"./Core/Src/stm32f4xx_hal_msp.o"
|
||||
"./Core/Src/stm32f4xx_it.o"
|
||||
"./Core/Src/syscalls.o"
|
||||
"./Core/Src/sysmem.o"
|
||||
"./Core/Src/system_stm32f4xx.o"
|
||||
"./Core/Src/usart.o"
|
||||
"./Core/Startup/startup_stm32f407zgtx.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_can.o"
|
||||
@@ -20,7 +26,22 @@
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_pwr_ex.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_rcc_ex.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_tim_ex.o"
|
||||
"./Drivers/STM32F4xx_HAL_Driver/Src/stm32f4xx_hal_uart.o"
|
||||
"./Libs/rtos2-utils/src/debug/heap_stats.o"
|
||||
"./Libs/rtos2-utils/src/debug/runtime_stats.o"
|
||||
"./Libs/rtos2-utils/src/debug/stack_overflow.o"
|
||||
"./Libs/rtos2-utils/src/event.o"
|
||||
"./Libs/rtos2-utils/src/heap_useNewlib_ST.o"
|
||||
"./Libs/rtos2-utils/src/mutex.o"
|
||||
"./Libs/rtos2-utils/src/signal.o"
|
||||
"./Libs/rtos2-utils/src/thread.o"
|
||||
"./Libs/rtos2-utils/src/timer.o"
|
||||
"./Libs/rtos2-utils/src/system/can_bus.o"
|
||||
"./Libs/rtos2-utils/src/system/events.o"
|
||||
"./Libs/rtos2-utils/src/system/startup.o"
|
||||
"./Libs/rtos2-utils/src/system/watchdog.o"
|
||||
"./Libs/sta-core/src/atomic/mutex.o"
|
||||
"./Libs/sta-core/src/atomic/signal.o"
|
||||
"./Libs/sta-core/src/bus/device.o"
|
||||
@@ -57,3 +78,17 @@
|
||||
"./Libs/sta-core/src/devices/template/custom_printable.o"
|
||||
"./Libs/sta-core/src/devices/template/delay.o"
|
||||
"./Libs/sta-core/src/mutex.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2/cmsis_os2.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/croutine.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/event_groups.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/list.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/queue.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/stream_buffer.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/tasks.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/timers.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F/port.o"
|
||||
"./Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang/heap_4.o"
|
||||
"./Tacos/src/manager.o"
|
||||
"./Tacos/src/startup.o"
|
||||
"./Tacos/src/statemachine.o"
|
||||
"./Tacos/src/thread.o"
|
||||
|
@@ -39,9 +39,13 @@ CPP_DEPS :=
|
||||
# Every subdirectory with source files must be described here
|
||||
SUBDIRS := \
|
||||
App/Src \
|
||||
App/Src/tasks \
|
||||
Core/Src \
|
||||
Core/Startup \
|
||||
Drivers/STM32F4xx_HAL_Driver/Src \
|
||||
Libs/rtos2-utils/src/debug \
|
||||
Libs/rtos2-utils/src \
|
||||
Libs/rtos2-utils/src/system \
|
||||
Libs/sta-core/src/atomic \
|
||||
Libs/sta-core/src/bus \
|
||||
Libs/sta-core/src/bus/i2c \
|
||||
@@ -58,4 +62,9 @@ Libs/sta-core/src/devices/stm32 \
|
||||
Libs/sta-core/src/devices/stm32/bus \
|
||||
Libs/sta-core/src/devices/template \
|
||||
Libs/sta-core/src \
|
||||
Middlewares/Third_Party/FreeRTOS/Source/CMSIS_RTOS_V2 \
|
||||
Middlewares/Third_Party/FreeRTOS/Source \
|
||||
Middlewares/Third_Party/FreeRTOS/Source/portable/GCC/ARM_CM4F \
|
||||
Middlewares/Third_Party/FreeRTOS/Source/portable/MemMang \
|
||||
Tacos/src \
|
||||
|
||||
|
Reference in New Issue
Block a user