Part Number:TMS570LS3137
Tool/software: Code Composer Studio
Hello,
On CCS 8, on post-build steps, I wanto call an executable which will run a custom CRC algorithm and generate a new binary file with the CRC value saved in e..g
"${CCE_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin" "${BuildArtifactFileName}" "${BuildArtifactFileBaseName}.bin" "${CG_TOOL_ROOT}/bin/armofd" "${CG_TOOL_ROOT}/bin/armhex" "${CCE_INSTALL_ROOT}/utils/tiobj2bin/mkhex4bin"
and then call:
mycustomapp.exe "${BuildArtifactFileBaseName}.bin" // "${BuildArtifactFileBaseName}.bin" is the input
and ouput file will be "${BuildArtifactFileBaseName}_modified.bin" with CRC saved at the beginning of this file.
when debugging on CCS, I want this "${BuildArtifactFileBaseName}_modified.bin" to be loaded so that I can retrieve CRC value.
how could I tell to the CCS to load "${BuildArtifactFileBaseName}_modified.bin" when debugging?
thank you in advance,