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

boards/nrf52840dk: configure uart flow control pins

This commit is contained in:
Alexandre Abadie 2018-12-16 12:10:23 +01:00
parent 336851e3bc
commit 190d48c5d3
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -35,6 +35,8 @@ static const uart_conf_t uart_config[] = {
.dev = NRF_UART0,
.rx_pin = GPIO_PIN(0,8),
.tx_pin = GPIO_PIN(0,6),
.rts_pin = GPIO_PIN(0,5),
.cts_pin = GPIO_PIN(0,7),
.irqn = UARTE0_UART0_IRQn,
},
};