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.

CCS/CCSTUDIO: Way to turn off Cycle Accurate Tracing in DSS Scripting

Part Number: CCSTUDIO


Tool/software: Code Composer Studio

Is there a way to turn off Cycle Accurate Tracing in a DSS Script? I can't find a set property method in the documentation, like .setProperty("buffer Size", "64 kB") or something like that. Is it possible to do from a javascript DSS script?

  • Hi,

    I am not entirely sure what you mean by "Cycle Accurate Tracing", but if you would like to disable DSS trace you can simply comment out the line:
    script.traceBegin(XMLlogFile, "DefaultStylesheet.xsl");

    Otherwise you can set the Trace log to
    script.traceSetConsoleLevel(TraceLevel.OFF)
    script.traceSetFileLevel(TraceLevel.OFF);

    Does that help?
    Regards,
    Rafael
  • Rafael,


    Thanks for taking the time to respond to me. I did not explain myself well, let me try again. When you select Hardware Trace, in the Hardware Trace Analysis Configuration Dialog box, there is a button called "Advanced Settings". In the Advanced Properties dialog box that appears when you click said button, under the receiver pane, under Hardware Configuration -> Receiver Settings -> Receiver there is a setting called "Use cycle accurate tracing". Is there a way to turn this off in a DSS script? It appears that the default setting is to leave it on when running a trace in a DSS.


    Attached is the screenshot of the GUI config. I would like to turn off the red highlighted thing not in the GUI, but in a script.

  • Did you ever get a answer?