2015-12-29 08:52 AM
How can I flash a hex file for a Texas Instruments CC2450 into the memory of an SMT32F427.I am using uVision and a Keil ULINK2 debugger.I need to have the STM32F427 program the CC2450.
2015-12-29 10:13 AM
A .HEX is usually a pretty inefficient way to represent binary data, nominally 2.5x bigger. Can you convert it to a binary blob, and then translate it into a .C byte array you can add to your project. Similarly you could take the .HEX and output it as a .C string array. Or could create your own file system or resource manager, where you can write the data to an external medium, or rebase the .HEX to load into a spare spot in the STM32's address space.
If the TI device need the data in a .HEX format, you'll need to be able to recreate that from the binary data. Review the .HEX format, and the TI expectations about how the data is presented.