Best way to transfer strings to STM32 with USART ?
Hello guys. I'm fairly new to stm and i've mostly worked on a pico.
The thing is that i want to create a programm with the following function.
The user sends a character and then a string from a python app on my pc. The first character is a pseudo handshake, meaning that if the received character is lets say 'A', the stm should store the string on a buffer array and print it.
I've implemented this program by using the get_char function on the pico. Can i implement this on an stm by using something similar or do i have to use multiple instances of the HAL_UART_RECEIVE_IT function , since i also want the super loop to also implement an adc reading, and the HAL_UART_RECEIVE is blocking ?
