add support for command line reset
This commit is contained in:
parent
5ef715227d
commit
a68b9b4971
@ -17,6 +17,11 @@ namespace Board {
|
|||||||
Task tReadCommand(TASK_IMMEDIATE, TASK_FOREVER, [](){
|
Task tReadCommand(TASK_IMMEDIATE, TASK_FOREVER, [](){
|
||||||
if (serialReader.readLine(Serial) > 0) {
|
if (serialReader.readLine(Serial) > 0) {
|
||||||
char* cmd = serialReader.getBuffer();
|
char* cmd = serialReader.getBuffer();
|
||||||
|
if (strcmp("reset", cmd) == 0) {
|
||||||
|
Serial.println("resetting...");
|
||||||
|
ESP.restart();
|
||||||
|
Serial.println("resetting failed");
|
||||||
|
}
|
||||||
runJsonCommand(cmd);
|
runJsonCommand(cmd);
|
||||||
}
|
}
|
||||||
}, &ts);
|
}, &ts);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user