Fixes and tested

This commit is contained in:
@CarlWachter 2024-02-14 22:55:42 +01:00
parent fb9cbb72a7
commit 6cf0b6731f
131 changed files with 549 additions and 461 deletions

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/> <provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="-1080687771005896909" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> <provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="-614993993494983921" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/> <language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/> <language-scope id="org.eclipse.cdt.core.g++"/>
</provider> </provider>
@ -16,7 +16,7 @@
<provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/> <provider copy-of="extension" id="org.eclipse.cdt.ui.UserLanguageSettingsProvider"/>
<provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/> <provider-reference id="org.eclipse.cdt.core.ReferencedProjectsLanguageSettingsProvider" ref="shared-provider"/>
<provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/> <provider-reference id="org.eclipse.cdt.managedbuilder.core.MBSLanguageSettingsProvider" ref="shared-provider"/>
<provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="-1080687771005896909" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true"> <provider class="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" console="false" env-hash="-614993993494983921" id="com.st.stm32cube.ide.mcu.toolchain.armnone.setup.CrossBuiltinSpecsDetector" keep-relative-paths="false" name="MCU ARM GCC Built-in Compiler Settings" parameter="${COMMAND} ${FLAGS} -E -P -v -dD &quot;${INPUTS}&quot;" prefer-non-shared="true">
<language-scope id="org.eclipse.cdt.core.gcc"/> <language-scope id="org.eclipse.cdt.core.gcc"/>
<language-scope id="org.eclipse.cdt.core.g++"/> <language-scope id="org.eclipse.cdt.core.g++"/>
</provider> </provider>

View File

@ -1,5 +1,5 @@
635E684B79701B039C64EA45C3F84D30=44DBEC1DE4EBA9B0485911FBE58BFC80 635E684B79701B039C64EA45C3F84D30=44DBEC1DE4EBA9B0485911FBE58BFC80
66BE74F758C12D739921AEA421D593D3=3 66BE74F758C12D739921AEA421D593D3=3
8DF89ED150041C4CBC7CB9A9CAA90856=84EF3C290D485BA5E95DA5C0811FD966 8DF89ED150041C4CBC7CB9A9CAA90856=7B5B92F1162457C6ECACD202698061B0
DC22A860405A8BF2F2C095E5B6529F12=84EF3C290D485BA5E95DA5C0811FD966 DC22A860405A8BF2F2C095E5B6529F12=7B5B92F1162457C6ECACD202698061B0
eclipse.preferences.version=1 eclipse.preferences.version=1

View File

@ -7,6 +7,7 @@
#include <tasks/can_task.hpp> #include <tasks/can_task.hpp>
#include <sta/debug/debug.hpp> #include <sta/debug/debug.hpp>
#include <sta/rtos/debug/heap_stats.hpp>
#include <cmsis_os2.h> #include <cmsis_os2.h>
@ -24,7 +25,7 @@ namespace demo
canController.start(); canController.start();
txHeader.id.format = sta::CanIdFormat::STD; // Set to EXT for extended ID txHeader.id.format = sta::CanIdFormat::STD; // Set to EXT for extended ID
txHeader.id.sid = 0x30; // Set the standard ID or extended ID txHeader.id.sid = 0x040; // Set the standard ID or extended ID
txHeader.payloadLength = 8; // Set the payload length (max 8 bytes) txHeader.payloadLength = 8; // Set the payload length (max 8 bytes)
// Create your message payload // Create your message payload
@ -35,7 +36,10 @@ namespace demo
void CanTask::func() void CanTask::func()
{ {
//STA_DEBUG_HEAP_STATS();
canController.sendFrame(txHeader, payload); canController.sendFrame(txHeader, payload);
//STA_DEBUG_HEAP_STATS();
STA_DEBUG_PRINTLN("SENT FRAME");
HAL_Delay(1000); HAL_Delay(1000);
} }
} // namespace demo } // namespace demo

