diff --git a/esp3d/src/core/espcmd/ESP420.cpp b/esp3d/src/core/espcmd/ESP420.cpp index 99c83cfa..765511a4 100644 --- a/esp3d/src/core/espcmd/ESP420.cpp +++ b/esp3d/src/core/espcmd/ESP420.cpp @@ -1232,6 +1232,22 @@ bool Commands::ESP420(const char* cmd_params, level_authenticate_type auth_type, output->printLN(""); } #endif //ESP_DEBUG_FEATURE + + //Target Firmware + if (!plain) { + output->print (",{\"id\":\"targetfw"); + } else output->print ("Target Fw"); + if (!plain) { + output->print ("\",\"value\":\""); + } else { + output->print (": "); + } + output->print (Settings_ESP3D::GetFirmwareTargetShortName()); + if (!plain) { + output->print ("\"}"); + } else { + output->printLN(""); + } //FW version if (!plain) { output->print (",{\"id\":\""); diff --git a/esp3d/src/include/version.h b/esp3d/src/include/version.h index 8079b848..5bd46fef 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.a47" +#define FW_VERSION "3.0.0.a48" #define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0" #endif //_VERSION_ESP3D_H