Hi,
We are testing the dfu ota example for the PCA10040. In our application we have some default values and settings are stored in the RAM. nrfutil is unable to generate the zip package for our hex file. It produces a "Memory Error".
Hi,
We are testing the dfu ota example for the PCA10040. In our application we have some default values and settings are stored in the RAM. nrfutil is unable to generate the zip package for our hex file. It produces a "Memory Error".
Check your .map file to see exact segment name, included in HEX, and then generate HEX from ELF using command
objcopy -O ihex -R <RAM_segment_name_here> your.elf your.hex
You can use more than one -R key during generation
Check your .map file to see exact segment name, included in HEX, and then generate HEX from ELF using command
objcopy -O ihex -R <RAM_segment_name_here> your.elf your.hex
You can use more than one -R key during generation