Merge pull request #55 from loredan/master
Partial fix for #54 requires one other edit to fix the bug completely, merging for now and will fix after
This commit is contained in:
commit
a0cc8b4ac7
2 changed files with 2 additions and 2 deletions
|
|
@ -60,7 +60,7 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
void resetEEPROM();
|
||||||
void restoreConfig();
|
void restoreConfig();
|
||||||
void resetConfig();
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
@ -223,7 +223,7 @@ void updateParams() {
|
||||||
serialPrintConfig();
|
serialPrintConfig();
|
||||||
}
|
}
|
||||||
else if (strcmp(serialMessageIn, "RESET") == 0) {
|
else if (strcmp(serialMessageIn, "RESET") == 0) {
|
||||||
resetConfig();
|
resetEEPROM();
|
||||||
serialPrintConfig();
|
serialPrintConfig();
|
||||||
}
|
}
|
||||||
else if (strcmp(serialMessageIn, "STATE") == 0) {
|
else if (strcmp(serialMessageIn, "STATE") == 0) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue