Resolved! Can I retrigger a HAL_UART_Receive_IT() in HAL_UART_RxCpltCallback() ?
I'm trying to talk to a device that sends a 122 byte message every 500 milliseconds at 115.2 KBaud. I can make it work with HAL_UART_Receive_IT() in a while loop as shown here. #include <stm32l4xx_hal.h> #include <stm32_hal_legacy.h> #include <iost...