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

cc1312-launchpad: add UART1 configuration

Signed-off-by: Jean Pierre Dudey <jeandudey@hotmail.com>
This commit is contained in:
Jean Pierre Dudey 2020-04-14 18:41:31 -05:00
parent d4084d6df9
commit 9d27000b65
No known key found for this signature in database
GPG Key ID: 631A70D74E41F1AD

View File

@ -90,7 +90,17 @@ static const uart_conf_t uart_config[] = {
.cts_pin = 19,
#endif
.intn = UART0_IRQN
}
},
{
.regs = UART1,
.tx_pin = 11,
.rx_pin = 12,
#ifdef MODULE_PERIPH_UART_HW_FC
.rts_pin = 8,
.cts_pin = 9,
#endif
.intn = UART1_IRQN
}
};
#define UART_NUMOF ARRAY_SIZE(uart_config)
/** @} */