summaryrefslogtreecommitdiffstats
path: root/sw-avr/rom-loader/usart.h
diff options
context:
space:
mode:
Diffstat (limited to 'sw-avr/rom-loader/usart.h')
-rw-r--r--sw-avr/rom-loader/usart.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/sw-avr/rom-loader/usart.h b/sw-avr/rom-loader/usart.h
new file mode 100644
index 0000000..f7d8806
--- /dev/null
+++ b/sw-avr/rom-loader/usart.h
@@ -0,0 +1,10 @@
+#ifndef USART_H
+#define USART_H
+
+#include <stdint.h>
+
+void usart_init(void);
+void usart_send(uint8_t c);
+uint8_t usart_recv(void);
+
+#endif