Hello,
I am trrying to use UART driver from TI-RTOS. The problem is I dont know what to use as "someUART_configIndexValue" in UART_open.
Here is the code:
UART_Handle handle;
UART_Params params;
UART_Params_init(¶ms);
params.baudRate = 4800;
params.writeDataMode = UART_DATA_BINARY;
params.readDataMode = UART_DATA_BINARY;
params.readReturnMode = UART_RETURN_FULL;
params.readEcho = UART_ECHO_OFF;
params.dataLength = UART_LEN_8;
handle = UART_open(UART0, ¶ms);
if (!handle) {
System_printf("UART did not open");
}
My programming skills are below averange. Its not the yellow of the egg. If possible german answers, they are easier t understand.
Best Regards,
some Noob