View File

@ -20,7 +20,7 @@
// Create a CanTxHeader for your message // Create a CanTxHeader for your message
sta::CanTxHeader txHeader; sta::CanTxHeader txHeader;
txHeader.id.format = sta::CanIdFormat::STD; // Set to EXT for extended ID txHeader.id.format = sta::CanIdFormat::STD; // Set to EXT for extended ID
txHeader.id.sid = 0x030; // Set the standard ID or extended ID txHeader.id.sid = 0x010; // Set the standard ID or extended ID
txHeader.payloadLength = 8; // Set the payload length (max 8 bytes) txHeader.payloadLength = 8; // Set the payload length (max 8 bytes)
// Create your message payload // Create your message payload

83
CAN-Demo Debug.launch Normal file
View File

@ -0,0 +1,83 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<launchConfiguration type="com.st.stm32cube.ide.mcu.debug.launch.launchConfigurationType">
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.access_port_id" value="0"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.cubeprog_external_loaders" value="[]"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.debug_auth_certif_path" value=""/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.debug_auth_check_enable" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.debug_auth_key_path" value=""/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.debug_auth_permission" value="debug_non_secure_L3"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.enable_live_expr" value="true"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.enable_swv" value="false"/>
<intAttribute key="com.st.stm32cube.ide.mcu.debug.launch.formatVersion" value="2"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.ip_address_local" value="localhost"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.limit_swo_clock.enabled" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.limit_swo_clock.value" value=""/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.loadList" value="{&quot;fItems&quot;:[{&quot;fIsFromMainTab&quot;:true,&quot;fPath&quot;:&quot;Debug/CAN-Demo.elf&quot;,&quot;fProjectName&quot;:&quot;CAN-Demo&quot;,&quot;fPerformBuild&quot;:true,&quot;fDownload&quot;:true,&quot;fLoadSymbols&quot;:true}]}"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.override_start_address_mode" value="default"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.remoteCommand" value="target remote"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.startServer" value="true"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.startuptab.exception.divby0" value="true"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.startuptab.exception.unaligned" value="false"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.startuptab.haltonexception" value="true"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.swd_mode" value="true"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.swv_port" value="61235"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.swv_trace_hclk" value="16000000"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.useRemoteTarget" value="true"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.launch.vector_table" value=""/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.launch.verify_flash_download" value="true"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.cti_allow_halt" value="false"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.cti_signal_halt" value="false"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.enable_logging" value="false"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.enable_max_halt_delay" value="false"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.enable_shared_stlink" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.frequency" value="0"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.halt_all_on_reset" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.log_file" value="C:\Users\carlw\Desktop\to-the-moon\CAN-Demo\Debug\st-link_gdbserver_log.txt"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.low_power_debug" value="enable"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.max_halt_delay" value="2"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.reset_strategy" value="connect_under_reset"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.stlink_check_serial_number" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.stlink_txt_serial_number" value=""/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlink.watchdog_config" value="none"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.debug.stlinkenable_rtos" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.debug.stlinkrestart_configurations" value="{&quot;fVersion&quot;:1,&quot;fItems&quot;:[{&quot;fDisplayName&quot;:&quot;Reset&quot;,&quot;fIsSuppressible&quot;:false,&quot;fResetAttribute&quot;:&quot;Software system reset&quot;,&quot;fResetStrategies&quot;:[{&quot;fDisplayName&quot;:&quot;Software system reset&quot;,&quot;fLaunchAttribute&quot;:&quot;system_reset&quot;,&quot;fGdbCommands&quot;:[&quot;monitor reset\r\n&quot;],&quot;fCmdOptions&quot;:[&quot;-g&quot;]},{&quot;fDisplayName&quot;:&quot;Hardware reset&quot;,&quot;fLaunchAttribute&quot;:&quot;hardware_reset&quot;,&quot;fGdbCommands&quot;:[&quot;monitor reset hardware\r\n&quot;],&quot;fCmdOptions&quot;:[&quot;-g&quot;]},{&quot;fDisplayName&quot;:&quot;Core reset&quot;,&quot;fLaunchAttribute&quot;:&quot;core_reset&quot;,&quot;fGdbCommands&quot;:[&quot;monitor reset core\r\n&quot;],&quot;fCmdOptions&quot;:[&quot;-g&quot;]},{&quot;fDisplayName&quot;:&quot;None&quot;,&quot;fLaunchAttribute&quot;:&quot;no_reset&quot;,&quot;fGdbCommands&quot;:[],&quot;fCmdOptions&quot;:[&quot;-g&quot;]}],&quot;fGdbCommandGroup&quot;:{&quot;name&quot;:&quot;Additional commands&quot;,&quot;commands&quot;:[]},&quot;fStartApplication&quot;:true}]}"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.rtosproxy.enableRtosProxy" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.rtosproxy.rtosProxyCustomProperties" value=""/>
<stringAttribute key="com.st.stm32cube.ide.mcu.rtosproxy.rtosProxyDriver" value="threadx"/>
<booleanAttribute key="com.st.stm32cube.ide.mcu.rtosproxy.rtosProxyDriverAuto" value="false"/>
<stringAttribute key="com.st.stm32cube.ide.mcu.rtosproxy.rtosProxyDriverPort" value="cortex_m0"/>
<intAttribute key="com.st.stm32cube.ide.mcu.rtosproxy.rtosProxyPort" value="60000"/>
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.doHalt" value="false"/>
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.doReset" value="false"/>
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.initCommands" value=""/>
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.ipAddress" value="localhost"/>
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.jtagDeviceId" value="com.st.stm32cube.ide.mcu.debug.stlink"/>
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.pcRegister" value=""/>
<intAttribute key="org.eclipse.cdt.debug.gdbjtag.core.portNumber" value="61234"/>
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.runCommands" value=""/>
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setPcRegister" value="false"/>
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setResume" value="true"/>
<booleanAttribute key="org.eclipse.cdt.debug.gdbjtag.core.setStopAt" value="true"/>
<stringAttribute key="org.eclipse.cdt.debug.gdbjtag.core.stopAt" value="main"/>
<stringAttribute key="org.eclipse.cdt.dsf.gdb.DEBUG_NAME" value="arm-none-eabi-gdb"/>
<booleanAttribute key="org.eclipse.cdt.dsf.gdb.NON_STOP" value="false"/>
<booleanAttribute key="org.eclipse.cdt.dsf.gdb.UPDATE_THREADLIST_ON_SUSPEND" value="false"/>
<intAttribute key="org.eclipse.cdt.launch.ATTR_BUILD_BEFORE_LAUNCH_ATTR" value="2"/>
<stringAttribute key="org.eclipse.cdt.launch.COREFILE_PATH" value=""/>
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_START_MODE" value="remote"/>
<booleanAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN" value="true"/>
<stringAttribute key="org.eclipse.cdt.launch.DEBUGGER_STOP_AT_MAIN_SYMBOL" value="main"/>
<stringAttribute key="org.eclipse.cdt.launch.PROGRAM_NAME" value="Debug/CAN-Demo.elf"/>
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_ATTR" value="CAN-Demo"/>
<booleanAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_AUTO_ATTR" value="true"/>
<stringAttribute key="org.eclipse.cdt.launch.PROJECT_BUILD_CONFIG_ID_ATTR" value="com.st.stm32cube.ide.mcu.gnu.managedbuild.config.exe.debug.1763458346"/>
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
<listEntry value="/CAN-Demo"/>
</listAttribute>
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
<listEntry value="4"/>
</listAttribute>
<stringAttribute key="org.eclipse.dsf.launch.MEMORY_BLOCKS" value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&lt;memoryBlockExpressionList context=&quot;reserved-for-future-use&quot;/&gt;"/>
<stringAttribute key="process_factory_id" value="com.st.stm32cube.ide.mcu.debug.launch.HardwareDebugProcessFactory"/>
</launchConfiguration>

