esp8266/uart: Add uart_flush() function.
diff --git a/esp8266/uart.h b/esp8266/uart.h
index ce1438b..ed0dcfb 100644
--- a/esp8266/uart.h
+++ b/esp8266/uart.h
@@ -92,5 +92,6 @@
 void uart_init(UartBautRate uart0_br, UartBautRate uart1_br);
 int uart0_rx(void);
 void uart_tx_one_char(uint8 uart, uint8 TxChar);
+void uart_flush(uint8 uart);
 
 #endif // _INCLUDED_UART_H_