This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2652R7: how to open UART

Part Number: CC2652R7
Other Parts Discussed in Thread: SYSCONFIG

How do we programmatically setup another UART (specify pins) to interact with a peripheral device? Would these pins then map to a particular index? 

UART_init();
UART_Params_init(&uartParams);

handle = UART_open(<some_index>, &uartParams);
if ( handle == nullptr ) {  /* open always fails */ }