From 28d0097e5b51d37bc9d84085369c39a4a587e643 Mon Sep 17 00:00:00 2001 From: Joel Palomino Date: Tue, 29 Mar 2016 20:17:33 -0500 Subject: [PATCH] z1: Fix UART pin assignment --- boards/z1/include/periph_conf.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/boards/z1/include/periph_conf.h b/boards/z1/include/periph_conf.h index cc04401dd3..060e2e46f8 100644 --- a/boards/z1/include/periph_conf.h +++ b/boards/z1/include/periph_conf.h @@ -59,10 +59,10 @@ extern "C" { #define UART_IF (SFR->IFG2) #define UART_IE_RX_BIT (1 << 0) #define UART_IE_TX_BIT (1 << 1) -#define UART_RX_PORT ((msp_port_isr_t *)PORT_2) -#define UART_RX_PIN (1 << 2) -#define UART_TX_PORT ((msp_port_isr_t *)PORT_1) -#define UART_TX_PIN (1 << 1) +#define UART_RX_PORT ((msp_port_t *)PORT_3) +#define UART_RX_PIN (1 << 5) +#define UART_TX_PORT ((msp_port_t *)PORT_3) +#define UART_TX_PIN (1 << 4) #define UART_RX_ISR (USCIAB0RX_VECTOR) #define UART_TX_ISR (USCIAB0TX_VECTOR) /** @} */