|
|||||||||||
Technical Support Support Resources
Product Information |
GENERAL: Creating C Files from Binary or Hex DataInformation in this article applies to:
QUESTIONI have some binary data that I want to convert to a C array to use in my application. What's the best way to do this? ANSWERYou may want to consider using the free srec_cat.exe utility which is available as Windows EXE file from https://sourceforge.net/projects/srecord/files/srecord-win32. It is part of the SRecord project hosted on sourceforge.net. With this utility, you can load one or multiple HEX or BINARY files and store the data into an C-source file as an initialized C const array. Since a few parameters are necessary to specify all filenames and the name of the C-array, it is easier to invoke srec_cat.exe with a command file. With the following command file MyBin2Const.cmd, srec_cat.exe reads the file MyBinFile.bin and creates the files MyBinFile.c and MyBinFile.h which contain a const array with the name MyBinaryImage[].
When a hex file should be converted, exchange 'MyBinFile.bin -Binary' with 'MyHexFile.hex -Intel'. Example for a created MyBinFile.c file:
The generated C-source file MyBinFile.c can be added to the µVision project. The header file MyBinFile.h contains the declarations for the two variables MyBinaryImage[] and MyBinaryImage_length and can be included in other C-source files which need a reference to the binary data. You can invoke srec_cat.exe from a Windows command prompt or Make tool:
You can also invoke this tool after each project build/rebuild by specifying its invocation in the µVision dialog Options for Target - User - After Build/Rebuild. You may use µVision key sequences for the invocation. When using a command file for srec_cat.exe, be sure to double the '@' character, or µVision might interpret it as a key-sequence.
For a full description of all srec_cat.exe parameters, refer to the SRecord Reference Manual. Here are some options which are useful with Keil tools:
MORE INFORMATION
SEE ALSO
Last Reviewed: Thursday, February 25, 2021 | ||||||||||
|
Arm’s Privacy Policy has been updated. By continuing to use our site, you consent to Arm’s Privacy Policy. Please review our Privacy Policy to learn more about our collection, use and transfers
of your data.