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.

PROCESSOR-SDK-AM335X: Additional code required besides PINMUX

Part Number: PROCESSOR-SDK-AM335X

Folks I need to output a TX Enable signal.    I have a pinmux structure member like this....

static pinmuxPerCfg_t gUart1PinCfg[] =

{
{
/* MyUART1 -> uart1_rtsn -> D17 */
PIN_UART1_RTSN, 0, \
( \
PIN_MODE( 0 ) | \
((PIN_PULL_UD_EN) & (~PIN_PULL_TYPE_SEL & ~PIN_RX_ACTIVE)) \
) \
},
{PINMUX_INVALID_PIN}
};

My question is, do I need any other code to stitch together D17 ( ZCZ package ) with the UART?