diff --git a/esp3d/src/core/espcmd/ESP800.cpp b/esp3d/src/core/espcmd/ESP800.cpp index 043e9b1c..51859a10 100644 --- a/esp3d/src/core/espcmd/ESP800.cpp +++ b/esp3d/src/core/espcmd/ESP800.cpp @@ -71,6 +71,10 @@ bool Commands::ESP800(const char* cmd_params, level_authenticate_type auth_type, } } #endif //TIMESTAMP_FEATURE + parameter = get_param (cmd_params, "setup="); + if(parameter.length() > 0) { + Settings_ESP3D::write_byte (ESP_SETUP, parameter =="0"?0:1); + } //FW version if (plain) { output->print("FW version:"); diff --git a/esp3d/src/include/version.h b/esp3d/src/include/version.h index 2d96a543..f94aa8ea 100644 --- a/esp3d/src/include/version.h +++ b/esp3d/src/include/version.h @@ -22,7 +22,7 @@ #define _VERSION_ESP3D_H //version and sources location -#define FW_VERSION "3.0.0.a68" +#define FW_VERSION "3.0.0.a69" #define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0" #endif //_VERSION_ESP3D_H