2023-04-27 04:30 AM
2023-04-27 06:26 AM
The keyword is "EEPROM emulation" - search for it. You may write it by yourself or use ST - supplied solution, there is an application note on this topic.
2023-04-27 06:26 AM
The keyword is "EEPROM emulation" - search for it. You may write it by yourself or use ST - supplied solution, there is an application note on this topic.
2023-04-27 07:37 AM
You don't really provide much context as to how much and how frequently this information will be changed/updated. How often the board/chip needs to reset or restart, etc.
NVRAM or BKPRAM related to the RTC would be preferable.
You can expand the life by journalling the data over an entire Flash sector/page before erasing, here you'd add updated values to the end of a list, and then retrieve the most recent upon reset/restart.
There is EEPROM Emulation, but it might help to understand the underlying methodology and function to decide if and how suitable that is.
2023-05-24 04:35 AM
Thank you, it helped me to achieve my requirement.
2023-05-24 05:19 AM
Thank You, I tried eeprom emulation concept and it helps for my project.