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.

System Analyzer does not collect data.

Other Parts Discussed in Thread: CC1310, SYSBIOS

I am using CCS 6.1.2.00015 in Linux and I am trying to collect data with System Analyzer. I have a Spectrum Digital XDS200 connected to a CC1310, ROV is opened and the target is running. In Live Session window alongside the ROV window, I stop the collection. Nothing happens after this point. I am able to open and view the data from an example ccsv6/ccs_base/dvt_4.1.0.201507151655/AnalysisLibrary/DataProviders/CsvViewer/saSampleData.csv. I am using RTOS 2.14.03.28, Bios 6.42.03.35, UIA 2.00.0.2.39 and cc13xxware  2.01.00.16101. Here is relevant info from the project.cfg file.

var LoggingSetup = xdc.useModule('ti.uia.sysbios.LoggingSetup');
LoggingSetup.loggerType = LoggingSetup.LoggerType_STOPMODE;
LoggingSetup.sysbiosTaskLogging = true;
LoggingSetup.sysbiosSwiLogging = true;
LoggingSetup.sysbiosHwiLogging = true;
LoggingSetup.loadLogging = true;

  • Hi Bill,

    Did you suspend the target? The target must be stopped to allow CCS to read the data on the target when using STOPMODE.

    Which BIOS.libType are you using? If you are using non-instrumented the kernel does not log trace records. If you are using custom, you need to make sure BIOS.logsEnabled is set to true. Please note the code footprint will increase some since the Log calls in the kernel source code are now compiled into the code.

    The drivers use a different setting. By default the driver logging is off. To turn it on, you need the following.
    var TIRTOS = xdc.useModule('ti.tirtos.TIRTOS');
    TIRTOS.libType = TIRTOS.LibType_Instrumented;

    Again, with logging turned on in the drivers, the code footprint will be increased.
    Todd
  • Bill,

    I'm marking the above post as "Verify Answer" to close out the thread. If you feel there is more discussion on the topic, please feel free to "Reject Answer" and then "Reply".

    Todd