Under "TI Drivers / UART" menu I selected the option "Data Direction" to "Send Only" and got the following error:
subdir_rules.mk:33: recipe for target 'syscfg/ti_drivers_config.obj' failed
"syscfg/ti_drivers_config.c", line 378: error #29: expected an expression
caused by the following struct (line 378 is the rxChannelIndex):
static const UARTCC32XXDMA_HWAttrsV1 uartCC32XXHWAttrs0 = {
.baseAddr = UART1_BASE,
.intNum = INT_UART1,
.intPriority = (~0),
.flowControl = UARTCC32XXDMA_FLOWCTRL_NONE,
.rxChannelIndex = ,
.txChannelIndex = UDMA_CH11_UARTA1_TX,
.rxPin = UARTCC32XXDMA_PIN_UNASSIGNED,
.txPin = UARTCC32XXDMA_PIN_55_UART1_TX,
.ctsPin = UARTCC32XXDMA_PIN_UNASSIGNED,
.rtsPin = UARTCC32XXDMA_PIN_UNASSIGNED,
.errorFxn = NULL
};
Did I missconfigure the tool/ecu somehow or is there a workaround for selecting SendOnly and to prevent this error?