diff --git a/debugger.cpp b/debugger.cpp index daa9a42..192df3f 100644 --- a/debugger.cpp +++ b/debugger.cpp @@ -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();