https://github.com/RomeroPablo/DataAcq-StarterProject
The Data Acquisition System for Longhorn Racing Solar can be divided into the following subsystems:
...
in the “DAQStarterProjectMCU” directory.
Reading and writing to the serial terminal:
Code Block |
---|
/* USER CODE BEGIN WHILE */ uint8_t msg[] = "Test 0x01 :: UART COMMSCOMMUNICATION\n\r"; while (1) { HAL_UART_Transmit(&huart1, (uint8_t *)msg, sizeof(msg), 100); /* USER CODE END WHILE */ /* USER CODE BEGIN 3 */ } /* USER CODE END |
...
Once you confirm this works, try modifying the code to send a different message!
setup stm
generate hal
dev firmware
output to terminal
done with this parttext message, and then try sending a counter.
Reading and writing to the IMU
Display
https://github.com/astrolancing/lhr-svt-da-bootcamp-2024
...