Hi, I have a DFU unsecured zip file(for application), and I lost the original application .hex file.
Is there any way I can transform .zip back to .hex?
Sincerely, Frogofmagic
Hi, I have a DFU unsecured zip file(for application), and I lost the original application .hex file.
Is there any way I can transform .zip back to .hex?
Sincerely, Frogofmagic
Hi Shibshab, really really appreciate your answer !!!!
And this how I success :
Download bintohex tool hear.
unzip DFU .zip and get .bin file.
Use this command
srec_cat.exe DFUzip.bin -Binary -offset 0x1B000 -o Output.hex -Intel -address-length=3 -Output_Block_Size=16
0x1B000 is my application IROM1 start address.
I tried program .hex to my module and it works!
Hi Shibshab, really really appreciate your answer !!!!
And this how I success :
Download bintohex tool hear.
unzip DFU .zip and get .bin file.
Use this command
srec_cat.exe DFUzip.bin -Binary -offset 0x1B000 -o Output.hex -Intel -address-length=3 -Output_Block_Size=16
0x1B000 is my application IROM1 start address.
I tried program .hex to my module and it works!