Other Parts Discussed in Thread: SYSBIOS, CC2650
I've gone through several forum posts, tutorials, and documents and still seem to have trouble getting a simple Hello World statement to log.
processors.wiki.ti.com/.../SystemAnalyzerTutorial1_(CCSv6)
processors.wiki.ti.com/.../SystemAnalyzerTutorial1A
In my *.cfg file, I added:
var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
var LoggerStopMode = xdc.useModule('ti.uia.loggers.LoggerStopMode');
var Log = xdc.useModule('xdc.runtime.Log');
and in my source code, I added:
#include <xdc/std.h>
#include <xdc/runtime/Log.h>
....
Log_ing0("Hello World!");
and
int param = 100;
Log_warning1("Hello World!: %d",param1);
....
In my debug session, I go to Tools -> RTOS Analyzer -> Printf and Error Logs. Printf Logs is checked; Stop-Mode JTAG is the transport method.
When I run and halt, I see nothing in the new Live Session or Printf Logs that appear in the Debug view. I can't seem to get over this hump. Any advice?
Thanks,
Greg