Question
separating bitmaps from code
Posted on March 10, 2015 at 11:21
Hi All,
I'm on the tail end of a large development for an stm32 using gcc and openocd. As I add more code and bitmaps (for the LCD) I'm finding the load times getting rather long, mainly due to the bitmaps.I'd therefore like to split them up, so that the bitmaps reside somewhere in a fixed location in flash, seldom downloaded. while the code is stored elsewhere to be reloaded regularlyDoes anyone have any ideas on how this could be achieved simply and elegantly? I think it would be possible to effectively have two projects, one converted to binary format rather than elf, then loaded to a specific address. Just wondered if there was a better way of doing it. So far google hasn't thrown up anything obviousthanks in advance...