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.

LM3S92B92 - Build Question - Missing .exe's in CCS5.5

CCS champs,

We've recently upgraded to CCS5.5 and am have some trouble converting the object files to the hex files to be loaded onto our target the Stellaris LM3S92B92.  The project is unable to find the  ofd470.exe, hex470.exe, and XML_TI_OFD.pm files.  Googling the error message does not yield any prevelant information.

Here's the console output:

We'd like to better understand what the ofd470.exe, hex470.exe, and XML_TI_OFD.pm executables do and how to fix this error in CC5.5.

We've also built the "blinky" sample application for the LM3S92B92 in CCS 5.3 and received a similar output after the .out object file was generated.

Thanks!

 

  • Hi Mike,

    The issue is that all the TI ARM build tools (inside the compiler folder in CCS) have been renamed recently (probably starting with v5.0 of the compiler). Basically the '470' in the name has been replaced by 'arm'. So 'ofd470.exe' is now 'armofd.exe' and 'hex470.exe' is now 'armhex.exe'. Looks like the batch file (tiobj2bin.bat) that is called after the build is out of date and does not reflect those changes. You can modify the batch file and update it with the new names.

    Thanks

    ki