diff options
Diffstat (limited to 'uart.h')
| -rw-r--r-- | uart.h | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -0,0 +1,10 @@ +#ifndef UART_H +#define UART_H + +void uart_init(void); + +uint8_t uart_recv(void); + +void uart_send(uint8_t c); + +#endif /* UART_H */ |
