Tool/software: TI-RTOS
Hello collegues,
I need an advise of how to work with 2 UART in TI RTOS.
I can track with the debugger that it based on uart.c (part of TI-RTOS)
I have added the element in array
const UART_Config UART_config[] = {
{
.fxnTablePtr = &UARTTiva_fxnTable,
.object = &uartTivaObjects[0],
.hwAttrs = &uartTivaHWAttrs[0]
},
{ // I added this !!!
.fxnTablePtr = &UARTTiva_fxnTable,
.object = &uartTivaObjects[1],
.hwAttrs = &uartTivaHWAttrs[1]
},
{NULL, NULL, NULL}
};
but it doesnt help
the loop over this array is iterated in uart.c. and debugger doesn see my additions.
Must I recompile the TI-RTOS?
Is there other way?
Thanks