Error is on the "Settings setting EEMEM; " line "Expecting ";" instead of EEMEM
//Declare eeprom variables.
struct Settings{
uint8_e deviceNo;
float_e longitude;
float_e latitude;
uint8_e timezone;
uint16_e doorOpenValue; // 1023 external limit sensor, 1 = Read limit switch pin
uint16_e doorClosedValue; // Zero external limit sensor, 1 = Read limit switch pin
uint16_e closeDelay; // Minutes
uint16_e openDelay; // Minutes
uint16_e cycleTime; // Zero = No shelf/door installed
float_e rechargeTarget;
float_e rechargeMin;
float_e rechargeMax;
uint8_e motorRunMax;
uint16_e pressureTarget;
uint16_e pressureMin;
uint16_e pressureMax;
};
Settings setting EEMEM;
//EEMEM tells the compiler that the object resides in the EEPROM
Error is on the "Settings setting EEMEM; " line "Expecting ";" instead of EEMEM
//Declare eeprom variables.
struct Settings{
uint8_e deviceNo;
float_e longitude;
float_e latitude;
uint8_e timezone;
uint16_e doorOpenValue; // 1023 external limit sensor, 1 = Read limit switch pin
uint16_e doorClosedValue; // Zero external limit sensor, 1 = Read limit switch pin
uint16_e closeDelay; // Minutes
uint16_e openDelay; // Minutes
uint16_e cycleTime; // Zero = No shelf/door installed
float_e rechargeTarget;
float_e rechargeMin;
float_e rechargeMax;
uint8_e motorRunMax;
uint16_e pressureTarget;
uint16_e pressureMin;
uint16_e pressureMax;
};
Settings setting EEMEM;
//EEMEM tells the compiler that the object resides in the EEPROM