Merge pull request #405 from MichaelDvP/v2

do not call shell while sending
This commit is contained in:
Proddy
2020-06-21 18:00:43 +02:00
committed by GitHub
4 changed files with 29 additions and 16 deletions

View File

@@ -434,7 +434,13 @@ void Console::loop() {
telnet_.loop();
#endif
#if defined(ESP8266)
if (!EMSuart::sending()) {
Shell::loop_all();
}
#else
Shell::loop_all();
#endif
}
} // namespace emsesp