Skip to content

Commit

Permalink
Merge pull request RIOT-OS#5210 from gtrpucp/BOARD_Z1_FIX_UART
Browse files Browse the repository at this point in the history
Board z1: Fix UART pin assignment
  • Loading branch information
miri64 committed Mar 31, 2016
2 parents a41efb6 + 28d0097 commit dd0fe60
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions boards/z1/include/periph_conf.h
Original file line number Diff line number Diff line change
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 dd0fe60

Please sign in to comment.