I am experimenting with using retained variables in my code to help the system recover from unexpected resets and crashes.
From what I have read in the forums, the SRAM is maintained during code flashes, but I’m wondering what happens if the new code being flashed has different retained variables than the code currently on the device. If I add, remove or reorder retained variables in my code, will the variables read from the wrong location in SRAM and cause problems?
Yes, you can run into problems when code changes the layout of retained variables.
I prefer to store the retained data in a struct, with a known identifier (magic bytes) and a version, to help prevent and recover from these situations.
Is there an easy way to detect when new code is flashed to the device so I can reinitialize the retained variables? Saving a know value to EEPROM jumps to mind, but I’m wondering if there is some flag or function to check this.