2011-03-02 11:35 PM
Chip bug? Problem with first byte on USART3
2011-05-17 05:26 AM
I solved it by clearing the status register before sending the first byte from a buffer.
Somehow the SR sometimes contains junk after reset (i think). // Clear Transmission complete flag by reading the SR i = USART3->SR; // Send first byte USART3->DR = tx_buffer[0];