> Dimensioned variables are not accepted by the compiler e.g.: > > const prog_uint8_t eeprom[64];
Do Zero Length Arrays work in AVR GCC? I have never seen them used nor documented as such, but have never tried to use them. http://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html Try: const prog_uint8_t eeprom[0]; Why not initialize your array to the blank flash state? _______________________________________________ AVR-chat mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/avr-chat
