How to R/W to internal flash memory without HAL library in a STM32L071CB MCU
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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.
- Labels:
-
STM32L0 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2022-03-02 12:40 AM
Thank you, I was searching in the wrong place.
Regards,
MM
