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");
}