User Activity

I have 7 binary variable that I want to continously send to uart with the DMA.I do not want to use ascii format, I want to send binary data.If I use multiple DMA transmits in a row, just some are beeing send due to the fact, that when the second is t...
Hello I am trying to send hex values over UART with HAL_Transmitin the cubeIDE I do:HAL_UART_Transmit(&huart2,(0xF << 4) | (0x8), 1,10);However I receive in Hterm0xC5I cannot make sense over it. Sending text with " some text" works fineHAL_UART_Trans...
The task is to print measured data from sensors and actuators on a display. The display of the data should not interfear with the high frequency measurement or the overal processor tasks.STM32F4
I am using a STM32F446re to detect rising edges, calculate the frequency and execute accordingly.I have two signals that need to be detected. So I use two Timers 3 and 4. My frequency ranges from 3Hz to 300 kHz so I need to use overflow detection.How...