diff options
Diffstat (limited to 'sw-avr/rom-loader/usart.h')
-rw-r--r-- | sw-avr/rom-loader/usart.h | 10 |
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 |