2016-03-02 6:57 AM
Good morning to everyone.
I am trying to erase a flash memory block. I am try not to use the drivers. As now, I managed to program individual memory cells of the flash memory with storage data, following the Reference Manual at page 6 Now, in order to store new values, I want to programmatically erase a flash memory block following the guide at page 6 I use the following code:CFLASH.MCR.R = CFLASH.MCR.R | 0x4; /* Change the value of MCR[ERS] bit from 0 to 1. */
CFLASH.HBS.B.HSL = 0b01; /* Select H0 flash memory block: High Address Space starting at 0x0008_0000*/
*(ULONG*)0x00080000 = 1; /* Interlock writing as per RM pag 6*/
CFLASH.MCR.R = CFLASH.MCR.R | 0x1; /* Set MCR[EHV] to 1, in order to start an internal erase sequnece. */
/*... unreachable code. */2016-04-08 1:46 AM
2016-04-08 1:47 AM
screenshot here
________________ Attachments : 2016-04-08_104205.png : https://st--c.eu10.content.force.com/sfc/dist/version/download/?oid=00Db0000000YtG6&ids=0680X000006qWdT&d=%2Fa%2F0X0000000boS%2FW_iJvckj2YOagM.FKDQaQl6Q8DSypU48UOtvE4Z9iag&asPdf=false2016-05-03 8:39 AM
Hello Erwan.
I found the driver of which you spoke and learned to use it. Now the issue is solved.Thank you,Ivan