View File

@ -11,12 +11,14 @@ CAN1.IPParameters=CalculateTimeQuantum,CalculateTimeBit,CalculateBaudRate,Presca
CAN1.NART=ENABLE CAN1.NART=ENABLE
CAN1.Prescaler=8 CAN1.Prescaler=8
CAN1.SJW=CAN_SJW_1TQ CAN1.SJW=CAN_SJW_1TQ
FREERTOS.IPParameters=Tasks01,configRECORD_STACK_HIGH_ADDRESS,configTIMER_TASK_PRIORITY,configUSE_NEWLIB_REENTRANT FREERTOS.IPParameters=Tasks01,configRECORD_STACK_HIGH_ADDRESS,configTIMER_TASK_PRIORITY,configUSE_NEWLIB_REENTRANT,configTOTAL_HEAP_SIZE
FREERTOS.Tasks01=defaultTask,24,128,StartDefaultTask,Default,NULL,Dynamic,NULL,NULL FREERTOS.Tasks01=defaultTask,24,128,StartDefaultTask,Default,NULL,Dynamic,NULL,NULL
FREERTOS.configRECORD_STACK_HIGH_ADDRESS=1 FREERTOS.configRECORD_STACK_HIGH_ADDRESS=1
FREERTOS.configTIMER_TASK_PRIORITY=55 FREERTOS.configTIMER_TASK_PRIORITY=55
FREERTOS.configTOTAL_HEAP_SIZE=20360
FREERTOS.configUSE_NEWLIB_REENTRANT=1 FREERTOS.configUSE_NEWLIB_REENTRANT=1
File.Version=6 File.Version=6
GPIO.groupedBy=Group By Peripherals
KeepUserPlacement=false KeepUserPlacement=false
Mcu.CPN=STM32F407ZGT6 Mcu.CPN=STM32F407ZGT6
Mcu.Family=STM32F4 Mcu.Family=STM32F4
@ -144,7 +146,7 @@ ProjectManager.ToolChainLocation=
ProjectManager.UAScriptAfterPath= ProjectManager.UAScriptAfterPath=
ProjectManager.UAScriptBeforePath= ProjectManager.UAScriptBeforePath=
ProjectManager.UnderRoot=true ProjectManager.UnderRoot=true
ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-HAL-false,2-MX_GPIO_Init-GPIO-false-HAL-true,3-MX_UART4_Init-UART4-false-HAL-true,4-MX_CAN1_Init-CAN1-false-HAL-true ProjectManager.functionlistsort=1-SystemClock_Config-RCC-false-HAL-false,2-MX_GPIO_Init-GPIO-false-HAL-true,3-MX_CAN1_Init-CAN1-false-HAL-true,4-MX_USART1_UART_Init-USART1-false-HAL-true
RCC.48MHZClocksFreq_Value=32000000 RCC.48MHZClocksFreq_Value=32000000
RCC.AHBCLKDivider=RCC_SYSCLK_DIV4 RCC.AHBCLKDivider=RCC_SYSCLK_DIV4
RCC.AHBFreq_Value=16000000 RCC.AHBFreq_Value=16000000
@ -160,8 +162,7 @@ RCC.HCLKFreq_Value=16000000
RCC.HSE_VALUE=8000000 RCC.HSE_VALUE=8000000
RCC.HSI_VALUE=16000000 RCC.HSI_VALUE=16000000
RCC.I2SClocksFreq_Value=192000000 RCC.I2SClocksFreq_Value=192000000
RCC.IPParameters=48MHZClocksFreq_Value,AHBCLKDivider,AHBFreq_Value,APB1Freq_Value,APB1TimFreq_Value,APB2Freq_Value,APB2TimFreq_Value,CortexFreq_Value,EthernetFreq_Value,FCLKCortexFreq_Value,FamilyName,HCLKFreq_Value,HSE_VALUE,HSI_VALUE,I2SClocksFreq_Value,LSE_VALUE,LSI_VALUE,MCO2PinFreq_Value,PLLCLKFreq_Value,PLLM,PLLN,PLLQCLKFreq_Value,PLLSourceVirtual,RTCFreq_Value,RTCHSEDivFreq_Value,SYSCLKFreq_VALUE,SYSCLKSource,VCOI2SOutputFreq_Value,VCOInputFreq_Value,VCOOutputFreq_Value,VcooutputI2S RCC.IPParameters=48MHZClocksFreq_Value,AHBCLKDivider,AHBFreq_Value,APB1Freq_Value,APB1TimFreq_Value,APB2Freq_Value,APB2TimFreq_Value,CortexFreq_Value,EthernetFreq_Value,FCLKCortexFreq_Value,FamilyName,HCLKFreq_Value,HSE_VALUE,HSI_VALUE,I2SClocksFreq_Value,LSI_VALUE,MCO2PinFreq_Value,PLLCLKFreq_Value,PLLM,PLLN,PLLQCLKFreq_Value,PLLSourceVirtual,RTCFreq_Value,RTCHSEDivFreq_Value,SYSCLKFreq_VALUE,SYSCLKSource,VCOI2SOutputFreq_Value,VCOInputFreq_Value,VCOOutputFreq_Value,VcooutputI2S
RCC.LSE_VALUE=32768
RCC.LSI_VALUE=32000 RCC.LSI_VALUE=32000
RCC.MCO2PinFreq_Value=64000000 RCC.MCO2PinFreq_Value=64000000
RCC.PLLCLKFreq_Value=64000000 RCC.PLLCLKFreq_Value=64000000
@ -177,7 +178,7 @@ RCC.VCOI2SOutputFreq_Value=384000000
RCC.VCOInputFreq_Value=2000000 RCC.VCOInputFreq_Value=2000000
RCC.VCOOutputFreq_Value=128000000 RCC.VCOOutputFreq_Value=128000000
RCC.VcooutputI2S=192000000 RCC.VcooutputI2S=192000000
USART1.BaudRate=6200 USART1.BaudRate=9600
USART1.IPParameters=VirtualMode,BaudRate USART1.IPParameters=VirtualMode,BaudRate
USART1.VirtualMode=VM_ASYNC USART1.VirtualMode=VM_ASYNC
VP_FREERTOS_VS_CMSIS_V2.Mode=CMSIS_V2 VP_FREERTOS_VS_CMSIS_V2.Mode=CMSIS_V2

