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

Merge pull request #7728 from keestux/fix-autonomo-uartpin

boards/sodaq-autonomo: correct TX pin of uart2
This commit is contained in:
Alexandre Abadie 2017-10-12 22:41:36 +02:00 committed by GitHub
commit 99e6324717

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 */