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.

CC2650MODA: Unable to display over UART in Simple_Central or Simple_Peripheral example applications

Part Number: CC2650MODA

I have changed the Display initialization function to init using the ID Display_Type_UART. No params. I cannot get any UART communication using this method. I have also attempted to port UART_Write code from the UART echo example project, I am able to get UART communication from the main program, but not any tasks. Within tasks I am initializing UART with the following params.

UART_Params_init(&uartParams);
uartParams.writeDataMode = UART_DATA_BINARY;
uartParams.readDataMode = UART_DATA_BINARY;
uartParams.readReturnMode = UART_RETURN_FULL;
uartParams.readEcho = UART_ECHO_OFF;
uartParams.baudRate = 9600;