#ifndef EEMEM_H_ #define EEMEM_H_ #ifdef __cplusplus extern "C" { #endif //------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- typedef struct{ uint8_t BOOTFLAG; //DoNotMove uint8_t EEPROM_IDIBUS_InitGroup; //DoNotMove uint8_t EEPROM_SN[IDISN_VARP_LENGTH]; //DoNotMove //Add new things here // || // || // \/ } EEPROM_DATABLOCKS; //------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- __attribute__((__section__(".serialdata"))) EEPROM_DATABLOCKS EEBLOCK; //DYNAMIC PART //------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- #ifdef __cplusplus } #endif #endif /* EEMEM_H_ */