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.

RTOS/CC1310: CC1310

Part Number: CC1310

Tool/software: TI-RTOS

Hello,

I'd like to use the System_printf for debug 

So I add to cfg file the following

var SysMin = xdc.useModule('xdc.runtime.SysMin');
SysMin.bufSize = 512; //128;
System.SupportProxy = SysMin;


In the task body I have the following

System_printf(" Beacon Ready\n ");

Unfortunately, I don't see any output on the console

I use for project TI v5.2.9 compiler, TI-RTOS for CC13xx and C26xx 2.21.9.06 and working on CCS v6.2.0.00050

Please help