Skip to content
Snippets Groups Projects
Commit a84bacc6 authored by Kees Bakker's avatar Kees Bakker
Browse files

boards/sodaq-autonomo: correct TX pin of uart2

parent b3ebdab8
No related branches found
No related tags found
No related merge requests found
...@@ -125,7 +125,7 @@ static const uart_conf_t uart_config[] = { ...@@ -125,7 +125,7 @@ static const uart_conf_t uart_config[] = {
{ {
.dev = &SERCOM4->USART, .dev = &SERCOM4->USART,
.rx_pin = GPIO_PIN(PB,13), .rx_pin = GPIO_PIN(PB,13),
.tx_pin = GPIO_PIN(PA,14), .tx_pin = GPIO_PIN(PB,14),
.mux = GPIO_MUX_C, .mux = GPIO_MUX_C,
.rx_pad = UART_PAD_RX_1, .rx_pad = UART_PAD_RX_1,
.tx_pad = UART_PAD_TX_2, .tx_pad = UART_PAD_TX_2,
...@@ -141,7 +141,7 @@ static const uart_conf_t uart_config[] = { ...@@ -141,7 +141,7 @@ static const uart_conf_t uart_config[] = {
.tx_pad = UART_PAD_TX_2, .tx_pad = UART_PAD_TX_2,
.flags = UART_FLAG_NONE, .flags = UART_FLAG_NONE,
.gclk_src = GCLK_CLKCTRL_GEN_GCLK0 .gclk_src = GCLK_CLKCTRL_GEN_GCLK0
} },
}; };
/* interrupt function name mapping */ /* interrupt function name mapping */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment