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.

CC2652R: Basic Display/UART Function Standalone board

Part Number: CC2652R
Other Parts Discussed in Thread: SYSCONFIG

I want to use DIO_2 and DIO_3 for UART on a standalone board. This is my configuration in SysConfig and code. When I put Tx on a scope I don't see anything—am I missing something simple here? These lines don't need a pull-up or something do they?

#include <ti/display/Display.h>
...

Display_Handle dispHandle = NULL;

dispHandle = Display_open(Display_Type_ANY, NULL);

while(1) {
	Display_printf(dispHandle, 0, 0, "abc");
}