mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-23 12:04:19 +00:00
[2.0.x] EEPROM code cleanup (#10710)
This commit is contained in:
parent
8679f671ed
commit
d99f1b2245
@ -954,7 +954,6 @@ void MarlinSettings::postprocess() {
|
|||||||
SERIAL_ECHOPAIR_P(port, "(EEPROM=", stored_ver);
|
SERIAL_ECHOPAIR_P(port, "(EEPROM=", stored_ver);
|
||||||
SERIAL_ECHOLNPGM_P(port, " Marlin=" EEPROM_VERSION ")");
|
SERIAL_ECHOLNPGM_P(port, " Marlin=" EEPROM_VERSION ")");
|
||||||
#endif
|
#endif
|
||||||
if (!validating) reset();
|
|
||||||
eeprom_error = true;
|
eeprom_error = true;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -1511,15 +1510,13 @@ void MarlinSettings::postprocess() {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!validating) {
|
if (!validating && !eeprom_error) postprocess();
|
||||||
if (eeprom_error) reset(); else postprocess();
|
|
||||||
}
|
|
||||||
|
|
||||||
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
||||||
ubl.report_state();
|
|
||||||
|
|
||||||
if (!validating) {
|
if (!validating) {
|
||||||
if (!ubl.sanity_check()) {
|
ubl.report_state();
|
||||||
|
|
||||||
|
if (!ubl.sanity_check()) {
|
||||||
SERIAL_EOL_P(port);
|
SERIAL_EOL_P(port);
|
||||||
#if ENABLED(EEPROM_CHITCHAT)
|
#if ENABLED(EEPROM_CHITCHAT)
|
||||||
ubl.echo_name();
|
ubl.echo_name();
|
||||||
|
@ -45,15 +45,16 @@ class MarlinSettings {
|
|||||||
static bool save(PORTINIT_SOLO); // Return 'true' if data was saved
|
static bool save(PORTINIT_SOLO); // Return 'true' if data was saved
|
||||||
|
|
||||||
FORCE_INLINE static bool init_eeprom() {
|
FORCE_INLINE static bool init_eeprom() {
|
||||||
bool success = true;
|
|
||||||
reset();
|
reset();
|
||||||
#if ENABLED(EEPROM_SETTINGS)
|
#if ENABLED(EEPROM_SETTINGS)
|
||||||
success = save();
|
const bool success = save();
|
||||||
#if ENABLED(EEPROM_CHITCHAT)
|
#if ENABLED(EEPROM_CHITCHAT)
|
||||||
if (success) report();
|
if (success) report();
|
||||||
#endif
|
#endif
|
||||||
|
return success;
|
||||||
|
#else
|
||||||
|
return true;
|
||||||
#endif
|
#endif
|
||||||
return success;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if ENABLED(EEPROM_SETTINGS)
|
#if ENABLED(EEPROM_SETTINGS)
|
||||||
|
Loading…
Reference in New Issue
Block a user