12 lines
159 B
C
12 lines
159 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);
|
||
|
|
|
||
|
|
#endif /* UART_H */
|