Don’t Follow These 5 Dangerous Coding Standard Rules « Barr Code
While “const XXX;” will cause the compiler to allocate space for XXX (possibly in ROM, depending on your tool chain), “static const XXX;” will often cause the compiler to optimize out the allocation — certainly the gnu compiler is pretty good about this f...