Skip to content

Commit

Permalink
z1: Fix UART pin assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Joelfp committed Mar 30, 2016
1 parent 01d95af commit 28d0097
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions boards/z1/include/periph_conf.h
Expand Up @@ -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)
/** @} */
Expand Down

0 comments on commit 28d0097

Please sign in to comment.