cancel
Showing results for 
Search instead for 
Did you mean: 

Flash a hex file for a TI CC2450 into an SMT32F427.

mikegibson9
Associate
Posted on December 29, 2015 at 17:52

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.

1 REPLY 1
Posted on December 29, 2015 at 19:13

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.

Tips, buy me a coffee, or three.. PayPal Venmo Up vote any posts that you find helpful, it shows what's working..