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 9d92e59f5a..ad57587ce3 100644 --- a/stm/usart.h +++ b/stm/usart.h @@ -1,6 +1,6 @@ void usart_init(void); -bool usart_is_enabled(void); -bool usart_rx_any(void); +MP_BOOL usart_is_enabled(void); +MP_BOOL usart_rx_any(void); int usart_rx_char(void); void usart_tx_char(int c); void usart_tx_str(const char *str); |