From 9d923b5a00916478a84d21c431532e5d3065968c Mon Sep 17 00:00:00 2001 From: Jonas Gunz Date: Wed, 21 Jun 2017 16:16:17 +0200 Subject: Implemented MIDI interface --- floppyMusic/uart.h | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 floppyMusic/uart.h (limited to 'floppyMusic/uart.h') diff --git a/floppyMusic/uart.h b/floppyMusic/uart.h deleted file mode 100644 index 1954357..0000000 --- a/floppyMusic/uart.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * uart.h - * - * Created: 02.05.2017 20:48:16 - * Author: Jonas - */ - - -#ifndef UART_H_ -#define UART_H_ - -#ifndef F_CPU -#define F_CPU 16000000UL //CPU Running at 16MHz -#endif - -#include - - -#define _GET_UBBR(BAUD) ( (F_CPU / 16 * BAUD) - 1) - -void uart_init(unsigned int _baud); - -void uart_send(char _data); - -void uart_send_string(char *_data); - -char uart_recieve(void); - - -#endif /* UART_H_ */ \ No newline at end of file -- cgit v1.2.3