fix telnet not starting

This commit is contained in:
Proddy
2023-01-13 18:17:31 +01:00
parent c35833fab1
commit 316dfd02e4

View File

@@ -1415,12 +1415,6 @@ void EMSESP::start() {
} }
#endif #endif
#ifndef EMSESP_STANDALONE
// start telnet
telnet_.default_write_timeout(1000);
telnet_.start();
#endif
// do a quick scan of the filesystem to see if we have a /config folder // do a quick scan of the filesystem to see if we have a /config folder
// so we know if this is a new install or not // so we know if this is a new install or not
#ifndef EMSESP_STANDALONE #ifndef EMSESP_STANDALONE
@@ -1504,8 +1498,9 @@ void EMSESP::loop() {
esp8266React.loop(); // web services esp8266React.loop(); // web services
system_.loop(); // does LED and checks system health, and syslog service system_.loop(); // does LED and checks system health, and syslog service
// if we're doing an OTA upload, skip MQTT and EMS // if we're doing an OTA upload, skip everything except from console refresh
if (!system_.upload_status()) { if (!system_.upload_status()) {
// service loops
webLogService.loop(); // log in Web UI webLogService.loop(); // log in Web UI
rxservice_.loop(); // process any incoming Rx telegrams rxservice_.loop(); // process any incoming Rx telegrams
shower_.loop(); // check for shower on/off shower_.loop(); // check for shower on/off
@@ -1526,7 +1521,7 @@ void EMSESP::loop() {
} }
#endif #endif
Shell::loop_all(); // consoles Shell::loop_all();
} }
} // namespace emsesp } // namespace emsesp