This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Command line .hex flash programming

I have to use command line flash programming for a project . So I created a fake project similar thand the original one.
The problem is that I'm using a .ini for flash downloading to program a modfied .hex and not the axf file.
If I'm using command line , the .ini is ignored and uv4 want to flash an .axf file ...
How can I solve this problem ?

Parents
  • It's a part of a process where the hex code is patched with various CRCs and version numbers .
    Thats' why .hex are used with srec tools.

    That explains why you're producing a modified .hex file. It does not explain at all why you so aggressively insist on using a software development tool for what is obviously the job of a production programmer. Or to put it in a different way: if you're not going to be doing any debugging anyway, why even use the debugger?

    That pain you feel is from using a screwdriver to do what is the hammer's job.

Reply
  • It's a part of a process where the hex code is patched with various CRCs and version numbers .
    Thats' why .hex are used with srec tools.

    That explains why you're producing a modified .hex file. It does not explain at all why you so aggressively insist on using a software development tool for what is obviously the job of a production programmer. Or to put it in a different way: if you're not going to be doing any debugging anyway, why even use the debugger?

    That pain you feel is from using a screwdriver to do what is the hammer's job.

Children