compile fix

This commit is contained in:
folkert van heusden 2023-03-26 22:16:16 +02:00
parent 7e11eacd6f
commit 43b2e2ca93
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -399,6 +399,11 @@ void debugger(console *const cnsl, bus *const b, std::atomic_uint32_t *const sto
cnsl->put_string_lf("serspd requires an (decimal) parameter");
}
continue;
}
else if (cmd == "init") {
recall_configuration(cnsl);
continue;
}
#endif
@ -416,11 +421,6 @@ void debugger(console *const cnsl, bus *const b, std::atomic_uint32_t *const sto
continue;
}
else if (cmd == "init") {
recall_configuration(cnsl);
continue;
}
else if (cmd == "quit" || cmd == "q") {
#if defined(ESP32)
ESP.restart();