Tool/software: Code Composer Studio
Hello all,
I am trying to do some high level debugging of the cc2650 sensortag and noticed when I call System_printf() multiple times the contents are not displayed after the first call.
Example, if I do something like:
System_printf("hello world 1\n");
System_printf("hello world 2\n");
System_printf("hello world 3\n");
I would expect to be displayed:
hello world 1 hello world 2 hello world 3
However, only "hello world 1" is displayed and the rest are not.
As is the usual case for these type of questions, I am pretty new to developing in CCS and the Sensortag and fairly new to C in general so any enlightenment would be helpful.
My app_ble.cfg file looks like:
utils.importFile("../../../../../src/common/cc26xx/kernel/cc2640/config/cc2640.cfg");
/*
* Extend the cc2640 configuration
*/
var SysStd = xdc.useModule("xdc.runtime.SysStd");
var System = xdc.useModule("xdc.runtime.System");
System.SupportProxy = SysStd;

