2015-09-29 11:16 PM
I have discovery 4 (STM32F407)
I want to save some data to FLASH.I want to know which address/sectors should I write my data at. I know there are 11 sectors in the stm32f407 I am using GCC and the my firmware size is 2f5e0 (155436)2015-09-30 04:26 AM
How much data, and how often.
The easiest way would be to use the last 128KB block in memory, and then shrink the size presented in the linker script so it doesn't use that.You've got to floor-plan the memory to figure out where you want to put it. There have been several threads on this and the main STM32 page covering the use of the smaller/faster 16K pages toward the front of flash, and then creating a hole in the linker's scripts so it doesn't put code there. Might want to review those, and ponder a bit.2015-09-30 05:36 AM
Thank you.
the problem is this forum ''search'' feature does not work! so I cannot search older topics2015-09-30 08:52 AM
I'm not responsible for the sad state of the forum, I use Google to find my own stuff.