STM32F303k8 UART receive data read loop issue
Hello,When I try to read USART status register (RXNE bit), the execution stucks upon while loop which means no data have been readen: char uart2_read(void) { while(!(USART2->ISR & USART_ISR_RXNE)){} return USART2->RDR; } I think I initialized eve...