diff --git a/src/uart.c b/src/uart.c index 0c77475..d0923c2 100644 --- a/src/uart.c +++ b/src/uart.c @@ -35,7 +35,7 @@ void uart3_init(void) UCSR3A &= ~(_BV(U2X3)); #endif UCSR3C = _BV(UCSZ31) | _BV(UCSZ30); /* 8-bit data */ - UCSR3B = _BV(TXEN3); /* Enable RX and TX */ + UCSR3B = _BV(TXEN3); /* Enable TX */ } int uart0_putchar(char c, FILE *stream)