cc1310 nortos rfEasyLinkRx例程要怎么样才能使用printf打印log
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.
int count=10;
Display_Handle display;
display = Display_open(Display_Type_HOST, NULL);
Display_printf(display, 0, 0, "Count = %d and it's address is 0x%x\n", count, &count);
这段代码 编译可以通过 但是uart上没有打印log出来,用UART_write的api可以打印字符到串口工具上