I have a few look up tables I’m trying to define, and am running into problems with the C18 Linker.
The error I am getting is that the section I am loading these tables into is not big enough =/. Has anyone else used linker directives to get their large lookup tables to reside in a larger portion of memory? The table I am declaring is similar to this:
static const unsigned char mytable[256] = {
[mydata]
};
From what I’ve read so far, I need a #pragma linker directive to get this thing to go into a nice big chunk of program ROM.
Thanks in advance for the help!
-Shawn…