8 lines
112 B
C
8 lines
112 B
C
#ifndef _UART_H_
|
|
#define _UART_H_
|
|
|
|
void uart_sendb(char b);
|
|
void uart_write(const char *data, int len);
|
|
|
|
#endif
|