1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #5313 from kYc0o/cc2538dk_small_uart_fix

boards/cc2538dk: fix wrong UART CTS and RTS pins
This commit is contained in:
kYc0o 2016-04-18 00:18:10 +02:00
commit 4f3a40fb74

View File

@ -96,14 +96,14 @@ extern "C" {
/* UART 0 pin configuration */
#define UART_0_TX_PIN GPIO_PA1
#define UART_0_RX_PIN GPIO_PA0
#define UART_0_RTS_PIN GPIO_PD3
#define UART_0_CTS_PIN GPIO_PB0
/* UART 1 device configuration */
#define UART_1_DEV UART1
#define UART_1_IRQ UART1_IRQn
#define UART_1_ISR isr_uart1
/* UART 1 pin configuration */
#define UART_1_RTS_PIN GPIO_PD3
#define UART_1_CTS_PIN GPIO_PB0
/** @} */
/**