summaryrefslogtreecommitdiffstats
path: root/door_lock/uart.h
blob: c5fc87e4866a56664adad03db4b8da39619b722b (plain)
1
2
3
4
5
6
7
8
9
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 */