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) {
output->printMSG("STATIC");
} else {
output->printMSG("???");
output->printMSG("Unknown");
}
} else { //set
#ifdef AUTHENTICATION_FEATURE

View File

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