mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-05 20:16:04 +08:00
Fix the char ; blocking serial on Marlin - so use M117 and refresh IP at start when setup is done
This commit is contained in:
parent
268d492c3f
commit
b365cd95df
@ -231,7 +231,7 @@ size_t ESP3DOutput::printMSG(const char * s, bool withNL)
|
||||
break;
|
||||
case MARLIN:
|
||||
case MARLINKIMBRA:
|
||||
display = ";echo: ";
|
||||
display = "M117 ";
|
||||
display += s;
|
||||
break;
|
||||
case REPETIER4DV:
|
||||
|
@ -22,7 +22,7 @@
|
||||
#define _VERSION_ESP3D_H
|
||||
|
||||
//version and sources location
|
||||
#define FW_VERSION "3.0.0.a44"
|
||||
#define FW_VERSION "3.0.0.a45"
|
||||
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
|
||||
|
||||
#endif //_VERSION_ESP3D_H
|
||||
|
@ -87,7 +87,7 @@ bool NetServices::begin()
|
||||
bool res = true;
|
||||
_started = false;
|
||||
String hostname = Settings_ESP3D::read_string(ESP_HOSTNAME);
|
||||
ESP3DOutput output(ESP_SERIAL_CLIENT);
|
||||
ESP3DOutput output(ESP_ALL_CLIENTS);
|
||||
end();
|
||||
#ifdef TIMESTAMP_FEATURE
|
||||
if (WiFi.getMode() != WIFI_AP) {
|
||||
@ -280,6 +280,7 @@ bool NetServices::begin()
|
||||
if (!res) {
|
||||
end();
|
||||
}
|
||||
output.printMSG(NetConfig::localIP().c_str());
|
||||
_started = res;
|
||||
return _started;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user