Skip to content

Commit

Permalink
fix hwSerial tx only flush (#4263)
Browse files Browse the repository at this point in the history
  • Loading branch information
bertmelis authored Oct 1, 2020
1 parent 0957776 commit f98fc7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cores/esp32/esp32-hal-uart.c
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ void uartWriteBuf(uart_t* uart, const uint8_t * data, size_t len)

void uartFlush(uart_t* uart)
{
uartFlushTxOnly(uart,false);
uartFlushTxOnly(uart,true);
}

void uartFlushTxOnly(uart_t* uart, bool txOnly)
Expand Down

0 comments on commit f98fc7e

Please sign in to comment.