summaryrefslogtreecommitdiff
path: root/floppyMusic/uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'floppyMusic/uart.h')
-rw-r--r--floppyMusic/uart.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/floppyMusic/uart.h b/floppyMusic/uart.h
index 4943af9..1954357 100644
--- a/floppyMusic/uart.h
+++ b/floppyMusic/uart.h
@@ -15,9 +15,10 @@
#include <avr/io.h>
+
#define _GET_UBBR(BAUD) ( (F_CPU / 16 * BAUD) - 1)
-void uart_init(uint32_t _baud);
+void uart_init(unsigned int _baud);
void uart_send(char _data);
@@ -25,4 +26,5 @@ void uart_send_string(char *_data);
char uart_recieve(void);
+
#endif /* UART_H_ */ \ No newline at end of file