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.
Hello,
I think this question has been asked before but I wasn't happy with the answer, I'm trying to setup an automatic compiling of the project and downloading to target and capture output results, I got this far as to do automatic compile from command line using CCSv5 command line Build Project, the next questions is how to download code automatically to the target without me pressing "Debug" button and then how can I capture the Console output? I'm using EVMC6748, if that helps.
Thank you in advance,
David.
Hi David,
David Luca said:he next questions is how to download code automatically to the target without me pressing "Debug" button and then how can I capture the Console output?
If all you want to do is download and run the code and capture console output, you can just use 'loadti' and the redirect the outout to a file. It is a command line loader:
http://processors.wiki.ti.com/index.php/Loadti
> loadti -c myTarget.ccxml myOutfile.out > output.txt
If you want to do some more fancy custom automation (set watchpoints, etc), you can write your own DSS script:
http://processors.wiki.ti.com/index.php/Debug_Server_Scripting
Thanks
ki