summaryrefslogtreecommitdiff
path: root/floppyMusic/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'floppyMusic/main.c')
-rw-r--r--floppyMusic/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/floppyMusic/main.c b/floppyMusic/main.c
index 8719312..56df5b2 100644
--- a/floppyMusic/main.c
+++ b/floppyMusic/main.c
@@ -8,6 +8,7 @@
//#define _TEST_MODE
#include <avr/io.h>
+#include <util/delay.h>
#include "floppy.h"
@@ -37,8 +38,8 @@ int main(void)
for(;;)
{
- while (!(UCSRA & (1<<UDRE)));
- UDR = 0b10101010;
+ midi_process();
+ _delay_us(100);
}
#endif