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.
30 lines
398 B
30 lines
398 B
#include "misc.h"
|
|
#include "../stm/usart.h"
|
|
|
|
void usart_init(void) {
|
|
}
|
|
|
|
bool usart_is_enabled(void) {
|
|
return false;
|
|
}
|
|
|
|
bool usart_rx_any(void) {
|
|
return false;
|
|
}
|
|
|
|
int usart_rx_char(void) {
|
|
return 0;
|
|
}
|
|
|
|
void usart_tx_char(int c) {
|
|
(void)c;
|
|
}
|
|
|
|
void usart_tx_str(const char *str) {
|
|
(void)str;
|
|
}
|
|
|
|
void usart_tx_strn_cooked(const char *str, int len) {
|
|
(void)str;
|
|
(void)len;
|
|
}
|
|
|