I have a binary data file that I would like to program in flash at defined address on a nrf52 device
Which tool do you advise that generate hex intel file format by providing binary data filename and base address
Thanks
I have a binary data file that I would like to program in flash at defined address on a nrf52 device
Which tool do you advise that generate hex intel file format by providing binary data filename and base address
Thanks
Use arm-none-eabi-objcopy from GCC for ARM, it has various input output options and BIN to HEX is supported (you supply target address as parameter, see the documentation).
According to this page it should be something like this
arm-none-eabi-objcopy -I binary -O ihex filename.bin filename.hex
According to this page it should be something like this
arm-none-eabi-objcopy -I binary -O ihex filename.bin filename.hex