I have some large static arrays that I would like to reside in flash rather than in sram. Is there a directive or some syntax I can put in the declaration in C to tell the KEIL compiler to put the data in the flash segment?
Thanks.
Charlie
If your data is read only, make it const and the linker should then do the rest for you. If not, you have a bigger problem due to flash wearing off - but it depends on how often the data changes.