diff --git a/wiring_serial.c b/wiring_serial.c index 3825a92..a2fb824 100644 --- a/wiring_serial.c +++ b/wiring_serial.c @@ -43,6 +43,9 @@ void beginSerial(long baud) UBRR0H = ((F_CPU / 16 + baud / 2) / baud - 1) >> 8; UBRR0L = ((F_CPU / 16 + baud / 2) / baud - 1); + /* baud doubler off - Only needed on Uno XXX */ + // UCSR0A &= ~(1 << U2X0); + // enable rx and tx UCSR0B |= 1<