2012-02-06 10:36 PM
Hello! I'm looking for information - how to initialize data (e.g. arrays, strucutures etc.) in flash memory. It isn't enough RAM memory for my programm. I'm using Atollic TrueSTUDIO®/STM32 Lite IDE. I think that it's very important topic. How can I it make with gnu compiler and linker?
2012-02-07 12:25 AM
if you define your variables as const they will define on flash
2012-02-07 01:30 AM
I thought it'll be much more difficult, but when a saw a *.map file all became clear!
It's nice that I don't need to modify this data. Thanks a lot.