Skip to content

Commit

Permalink
🐛 Fix ERR_EEPROM_NOPROM result (MarlinFirmware#27255)
Browse files Browse the repository at this point in the history
  • Loading branch information
ellensp authored Jul 10, 2024
1 parent 1153503 commit 17a1363
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1823,7 +1823,7 @@ void MarlinSettings::postprocess() {
EEPROM_Error eeprom_error = ERR_EEPROM_NOERR;

const EEPROM_Error check = check_version();
if (check == ERR_EEPROM_VERSION) return eeprom_error;
if (check == ERR_EEPROM_NOPROM) return eeprom_error;

uint16_t stored_crc;

Expand Down

0 comments on commit 17a1363

Please sign in to comment.