1
0
Fork 0

Fix uart3_init comment

This commit is contained in:
Arti Zirk 2016-09-10 01:09:54 +03:00
parent 85dca87ff3
commit d827bbe427
1 changed files with 1 additions and 1 deletions

View File

@ -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)