Skip to content
Snippets Groups Projects
Commit 723d86ba authored by Joakim Nohlgård's avatar Joakim Nohlgård
Browse files

boards/mulle: Fix mixed up RX TX pins on UART0

parent 4b7f85de
No related branches found
No related tags found
No related merge requests found
...@@ -128,8 +128,8 @@ static const uart_conf_t uart_config[] = { ...@@ -128,8 +128,8 @@ static const uart_conf_t uart_config[] = {
{ {
.dev = UART0, .dev = UART0,
.freq = CLOCK_CORECLOCK, .freq = CLOCK_CORECLOCK,
.pin_rx = GPIO_PIN(PORT_A, 14), .pin_rx = GPIO_PIN(PORT_A, 15),
.pin_tx = GPIO_PIN(PORT_A, 15), .pin_tx = GPIO_PIN(PORT_A, 14),
.pcr_rx = PORT_PCR_MUX(3), .pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3), .pcr_tx = PORT_PCR_MUX(3),
.irqn = UART0_RX_TX_IRQn, .irqn = UART0_RX_TX_IRQn,
......
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