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.

Using the UART driver for TX only

Other Parts Discussed in Thread: CC2650

Hi

I would like to use the uart of a CC2650 as a TX only port. I've tried to configure the uart like this:

const UARTCC26XX_HWAttrs uartCC26XXHWAttrs[1] = {
    {
        .baseAddr       = UART0_BASE,
        .intNum         = INT_UART0,
        .powerMngrId    = PERIPH_UART0,
        .txPin          = Debug_TX_Port,
        .rxPin          = PIN_UNASSIGNED,
        .ctsPin         = PIN_UNASSIGNED,
        .rtsPin         = PIN_UNASSIGNED
    }
};

but I'm not getting any output. If I assign .rxPin to a not yet used pin I'm getting the output as expected. Is it possible to use the uart in an tx-only fasion?