Other Parts Discussed in Thread: CC2650, SYSBIOS
Tool/software: TI-RTOS
I try to use System_printf() to print message to Console on debugger.
Currently setup :
- Using CC2650 Lauchpad XDS-110 connect to external CC2640 (no uart pins connected)
- Using C:\ti\simplelink\ble_sdk_2_02_01_18\examples\cc2650lp\simple_peripheral\ccs\app
- Using CCS V7
I following info from forum and doc. Had done following :
- In CCS project : TOOLS --> appl_ble.cfg
var SysStd = xdc.useModule('xdc.runtime.SysStd');
var System = xdc.useModule('xdc.runtime.System');
System.SupportProxy = SysStd;
- In c file
#include <xdc/runtime/System.h>
static void sensorDeviceTaskFxn(UArg a0, UArg a1)
{
System_printf("Device Task Init");
while(1)
{}
}
No message get print to Console in CCS debugger side.
My question always be, is all debug message still require UART pin connect between CC26xx and XDS ??
Thanks for your advice