1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-29 09:10:03 +02:00

Merge pull request #199 from luc-github/devt_6x

Devt 6x
This commit is contained in:
bdring
2019-08-29 09:30:12 -05:00
committed by GitHub
3 changed files with 5 additions and 2 deletions

View File

@@ -1983,10 +1983,13 @@ bool COMMANDS::execute_internal_command (int cmd, String cmd_params, level_authe
resp += " # webcommunication: Sync: ";
resp += String(web_server.port() + 1);
#endif
resp += "# hostname:";
resp += " # hostname:";
resp += wifi_config.Hostname();
if (WiFi.getMode() == WIFI_AP)resp += "(AP mode)";
#endif
//to save time in decoding `?`
resp += " # axis:";
resp += String(N_AXIS);
if (espresponse)espresponse->println (resp.c_str());
}
break;

Binary file not shown.

View File

@@ -20,7 +20,7 @@
// Grbl versioning system
#define GRBL_VERSION "1.1f"
#define GRBL_VERSION_BUILD "20190828"
#define GRBL_VERSION_BUILD "20190829"
//#include <sdkconfig.h>
#include <Arduino.h>