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.

AWR1843BOOST: Pinmux setting: Is it possible to set multiple PINs for UARTA Tx?

Expert 2050 points
Part Number: AWR1843BOOST

Is it possible to setup multiple PINs with UARTA Rx and UARTA Tx? Same question for UARTB TX and RX.

For ex. In below code, I want to setup both PIN N5 and R4 for UARTA TX. Does this code work? 

/* Setup the PINMUX to bring out the UART-1 */

Pinmux_Set_OverrideCtrl(SOC_XWR18XX_PINN5_PADBE, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL);
Pinmux_Set_FuncSel(SOC_XWR18XX_PINN5_PADBE, SOC_XWR18XX_PINN5_PADBE_MSS_UARTA_TX);

Pinmux_Set_OverrideCtrl(SOC_XWR18XX_PINR4_PADBF, PINMUX_OUTEN_RETAIN_HW_CTRL, PINMUX_INPEN_RETAIN_HW_CTRL);
Pinmux_Set_FuncSel(SOC_XWR18XX_PINR4_PADBF, SOC_XWR18XX_PINR4_PADBF_MSS_UARTA_TX);

Kind regards