Main Menu
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Topics - zappzapp

#1
ARM Cortex / LPC1768 Modify/Overwrite Flash
January 25, 2013, 04:00:09 AM
I am trying to patch new information into the flash of an already programmed device using FlashMagic.

Steps I have done so far:
- original program has a variable located far away from the other code in it's own flash-block (let's say size of 1 byte at 0x50000)
- this original program is flashed into the device and is working
- create a hex file that contains a new value (0xAB) for the formerly mentioned variable

:020000040005F5
:01000000AB54
:00000001FF

- now flash this hex file into the device, erasing only block 0x050000 - 0x057FFF (there is no program code within this block other than the variable)

After flashing, the memory looks like expected. 0xAB is shown at the correct position. The rest of the block has been reset to 0xFF.

However, the device does not execute any code whatsoever after a reset.

What am I missing here?
Does FlashMagic alter something else within the the controller?
Or does it have anything to do with that NXP valid code checksum thing?