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.

How to define UART for show the debug log in CC2650 ?

Other Parts Discussed in Thread: CC2650, CC2640, CC2650STK

I am new to TI CC2650. I am developing in SimpleLink with SimpleBLEPeripheral. I want to show the log via UART.

The Code in Board.h is like the following:

/* UART Board */
#define Board_UART_RX IOID_1 /* RF1.7 */
#define Board_UART_TX IOID_0 /* RF1.9 */
#define Board_UART_CTS PIN_UNASSIGNED
#define Board_UART_RTS PIN_UNASSIGNED

And I am sure the UART of HW us connect to the IOID_1 and IOID_0.

But it did not show any log when I using Putty to open the COM PORT.

Does some one can direct me? Thanks in advance.