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.
18 lines
1004 B
18 lines
1004 B
#ifndef EEMEM_H_
|
|
#define EEMEM_H_
|
|
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
volatile typedef struct{
|
|
volatile uint8_t BOOTFLAG; //DoNotMove
|
|
volatile uint8_t EEPROM_IDIBUS_InitGroup; //DoNotMove
|
|
volatile uint8_t EEPROM_SN[IDISN_VARP_LENGTH]; //DoNotMove
|
|
|
|
//Add new things here
|
|
// ||
|
|
// ||
|
|
// \/
|
|
|
|
} EEPROM_DATABLOCKS;
|
|
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
const volatile EEMEM EEPROM_DATABLOCKS EEBLOCK; //DYNAMIC PART
|
|
//-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
|
|
#endif /* EEMEM_H_ */ |