From b1da9449ad1fdd8e00f0715256bb4ece73084d77 Mon Sep 17 00:00:00 2001 From: Marcel Peterkau Date: Sun, 2 Jun 2024 21:59:38 +0200 Subject: [PATCH] sanitycheck autocorrect of EEPROM now default. --- Software/src/eeprom.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Software/src/eeprom.cpp b/Software/src/eeprom.cpp index b094c65..0104f7e 100644 --- a/Software/src/eeprom.cpp +++ b/Software/src/eeprom.cpp @@ -157,7 +157,7 @@ void GetConfig_EEPROM() ConfigData.checksum = checksum; - uint32_t ConfigSanityCheckResult = ConfigSanityCheck(false); + uint32_t ConfigSanityCheckResult = ConfigSanityCheck(true); MaintainDTC(DTC_EEPROM_CFG_SANITY, (ConfigSanityCheckResult > 0), ConfigSanityCheckResult); }