Two comment fixes
This commit is contained in:
parent
1913e1a936
commit
ca6c8818b1
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue