2024-07-24 06:23 PM - last edited on 2024-07-24 06:59 PM by Tesla DeLorean
Hello
I'm using STM32F030C8.
I'm writing the code because I want to use the internal flash memory like rom.
Is there a set number of times I can write in internal flash memory?
If there is a related document, I would like to see it.
Thank you.
Solved! Go to Solution.
2024-07-24 07:02 PM
https://www.st.com/resource/en/datasheet/stm32f030c8.pdf
Endurance 1000 cycles
2024-07-24 07:02 PM
https://www.st.com/resource/en/datasheet/stm32f030c8.pdf
Endurance 1000 cycles
2024-07-24 07:18 PM
1 cycle means 1 time write?
2024-07-24 07:50 PM
You can journal across all the flash words in a page, you may write each flash word once.
You must erase page before changing content, you can erase each page >= 1000 times
2024-07-24 08:02 PM
1 cycle = 1 erase + 1 write
2024-07-24 08:04 PM
Thank you.
Now I understand about that.
I am always grateful for your response.