mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
UARTClass fix for only-first-char-sent issue.
This commit is contained in:
parent
e8b62b34c8
commit
08adc54377
@ -120,10 +120,8 @@ void UARTClass::flush( void )
|
||||
void UARTClass::write( const uint8_t uc_data )
|
||||
{
|
||||
/* Check if the transmitter is ready */
|
||||
if ( (_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY )
|
||||
{
|
||||
return ;
|
||||
}
|
||||
while ( (_pUart->UART_SR & UART_SR_TXRDY) != UART_SR_TXRDY )
|
||||
;
|
||||
|
||||
/* Send character */
|
||||
_pUart->UART_THR = uc_data ;
|
||||
|
Loading…
Reference in New Issue
Block a user