diff options
Diffstat (limited to 'stm/usart.h')
-rw-r--r-- | stm/usart.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stm/usart.h b/stm/usart.h index ad57587ce3..9d92e59f5a 100644 --- a/stm/usart.h +++ b/stm/usart.h @@ -1,6 +1,6 @@ void usart_init(void); -MP_BOOL usart_is_enabled(void); -MP_BOOL usart_rx_any(void); +bool usart_is_enabled(void); +bool usart_rx_any(void); int usart_rx_char(void); void usart_tx_char(int c); void usart_tx_str(const char *str); |