Two comment fixes

This commit is contained in:
kasunch 2009-10-22 15:48:20 +00:00
parent 1913e1a936
commit ca6c8818b1

View file

@ -59,11 +59,11 @@
void void
init_usart(void) init_usart(void)
{ {
/* Second rs232 port for debugging */ /* First rs232 port for debugging */
rs232_init(RS232_PORT_0, USART_BAUD_115200, rs232_init(RS232_PORT_0, USART_BAUD_115200,
USART_PARITY_NONE | USART_STOP_BITS_1 | USART_DATA_BITS_8); USART_PARITY_NONE | USART_STOP_BITS_1 | USART_DATA_BITS_8);
/* Redirect stdout to second port */ /* Redirect stdout to first port */
rs232_redirect_stdout(RS232_PORT_0); rs232_redirect_stdout(RS232_PORT_0);
} }