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.
Hi,
I am working on TMS320C6678 evm and install ccsV6 on my machine
I want to convert .out file into .hex file to flash on dsp
but not able to generate .hex file ,
can anyone please help me out.
Thanks,
Ajita
Ajita-
There is a post-build step to convert the .out file into the hex file. It will be similar to this:
"${CG_TOOL_HEX}" -i "${BuildArtifactFileName}" -o "${BuildArtifactFileBaseName}.hex" -order MS -romwidth 16
but with modifications because you are using a different processor than I am. Here is a reference I found helpful:
http://processors.wiki.ti.com/index.php/Projects_and_Build_Handbook_for_CCS#Pre_and_Post_Build_Steps
Thanks,
Scott