Fix ??? string to unknown for consistency

This commit is contained in:
Luc 2020-04-12 16:02:41 +02:00
parent d0e7b1a29e
commit b0d35c245b
2 changed files with 2 additions and 2 deletions

View File

@ -53,7 +53,7 @@ bool Commands::ESP102(const char* cmd_params, level_authenticate_type auth_type,
} else if (resp == STATIC_IP_MODE) { } else if (resp == STATIC_IP_MODE) {
output->printMSG("STATIC"); output->printMSG("STATIC");
} else { } else {
output->printMSG("???"); output->printMSG("Unknown");
} }
} else { //set } else { //set
#ifdef AUTHENTICATION_FEATURE #ifdef AUTHENTICATION_FEATURE

View File

@ -216,7 +216,7 @@ const char* Settings_ESP3D::GetFirmwareTargetShortName()
} else if ( _FirmwareTarget == GRBL) { } else if ( _FirmwareTarget == GRBL) {
response = F ("grbl"); response = F ("grbl");
} else { } else {
response = F ("???"); response = F ("unknown");
} }
return response.c_str(); return response.c_str();
} }