We are trying to get UART-receiver to work in interrupt mode.
Here is the code that doesn't work. Any suggestions?UART_HandleTypeDef UartHandle;uint8_t MyRxBuf[ 10 ], MyTxBuf[3];int main( void ) { uint32_t t_print; int16_t i; HAL_Init(); SystemClock_Config(); /* Put the USART peripheral in the Asynchronou...