Fix a typo: the RXD0 pin is PA18, not PA19.

This commit is contained in:
Ian Lepore 2013-03-29 18:06:54 +00:00
parent 7bdac10465
commit c29eb73802

View File

@ -92,7 +92,7 @@ at91rm9200_config_uart(unsigned devid, unsigned unit, unsigned pinmask)
case AT91RM9200_ID_USART0:
at91_pio_use_periph_a(AT91RM92_PIOA_BASE, AT91C_PIO_PA17, 1); /* TXD0 */
at91_pio_use_periph_a(AT91RM92_PIOA_BASE, AT91C_PIO_PA19, 0); /* RXD0 */
at91_pio_use_periph_a(AT91RM92_PIOA_BASE, AT91C_PIO_PA18, 0); /* RXD0 */
/* CTS PA20 */
/* RTS -- errata #39 PA21 */
break;