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.

CCS/MSP432P4111: MSP-EXP432P401R and UART communication

Part Number: MSP432P4111

Tool/software: Code Composer Studio

Hi,

I'm new with RTOS and I'm trying to connect a display to the MSP-EXP432P401R using UART1. In the display there is a keyboard and numbers are sent to the TI board, and then they are sent again to my laptop using UART0:

while(1) {

UART_read(uart1, &input, 1);

UART_write(uart, &input, 1);
}

The parameters are:

uartParams.writeDataMode = UART_DATA_BINARY;
uartParams.readDataMode = UART_DATA_BINARY;
uartParams.readReturnMode = UART_RETURN_FULL;
uartParams.readEcho = UART_ECHO_OFF;
uartParams.baudRate = 115200;

But I don't see anything in my terminal. I know that the display is working properly, so I can't understand why the MSP-EXP432P401R doesn't receive the numbers on UART1. 

Thanks.

Best regards,

Samuele