some things where missing
This commit is contained in:
parent
b356054121
commit
fee5aec4d1
2 changed files with 5 additions and 3 deletions
|
@ -28,10 +28,12 @@ namespace fw
|
|||
};
|
||||
}
|
||||
return SUCCESS;
|
||||
#elif defined(ESP8266)
|
||||
return NO_ACTION;
|
||||
#endif
|
||||
}
|
||||
|
||||
ok_t Storage::setup_eeprom()
|
||||
void Storage::setup_eeprom()
|
||||
{
|
||||
#ifdef ESP8266
|
||||
EEPROM.begin(this->eeprom_size);
|
||||
|
@ -58,6 +60,7 @@ namespace fw
|
|||
return amount_of_rules;
|
||||
return 0;
|
||||
}
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue