Hello
How are you trying to see modified data?
Are you Using CodeWarrior debugger and trying to see modified memory in there?
If that is the case you need to modify the Debug memory map and tell the debugger content of a FLASH block is subject to change when application is running.
Per default the debugger considers that content of flash memory remains unchanged when application runs.
In order to change that:
- Start the debugger the usual way
- In the Target menu (Multilink/CyclonePro, inDART-HC12, ...) select "Debugging Memory Map"
- Select the block (or blocks) of FLASH memory that you are reprogramming
- Click on "Modify/Details"
- Check the box "refresh memory when halting"
- Close the dialog with OK.
These settings will be stored in the debug project file (.ini) and you only need to configure it once for your project.
I hope this helps a bit.
CrasyCat