0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-02-02 07:00:42 +00:00

🐛 Fix ERR_EEPROM_NOPROM result (#27255)

Followup to #27199
This commit is contained in:
ellensp 2024-07-10 14:15:34 +12:00 committed by GitHub
parent 115350317c
commit 17a1363f4d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;