View File

@ -69,7 +69,7 @@
#define configTICK_RATE_HZ ((TickType_t)1000) #define configTICK_RATE_HZ ((TickType_t)1000)
#define configMAX_PRIORITIES ( 56 ) #define configMAX_PRIORITIES ( 56 )
#define configMINIMAL_STACK_SIZE ((uint16_t)128) #define configMINIMAL_STACK_SIZE ((uint16_t)128)
#define configTOTAL_HEAP_SIZE ((size_t)15360) #define configTOTAL_HEAP_SIZE ((size_t)20360)
#define configMAX_TASK_NAME_LEN ( 16 ) #define configMAX_TASK_NAME_LEN ( 16 )
#define configUSE_TRACE_FACILITY 1 #define configUSE_TRACE_FACILITY 1
#define configUSE_16_BIT_TICKS 0 #define configUSE_16_BIT_TICKS 0

View File

@ -39,7 +39,7 @@ void MX_USART1_UART_Init(void)
/* USER CODE END USART1_Init 1 */ /* USER CODE END USART1_Init 1 */
huart1.Instance = USART1; huart1.Instance = USART1;
huart1.Init.BaudRate = 6200; huart1.Init.BaudRate = 9600;
huart1.Init.WordLength = UART_WORDLENGTH_8B; huart1.Init.WordLength = UART_WORDLENGTH_8B;
huart1.Init.StopBits = UART_STOPBITS_1; huart1.Init.StopBits = UART_STOPBITS_1;
huart1.Init.Parity = UART_PARITY_NONE; huart1.Init.Parity = UART_PARITY_NONE;

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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: clean-App-2f-Src

View File

@ -1,9 +1,9 @@
App/Src/test.o: ../App/Src/test.cpp \ 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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/can.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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/main.h ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h \
../Core/Inc/stm32f4xx_hal_conf.h \ ../Core/Inc/stm32f4xx_hal_conf.h \
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \ ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_rcc.h \
@ -31,16 +31,16 @@ App/Src/test.o: ../App/Src/test.cpp \
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.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_pwr_ex.h \
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \ ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/controller.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/controller.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/filter.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/filter.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/headers.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/can.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/hal.hpp:
../Core/Inc/main.h: ../Core/Inc/main.h:
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h: ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal.h:
../Core/Inc/stm32f4xx_hal_conf.h: ../Core/Inc/stm32f4xx_hal_conf.h:
@ -69,8 +69,8 @@ App/Src/test.o: ../App/Src/test.cpp \
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_pwr.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_pwr_ex.h:
../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h: ../Drivers/STM32F4xx_HAL_Driver/Inc/stm32f4xx_hal_uart.h:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/controller.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/controller.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/filter.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/filter.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/headers.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/iter.hpp:

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -43,7 +43,7 @@ OBJS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/Libs/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 "$@" 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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/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: clean-Core-2f-Src

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -64,7 +64,7 @@ OBJS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/Libs/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 "$@" 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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/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: clean-Drivers-2f-STM32F4xx_HAL_Driver-2f-Src

View File

@ -1,9 +1,9 @@
Libs/sta-core/src/atomic/mutex.o: ../Libs/sta-core/src/atomic/mutex.cpp \ 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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/atomic/mutex.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/atomic/mutex.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,9 +1,9 @@
Libs/sta-core/src/atomic/signal.o: ../Libs/sta-core/src/atomic/signal.cpp \ 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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/atomic/signal.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/atomic/signal.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-atomic

View File

@ -1,15 +1,15 @@
Libs/sta-core/src/bus/device.o: ../Libs/sta-core/src/bus/device.cpp \ 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/device.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

Binary file not shown.

View File

@ -1,20 +1,20 @@
Libs/sta-core/src/bus/i2c/device.o: \ Libs/sta-core/src/bus/i2c/device.o: \
../Libs/sta-core/src/bus/i2c/device.cpp \ ../Libs/sta-core/src/bus/i2c/device.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/i2c/device.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,7 +1,7 @@
Libs/sta-core/src/bus/i2c/i2c.o: ../Libs/sta-core/src/bus/i2c/i2c.cpp \ Libs/sta-core/src/bus/i2c/i2c.o: ../Libs/sta-core/src/bus/i2c/i2c.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/i2c/i2c.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/i2c/i2c.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus-2f-i2c

View File

@ -1,13 +1,13 @@
Libs/sta-core/src/bus/interface.o: ../Libs/sta-core/src/bus/interface.cpp \ 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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,24 +1,24 @@
Libs/sta-core/src/bus/spi/device.o: \ Libs/sta-core/src/bus/spi/device.o: \
../Libs/sta-core/src/bus/spi/device.cpp \ ../Libs/sta-core/src/bus/spi/device.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/device.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,14 +1,14 @@
Libs/sta-core/src/bus/spi/settings.o: \ Libs/sta-core/src/bus/spi/settings.o: \
../Libs/sta-core/src/bus/spi/settings.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/lang.hpp:

View File

