diff --git a/Software/data_src/static/tt_dtc/dtc_13.json b/Software/data_src/static/tt_dtc/dtc_13.json index f7fea72..d16920a 100644 --- a/Software/data_src/static/tt_dtc/dtc_13.json +++ b/Software/data_src/static/tt_dtc/dtc_13.json @@ -1,4 +1,4 @@ { "title": "Config-Validierung", - "description": "Ein oder mehrer Einstellungswerte waren ausserhalb gültiger Werte. Diese wurden automatisch korrigiert. Prüfen Sie Ihre Einstellungen" + "description": "Ein oder mehrer Einstellungswerte sind ausserhalb plausibler Werte. Prüfen Sie Ihre Einstellungen" } \ No newline at end of file diff --git a/Software/data_src/version b/Software/data_src/version index ea710ab..a58941b 100644 --- a/Software/data_src/version +++ b/Software/data_src/version @@ -1 +1 @@ -1.2 \ No newline at end of file +1.3 \ No newline at end of file diff --git a/Software/src/common.h b/Software/src/common.h index a455bdf..1eda6b7 100644 --- a/Software/src/common.h +++ b/Software/src/common.h @@ -26,9 +26,8 @@ #define HOST_NAME "ChainLube_%06X" // Use printf-Formatting - Chip-ID (uin32_t) will be added #endif -#define SW_VERSION 1.2 - -#define FLASH_FS_VERSION 1.2 +#define SW_VERSION 1.3 +#define FLASH_FS_VERSION 1.3 #ifndef OTA_DELAY #define OTA_DELAY 50 // ticks -> 10ms / tick diff --git a/Software/src/config.cpp b/Software/src/config.cpp index e83d51e..749b38d 100644 --- a/Software/src/config.cpp +++ b/Software/src/config.cpp @@ -25,37 +25,45 @@ void EEPROM_Process() case EE_CFG_SAVE: StoreConfig_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Stored EEPROM CFG"); break; case EE_CFG_LOAD: GetConfig_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Loaded EEPROM CFG"); break; case EE_CFG_FORMAT: FormatConfig_EEPROM(); globals.requestEEAction = EE_IDLE; globals.systemStatus = sysStat_Shutdown; + Serial.println("Formated EEPROM CFG"); break; case EE_PDS_SAVE: StorePersistence_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Stored EEPROM PDS"); break; case EE_PDS_LOAD: GetPersistence_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Loaded EEPROM PDS"); break; case EE_PDS_FORMAT: FormatPersistence_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Formated EEPROM PDS"); break; case EE_FORMAT_ALL: FormatConfig_EEPROM(); FormatPersistence_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Formated EEPROM ALL"); break; case EE_ALL_SAVE: StorePersistence_EEPROM(); StoreConfig_EEPROM(); globals.requestEEAction = EE_IDLE; + Serial.println("Stored EEPROM ALL"); break; case EE_IDLE: default: @@ -89,7 +97,7 @@ void GetConfig_EEPROM() } LubeConfig.checksum = checksum; - uint32_t ConfigSanityCheckResult = ConfigSanityCheck(true); + uint32_t ConfigSanityCheckResult = ConfigSanityCheck(false); if (ConfigSanityCheckResult > 0) {