You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
218 B
7 lines
218 B
void usart_init(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);
|
|
void usart_tx_strn_cooked(const char *str, int len);
|
|
|