@ -1,9 +1,9 @@
Libs/sta-core/src/bus/spi/spi.o: ../Libs/sta-core/src/bus/spi/spi.cpp \ Libs/sta-core/src/bus/spi/spi.o: ../Libs/sta-core/src/bus/spi/spi.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/spi/spi.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/spi/settings.hpp:

View File

@ -22,7 +22,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus-2f-spi

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-bus-2f-uart

View File

@ -1,9 +1,9 @@
Libs/sta-core/src/bus/uart/uart.o: ../Libs/sta-core/src/bus/uart/uart.cpp \ Libs/sta-core/src/bus/uart/uart.o: ../Libs/sta-core/src/bus/uart/uart.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp:

View File

@ -1,3 +1,3 @@
Libs/sta-core/src/can/id.o: ../Libs/sta-core/src/can/id.cpp \ Libs/sta-core/src/can/id.o: ../Libs/sta-core/src/can/id.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/can/id.hpp:

Binary file not shown.

View File

@ -1,11 +1,11 @@
Libs/sta-core/src/can/iter.o: ../Libs/sta-core/src/can/iter.cpp \ 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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

Binary file not shown.

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-can

View File

@ -1,15 +1,15 @@
Libs/sta-core/src/debug/assert.o: ../Libs/sta-core/src/debug/assert.cpp \ 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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/lang.hpp:

View File

@ -1,14 +1,14 @@
Libs/sta-core/src/debug/printing/printable.o: \ Libs/sta-core/src/debug/printing/printable.o: \
../Libs/sta-core/src/debug/printing/printable.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/lang.hpp:

View File

@ -1,3 +1,3 @@
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 1 C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 1
../Libs/sta-core/src/debug/printing/printable_printf.cpp:8:5:sta::PrintablePrintf::PrintablePrintf() 1 ../Libs/sta-core/src/debug/printing/printable_printf.cpp:8:5:sta::PrintablePrintf::PrintablePrintf() 1
../Libs/sta-core/src/debug/printing/printable_printf.cpp:13:10:virtual void sta::PrintablePrintf::print(const char*, size_t) 3 ../Libs/sta-core/src/debug/printing/printable_printf.cpp:13:10:virtual void sta::PrintablePrintf::print(const char*, size_t) 3

View File

@ -1,14 +1,14 @@
Libs/sta-core/src/debug/printing/printable_printf.o: \ Libs/sta-core/src/debug/printing/printable_printf.o: \
../Libs/sta-core/src/debug/printing/printable_printf.cpp \ ../Libs/sta-core/src/debug/printing/printable_printf.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable_printf.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,3 +1,3 @@
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 16 static C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 16 static
../Libs/sta-core/src/debug/printing/printable_printf.cpp:8:5:sta::PrintablePrintf::PrintablePrintf() 16 static ../Libs/sta-core/src/debug/printing/printable_printf.cpp:8:5:sta::PrintablePrintf::PrintablePrintf() 16 static
../Libs/sta-core/src/debug/printing/printable_printf.cpp:13:10:virtual void sta::PrintablePrintf::print(const char*, size_t) 24 static ../Libs/sta-core/src/debug/printing/printable_printf.cpp:13:10:virtual void sta::PrintablePrintf::print(const char*, size_t) 24 static

View File

@ -1,3 +1,3 @@
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 1 C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 1
../Libs/sta-core/src/debug/printing/printable_uart.cpp:13:5:sta::PrintableUART::PrintableUART(sta::UART*) 4 ../Libs/sta-core/src/debug/printing/printable_uart.cpp:13:5:sta::PrintableUART::PrintableUART(sta::UART*) 4
../Libs/sta-core/src/debug/printing/printable_uart.cpp:20:10:virtual void sta::PrintableUART::print(const char*, size_t) 1 ../Libs/sta-core/src/debug/printing/printable_uart.cpp:20:10:virtual void sta::PrintableUART::print(const char*, size_t) 1

View File

