diff options
Diffstat (limited to 'stmhal/uart.h')
-rw-r--r-- | stmhal/uart.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stmhal/uart.h b/stmhal/uart.h index 5b223c5c61..a859f722b3 100644 --- a/stmhal/uart.h +++ b/stmhal/uart.h @@ -41,7 +41,7 @@ void uart_init0(void); void uart_deinit(void); void uart_irq_handler(mp_uint_t uart_id); -bool uart_rx_any(pyb_uart_obj_t *uart_obj); +mp_uint_t uart_rx_any(pyb_uart_obj_t *uart_obj); int uart_rx_char(pyb_uart_obj_t *uart_obj); void uart_tx_strn(pyb_uart_obj_t *uart_obj, const char *str, uint len); void uart_tx_strn_cooked(pyb_uart_obj_t *uart_obj, const char *str, uint len); |