STM32L433RC Flash Memory Map
Hi, I'm working with a NUCLEO-L433RC board and I'm trying to use storage_on_flash library (
https://os.mbed.com/teams/mbed_controller/code/storage_on_flash/file/2bb58064d0a2/SOFBlock.h/
)This library works well on the NUCLEO-F401/F411 board. Inside the file 'SOF_dev_stm32_f4xx.cpp' I can see the Flash Memory Sector Address structure.
&sharpif defined(STM32F401xE) || defined(STM32F411xE) || defined(STM32F407xx)
static const SOF_SectorSpec_t _sec_spec[] = { {FLASH_SECTOR_0, 0x08000000, 16*1024}, {FLASH_SECTOR_1, 0x08004000, 16*1024}, {FLASH_SECTOR_2, 0x08008000, 16*1024}, {FLASH_SECTOR_3, 0x0800C000, 16*1024}, {FLASH_SECTOR_4, 0x08010000, 64*1024}, {FLASH_SECTOR_5, 0x08020000, 128*1024}, {FLASH_SECTOR_6, 0x08040000, 128*1024}, {FLASH_SECTOR_7, 0x08060000, 128*1024},};&sharpendif
The NucleoL433 board uses a STM32L433RC cpu that has different flash memory address.
Where I can find Flash Memory Sector Addresses for STM32L433RC
cpu?Can someone help me?
Thank you.
#mbed #flash-storage #nucleo-l433rc #stm32