Quote:
|
Originally Posted by miketwalker
I'm only using 86% of the memory... so why is it building when I comment some code out (and it isnt too much I have to comment out) yet I still seem to have a reasonable bit of memory to work with?
|
Microchip's C compiler has a limit on the amount of space that any one object file can consume (yes, it seems dumb to me too), so this is probably why you're seeing the error. Try moving some functionality from that file (probably adcread.c?) to another file instead.