cancel
Showing results for 
Search instead for 
Did you mean: 

After I erased the flash in STM32L073RZ when I looked at the flash using the cube program, the memory values are 00000000. I checked the same thing with STM32WB55 and its values are FFFFFFFF. why it is different?

MImda.1
Associate III
 
1 ACCEPTED SOLUTION

Accepted Solutions
Uwe Bonnes
Principal III

Erased state of L0 and L1 is 0, all other STM32 I know have erased state 0xff

View solution in original post

3 REPLIES 3
Uwe Bonnes
Principal III

Erased state of L0 and L1 is 0, all other STM32 I know have erased state 0xff

Peter BENSCH
ST Employee

The reason for what @Uwe Bonnes​ said is the technology of the Non Volatile Memory (NVM):

  • STM32L0/L1 uses EEPROM (erased = 0) with organization in bytes
  • other STM32 use Flash (erased = 1) with organization in sectors

Regards

/Peter

In order to give better visibility on the answered topics, please click on Accept as Solution on the reply which solved your issue or answered your question.
MImda.1
Associate III

thank you so much. It cleared my knowledge