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.
Tool/software: Code Composer Studio
Hello everybody ,
I am using dual core F28377D . now everything is working both on CPU1 and CPU2 , I am working on internal Flash
to run a debug session on CPU2 , I manually load CPU1 run it ( to get pin config etc ) than manually connect to CPU2 , load , run adn debug .
I would like to automate this sequence , so to click a command and get CPU1 loaded run then connect to CPU2 etc : how to make this happen ?
how coudl a generate a command sequence for the debugger ?
I m on CCS8 and BlackHawk emulator
thank you very much
regards
Carlo
Carlo,
I think the best bet would be to utilize the scripting console to sequence the connect/load/run across multiple cores.
http://software-dl.ti.com/ccs/esd/documents/ccsv7_scripting_console.html
There is processor grouping in the CCS environment, but I think this is just to send the same command(run/step/etc) to multiple cores. I suspect this is more for debugging once the code is loaded across targets.
There is also the option of the debug scripting server, which would be written in java
http://software-dl.ti.com/ccs/esd/documents/users_guide/sdto_dss_handbook.html
Best,
Matthew
Carlo,
Let's try this link http://software-dl.ti.com/ccs/esd/documents/ccsv7_scripting_console.html#examples This page has the syntax listing, and a video using F2837x.
Let me ask around if some folks have written some examples C28x specific as well.
There are examples of both in the base CCS install:
C:\ti\ccsv8\ccs_base\scripting\examples\DebugServerExamples
The Scripting Console is just an instance of the DSS opened locally inside CCS. So the Debug Server examples are valid for both.
Matt