mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-10-19 02:31:32 +08:00
Fix ??? string to unknown for consistency
This commit is contained in:
parent
d0e7b1a29e
commit
b0d35c245b
@ -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
|
||||||
|
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user