2013-10-26 18:01:48 +01:00
|
|
|
void usart_init(void);
|
2014-01-06 13:51:53 -08:00
|
|
|
bool usart_is_enabled(void);
|
|
|
|
bool usart_rx_any(void);
|
2013-10-26 18:01:48 +01:00
|
|
|
int usart_rx_char(void);
|
|
|
|
void usart_tx_char(int c);
|
|
|
|
void usart_tx_str(const char *str);
|
|
|
|
void usart_tx_strn_cooked(const char *str, int len);
|