13 lines
180 B
C
13 lines
180 B
C
#ifndef UART_H
|
|
#define UART_H
|
|
|
|
#include "mystd.h"
|
|
|
|
void uart_init(void);
|
|
|
|
void uart_tx(char data);
|
|
void uart_sendstring(const char* str);
|
|
|
|
char uart_rx(void);
|
|
|
|
#endif /* UART_H */
|