Add EEPROM_BOOT_SILENT option

This commit is contained in:
Scott Lahteine
2020-03-10 17:45:39 -05:00
parent 095a1123c1
commit 090a90a036
2 changed files with 4 additions and 1 deletions

View File

@ -2185,8 +2185,10 @@ void MarlinSettings::postprocess() {
}
#if ENABLED(EEPROM_CHITCHAT) && DISABLED(DISABLE_M503)
if (!validating) report();
// Report the EEPROM settings
if (!validating && (DISABLED(EEPROM_BOOT_SILENT) || IsRunning())) report();
#endif
EEPROM_FINISH();
return !eeprom_error;