You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
1.0 KiB

#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_ */