Unverified Commit f98fc7ee authored by Bert Melis's avatar Bert Melis Committed by GitHub

fix hwSerial tx only flush (#4263)

parent 09577768
...@@ -371,7 +371,7 @@ void uartWriteBuf(uart_t* uart, const uint8_t * data, size_t len) ...@@ -371,7 +371,7 @@ void uartWriteBuf(uart_t* uart, const uint8_t * data, size_t len)
void uartFlush(uart_t* uart) void uartFlush(uart_t* uart)
{ {
uartFlushTxOnly(uart,false); uartFlushTxOnly(uart,true);
} }
void uartFlushTxOnly(uart_t* uart, bool txOnly) void uartFlushTxOnly(uart_t* uart, bool txOnly)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment