2022-03-01 11:58 PM
Hello, does anybody know how to read/write to internal flash memory in a STM32L071CB MCU using low level or any other method without having to use the HAL library ?
Solved! Go to Solution.
2022-03-02 12:18 AM
To read, you just... well... read it. In C, use a pointer with suitable type and value.
To write, read Writing/erasing the NVM subchapter of FLASH chapter in RM.
Note, that the erased state of 'L0 FLASH is 0.
JW
2022-03-02 12:18 AM
To read, you just... well... read it. In C, use a pointer with suitable type and value.
To write, read Writing/erasing the NVM subchapter of FLASH chapter in RM.
Note, that the erased state of 'L0 FLASH is 0.
JW
2022-03-02 12:40 AM
Thank you, I was searching in the wrong place.
Regards,
MM