Scenario 1 - I have a customized bootloader for downloading appl image. After successful download and Copy of appl image to RAM a soft reset is performed.
But after the softreset the appl code doesn't runs.
I have a radar appl final *.bin file. I have generated a corresponding *.hex file with an offset added to the memory locations using srec_cat.exe
srec_cat.exe appl.bin -Binary -offset 0xC010000 -o appl.hex -Intel where 0xC010000 is the appl start address of ext. flash.
Here the new appl does't run after successful copy to RAM
Scenario 2 -
Actually the catch is that I have another appl with only MSS code.
*.hex generation using -
srec_cat.exe appl.bin -Binary -offset 0xC010000 -o appl.hex -Intel where 0xC010000 is the appl start address of ext. flash.
Here the new appl run after successful copy to RAM.
Am I missing something in the scenario 1???
Please tell.....