2015-07-06 03:31 AM
I'm using the STM32F4-Discovery_FW_V1.1.0.
I could find drivers to write the microcontroller flash. But now I Need to read the data back out of the ROM. Are there any drivers which offer such a function? #stm32-flash-read2015-07-06 03:45 AM
You don't need any driver to do that - the FLASH is memoy-mapped, you can read from it in the same way as you read from RAM.
JW2015-07-06 05:27 AM
Thanks a lot!