AVR baud rates are good, but the values are hackish.
[goodfet] / firmware / lib / arduino.c
index 503492c..698aa9e 100644 (file)
@@ -13,20 +13,7 @@ void arduino_init(){
   /* set PORTB for output*/
   DDRB = 0xFF;
   
-  /*
-  while (1)
-    {
-    //LED on
-      PORTB = 0x20;
-
-      _delay_ms(1000);
-
-      //LED off
-      PORTB = 0x00;
-
-      _delay_ms(1000);
-    }
-*/
+  avr_init_uart0();
 }
 
 #endif