Skip to main content
mikegibson9
Visitor II
December 29, 2015
Question

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

  • December 29, 2015
  • 1 reply
  • 507 views
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.

    This topic has been closed for replies.

    1 reply

    Tesla DeLorean
    Guru
    December 29, 2015
    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 VenmoUp vote any posts that you find helpful, it shows what's working..