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 4.0.1.01001: Multiple OUT files for the same target CPU

Is there a way to load more then one OUT file symbols into the same target CPU?

Is there a way to associate linked to a project binaries to a CPU in multi-processor system?

This was possible in pre-CCSv4. Can someone help with this in CCSv4?

Eugene

  •  

    Yes. Once in debug perspective, you should see the option Target -> Add Symbols. This will allow you to add multiple symbols to same core.

    To debug multi-processing environment effectively, you should read the "Multi Core Debug" topic in the CCS medieWiki, especially the section on scripting multiple cores. With scripting, you can automate a lot of the pre-setup tasks, like loading particular out files for each cores, running to main, etc.

    http://tiexpressdsp.com/index.php/Multi-Core_Debug_with_CCS

     

  • Hi Raju,

    Is there a way to auto load/run script or call script function upon the start of the debug session from CCS GUI? I can not located this. Can you help?

    Eugene

  • Eugene,

    The loadJSFile command takes two parameters. The first is the script path and name. The second is a boolean where is set to true, it will auto load/run the script next time the Scripting Console is opened.

    ------

    loadJSFile(file,store)
    Description: Load a JavaScript file or all the JavaScript files in the directory.
    Arguments:
      path - the JavaScript file or a directory.
      store - [optional] true, store the file(s) to the preference, the script will auto reload the next time the view is open.

    ---------

    Thanks

    ki

  • Would it be too much to ask if someone could take two example GEL files from CCSv3 and convert them into scripting file(s) for CCv4? These GEL files configure GUI based debug sessions under CCSv3. This might be good example of CCSv4 migration to post on the Wiki. I can provide files.

    Eugene