@ -1,24 +1,24 @@
Libs/sta-core/src/debug/printing/printable_uart.o: \ Libs/sta-core/src/debug/printing/printable_uart.o: \
../Libs/sta-core/src/debug/printing/printable_uart.cpp \ ../Libs/sta-core/src/debug/printing/printable_uart.cpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable_uart.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp \ C:/Users/carlw/Desktop/to-the-moon/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 C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/bus/uart/uart.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/interface.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/mutex.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/bus/uart/settings.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/assert.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/printf.hpp:

View File

@ -1,3 +1,3 @@
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 16 static C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/debug/printing/printable.hpp:31:11:constexpr sta::Printable::Printable() 16 static
../Libs/sta-core/src/debug/printing/printable_uart.cpp:13:5:sta::PrintableUART::PrintableUART(sta::UART*) 16 static ../Libs/sta-core/src/debug/printing/printable_uart.cpp:13:5:sta::PrintableUART::PrintableUART(sta::UART*) 16 static
../Libs/sta-core/src/debug/printing/printable_uart.cpp:20:10:virtual void sta::PrintableUART::print(const char*, size_t) 24 static ../Libs/sta-core/src/debug/printing/printable_uart.cpp:20:10:virtual void sta::PrintableUART::print(const char*, size_t) 24 static

View File

@ -22,7 +22,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-debug-2f-printing

View File

@ -16,7 +16,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-debug

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/arduino/bus/i2c.o: \ Libs/sta-core/src/devices/arduino/bus/i2c.o: \
../Libs/sta-core/src/devices/arduino/bus/i2c.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/bus/i2c.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/bus/i2c.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-arduino-2f-bus

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/arduino/delay.o: \ Libs/sta-core/src/devices/arduino/delay.o: \
../Libs/sta-core/src/devices/arduino/delay.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/delay.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/delay.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/arduino/gpio_pin.o: \ Libs/sta-core/src/devices/arduino/gpio_pin.o: \
../Libs/sta-core/src/devices/arduino/gpio_pin.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/gpio_pin.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/arduino/gpio_pin.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-arduino

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/raspi/bus/i2c.o: \ Libs/sta-core/src/devices/raspi/bus/i2c.o: \
../Libs/sta-core/src/devices/raspi/bus/i2c.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/i2c.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/i2c.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/raspi/bus/spi.o: \ Libs/sta-core/src/devices/raspi/bus/spi.o: \
../Libs/sta-core/src/devices/raspi/bus/spi.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/spi.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/bus/spi.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-raspi-2f-bus

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/raspi/delay.o: \ Libs/sta-core/src/devices/raspi/delay.o: \
../Libs/sta-core/src/devices/raspi/delay.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/delay.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/delay.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -1,10 +1,10 @@
Libs/sta-core/src/devices/raspi/gpio_pin.o: \ Libs/sta-core/src/devices/raspi/gpio_pin.o: \
../Libs/sta-core/src/devices/raspi/gpio_pin.cpp \ ../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 \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/gpio_pin.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \ C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp \
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp C:/Users/carlw/Desktop/to-the-moon/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: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/raspi/gpio_pin.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/App/Inc/sta/config.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta/config.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/STM32F407xx.hpp:
/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp: C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include/sta/devices/stm32/mcu/common.hpp:

View File

@ -19,7 +19,7 @@ CPP_DEPS += \
# Each subdirectory must supply rules for building sources it contributes # 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 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" -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/App/Inc/sta" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/rtos2-utils/include" -I"/Users/carlos/Documents/RWTH/space_team/CAN-Demo/Libs/TACOS/include" -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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/sta-core/include" -I"C:/Users/carlw/Desktop/to-the-moon/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"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/App/Inc/sta" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/rtos2-utils/include" -I"C:/Users/carlw/Desktop/to-the-moon/CAN-Demo/Libs/TACOS/include" -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 clean: clean-Libs-2f-sta-2d-core-2f-src-2f-devices-2f-raspi

Some files were not shown because too many files have changed in this diff Show More