Hi everyone!I've been trying to implement UART reception using LL library in polling mode. The code below is what handles the reception: uint8_t LL_USART_Receive_Byte(USART_TypeDef *USARTx) {
// Wait for Read Data Register is not empty
while (!LL_U...