EMERGENCY! EPROM FULL error?!?

What does an error: EPROM FULL mean? I’ve gotten this every once in a while when using Debug statements, and just now I finished my autonomous code and got this error when trying to compile (no Debug’s at all). What does this error mean?

PLEASE HELP! last minute emergency!

It means you have filled up all of the program storage space on the stamp. How many programs do you have loaded to the RC? That’s the only way I can think of that you could fill your EPROM.

It means you’ve reached the 2kB (I think) limit of the bank you’re programming. You have two options: 1) optomize your code for size by converting repeated code into subroutines; 2) move some of the code to another bank. The 2nd option is your best bet.

Search the forums, IFI’s site, and Innovation FIRST for everything you can find about the RUN command and multi-bank programming.