Hi,
I am trying to find where my application is wasting time.
To get this I am using UIA I have anabled task,swi and hwi using this configuration in cfg file:
var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
/* Increase the sysbios logger and turn Hwi and Swi logging off */
LoggingSetup.sysbiosLoggerSize = 32768;
LoggingSetup.mainLoggerSize = 8*1024;
LoggingSetup.loadLoggerSize = 32768;
LoggingSetup.loadLogging = true;
LoggingSetup.sysbiosTaskLogging = true;
LoggingSetup.sysbiosSwiLogging = true;
LoggingSetup.sysbiosHwiLogging = true;
LoggingSetup.eventUploadMode = LoggingSetup.UploadMode_NONJTAGTRANSPORT;
the application use ndk DaemonNew to create a udp connection and the callback function
doesn´t appear in Execution graph.
It would be good to have this callback function in execution graph to get how much cycles is
consuming.
Could tell me if this is possible or what alternatives I have?
Thanks in advance.
Julian