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.

CC1310 UART

Other Parts Discussed in Thread: CC1310

Hi,

I am using the UART echo example and I am able to read and write messages from a terminal like Putty but when I connect a ublox board through the DIO2 and DIO3 pins and I can see the data flow only like debugging and it not allows to get that info with UART_read function. Please can anyone help me with this?

This are my setups for the UART:

UART_Params uartParams;
UART_Params_init(&uartParams);
uartParams.readMode = UART_MODE_BLOCKING;
uartParams.writeDataMode = UART_DATA_BINARY;
uartParams.readDataMode = UART_DATA_BINARY;
uartParams.readReturnMode = UART_RETURN_FULL;
uartParams.readEcho = UART_ECHO_OFF;
uartParams.baudRate = 115200;
return UART_open(Board_UART, &uartParams);

And I've tried changing the first param of UART_open function with Board_UART_RX and this only disables the possibility of write through the Putty terminal