Other Parts Discussed in Thread: CCSTUDIO, CC1310
Tool/software: Code Composer Studio
Could someone give me a snip for CCSv7 projectSpec that enables the hex utility with options --intel and --memwidth=8.
Regards, TC.
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
Could someone give me a snip for CCSv7 projectSpec that enables the hex utility with options --intel and --memwidth=8.
Regards, TC.
There are attributes on the <project> element for enabling the hex tool and adding hex build options. Please see the XML schema file for projectspecs located at
"<ccs_install_dir>\ccsv7\eclipse\plugins\com.ti.ccstudio.project.templates_<version>\schema\projectSpec.xsd"
I haven't tested the exact syntax but something like the following should work:
<projectSpec>
<project
title="abc"
name="Example"
...
...
enableHexTool="true"
hexBuildOptions="--intel --memwidth=8"
</project>
</projectSpec>
Hope this helps!