Merge pull request #9468 from gebart/pr/mulle-uart-pins

boards/mulle: Fix mixed up RX TX pins on UART0
This commit is contained in:
Peter Kietzmann 2018-07-02 08:28:49 +02:00 committed by GitHub
commit c68ebca154
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -128,8 +128,8 @@ static const uart_conf_t uart_config[] = {
{
.dev = UART0,
.freq = CLOCK_CORECLOCK,
.pin_rx = GPIO_PIN(PORT_A, 14),
.pin_tx = GPIO_PIN(PORT_A, 15),
.pin_rx = GPIO_PIN(PORT_A, 15),
.pin_tx = GPIO_PIN(PORT_A, 14),
.pcr_rx = PORT_PCR_MUX(3),
.pcr_tx = PORT_PCR_MUX(3),
.irqn = UART0_RX_TX_IRQn,