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.

Debugserver and Debugsession functions descriptions?

Hi,

I am new to java and scripting. Could you please help me out for the documentation for different API's like given below:

debugServer.setConfig(), debugSession.callStack.print() ?

 

Thanks in advance.

Regards

Sudheer.

  • Hi Sudheer,

    If you are looking for the DSS API documentation, you can access it from:

    <CCS INSTALL DIR>/ccsv5/ccs_base/scripting/docs/GettingStarted.htm

    Unfortunately the documentation is a bit weak in some areas. If you need more information (or information is missing), please let me know.

    For the two APIs you mentioned:

    SUGAM gama said:
    debugServer.setConfig()

    This will configure the debug server for a specific target. Basically you are telling DSS for which target you want to talk to. It takes one parameter - a target configuration file (*.ccxml). This file has all the information DSS needs on what emulator/target (or simulator) you are trying to talk to.

    SUGAM gama said:
    debugSession.callStack.print()

    As per its name, it prints the call stack information for the application when the clal is made.

    Thanks

    ki

  • Thanks Ki, for your reply. This helped me out!!