1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/sodaq-autonomo: correct TX pin of uart2

This commit is contained in:
Kees Bakker 2017-10-12 21:43:19 +02:00
parent b3ebdab80a
commit a84bacc662

View File

@ -125,7 +125,7 @@ static const uart_conf_t uart_config[] = {
{
.dev = &SERCOM4->USART,
.rx_pin = GPIO_PIN(PB,13),
.tx_pin = GPIO_PIN(PA,14),
.tx_pin = GPIO_PIN(PB,14),
.mux = GPIO_MUX_C,
.rx_pad = UART_PAD_RX_1,
.tx_pad = UART_PAD_TX_2,
@ -141,7 +141,7 @@ static const uart_conf_t uart_config[] = {
.tx_pad = UART_PAD_TX_2,
.flags = UART_FLAG_NONE,
.gclk_src = GCLK_CLKCTRL_GEN_GCLK0
}
},
};
/* interrupt function name mapping */