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.

Out to Bin conversion

Other Parts Discussed in Thread: AM3894, CCSTUDIO

Hi

 i am new user to CCS. i am trying to run few sample application on ti am3894 (cortex a8) processor. i built the one sample project and i am getting .out as output; to convert into binary i used the "${CCS_INSTALL_ROOT}/utils/tiobj2bin/tiobj2bin.bat" "${BuildArtifactFileName}" "${BuildArtifactFileBaseName}.bin" "${CG_TOOL_ROOT}/bin/armofd.exe" "${CG_TOOL_ROOT}/bin/armhex.exe" "${CCS_INSTALL_ROOT}/utils/tiobj2bin/mkhex4bin.exe" in post build. i am getting below mentioned error.

C:/Program Files/Texas Instruments/ccsv5/utils/gmake/gmake --no-print-directory post-build
"C:/Program Files/Texas Instruments/ccsv5/utils/tiobj2bin/tiobj2bin.bat" "uart_loopback.out" "uart_loopback.bin" "C:/Program Files/Texas Instruments/ccsv5/tools/compiler/tms470/bin/armofd.exe" "C:/Program Files/Texas Instruments/ccsv5/tools/compiler/tms470/bin/armhex.exe" "C:/Program Files/Texas Instruments/ccsv5/utils/tiobj2bin/mkhex4bin.exe"
The system cannot find the path specified.
gmake[1]: [post-build] Error 1 (ignored)

i tried to copy all the exe into single folder and ran through  command prompt.

gmake --no-print-directory post-build "tiobj2bin.bat" "uart_loopback.out" "uart_loopback.bin" "ofd470.exe" "hex470.exe" "mkhex4bin.exe"

and the output is

"C:/Program Files/Texas Instruments/ccsv5/utils/tiobj2bin/tiobj2bin.bat" "uart_l
oopback.out" "uart_loopback.bin" "C:/Program Files/Texas Instruments/ccsv5/tools
/compiler/tms470/bin/armofd.exe" "C:/Program Files/Texas Instruments/ccsv5/tools
/compiler/tms470/bin/armhex.exe" "C:/Program Files/Texas Instruments/ccsv5/utils
/tiobj2bin/mkhex4bin.exe"
The system cannot find the path specified.
gmake: [post-build] Error 1 (ignored)
' '
gmake: Nothing to be done for `tiobj2bin.bat'.
gmake: `uart_loopback.out' is up to date.
gmake: *** No rule to make target `uart_loopback.bin'.  Stop.

one more try i done is below


D:\CCS\uart_loopback\Debug>gmake "tiobj2bin.bat" "uart_loopback.out" "uart_loopb
ack.bin" "ofd470.exe" "hex470.exe" "mkhex4bin.exe"
gmake: Nothing to be done for `tiobj2bin.bat'.
gmake: `uart_loopback.out' is up to date.
gmake: *** No rule to make target `uart_loopback.bin'.  Stop.

how to generate .bin?

 

I have tried with command prompt >tiobj2bin.bat  uart_loopback.out uart_loopb ack.bin

its generating binary file with default settings. will it work same as the process suggested by CCS?

Sankar