mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-31 14:12:52 +00:00
🩹 Fix 'hdsl' warning
This commit is contained in:
parent
e4ca822dcf
commit
152ec49b8b
1 changed files with 5 additions and 3 deletions
|
@ -3203,9 +3203,11 @@ void MarlinSettings::reset() {
|
||||||
|
|
||||||
postprocess();
|
postprocess();
|
||||||
|
|
||||||
FSTR_P const hdsl = F("Hardcoded Default Settings Loaded");
|
#if EITHER(EEPROM_CHITCHAT, DEBUG_LEVELING_FEATURE)
|
||||||
TERN_(HOST_EEPROM_CHITCHAT, hostui.notify(hdsl));
|
FSTR_P const hdsl = F("Hardcoded Default Settings Loaded");
|
||||||
DEBUG_ECHO_START(); DEBUG_ECHOLNF(hdsl);
|
TERN_(HOST_EEPROM_CHITCHAT, hostui.notify(hdsl));
|
||||||
|
DEBUG_ECHO_START(); DEBUG_ECHOLNF(hdsl);
|
||||||
|
#endif
|
||||||
|
|
||||||
TERN_(EXTENSIBLE_UI, ExtUI::onFactoryReset());
|
TERN_(EXTENSIBLE_UI, ExtUI::onFactoryReset());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue