summaryrefslogtreecommitdiffstats
path: root/door_lock/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'door_lock/uart.h')
-rw-r--r--door_lock/uart.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/door_lock/uart.h b/door_lock/uart.h
new file mode 100644
index 0000000..c5fc87e
--- /dev/null
+++ b/door_lock/uart.h
@@ -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 */