From aad5ac83f2645e7280ba256dd8bf5fb06f70f02b Mon Sep 17 00:00:00 2001 From: MarcelStenzel Date: Wed, 1 Sep 2021 13:42:27 +0200 Subject: [PATCH] boards/hifive1b: Fix uart dev1 pins --- boards/hifive1b/include/periph_conf.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boards/hifive1b/include/periph_conf.h b/boards/hifive1b/include/periph_conf.h index fb1ab80388..c611a17f26 100644 --- a/boards/hifive1b/include/periph_conf.h +++ b/boards/hifive1b/include/periph_conf.h @@ -51,8 +51,8 @@ static const uart_conf_t uart_config[] = { }, { .addr = UART1_CTRL_ADDR, - .rx = GPIO_PIN(0, 18), - .tx = GPIO_PIN(0, 23), + .rx = GPIO_PIN(0, 23), + .tx = GPIO_PIN(0, 18), .isr_num = INT_UART1_BASE, }, };