Index: sources/ApplicationPost.h =================================================================== diff -u -r80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803 -rf1c4d7f7c9cd4422f6190a5b31c8f1e74e520c04 --- sources/ApplicationPost.h (.../ApplicationPost.h) (revision 80b5e8f1ebb90c03c37d90d90cd2da3bd95d6803) +++ sources/ApplicationPost.h (.../ApplicationPost.h) (revision f1c4d7f7c9cd4422f6190a5b31c8f1e74e520c04) @@ -69,6 +69,7 @@ const QString _postmsg_bluetooth = "Bluetooth" ; // POSTMSG_BLUETOOTH="Bluetooth" const QString _postmsg_shasum = "App shasum" ; // POSTMSG_SHASUM="App shasum" const QString _postmsg_cloudsync = "CloudSync" ; // POSTMSG_CLOUDSYNC="CloudSync" + const QString _postmsg_settingscrc = "SettingsCRC" ; // POSTMSG_SETTINGSCRC="SettingsCRC" const quint8 _macAddrssLen = 17 ; // ff:ff:ff:ff:ff:ff const quint8 _macAppearLen = 200 ; // the mac address shall be found within the next 200 characters. @@ -97,6 +98,8 @@ bool _isEthernet = false ; // HIGH: : ALARM_ID_UI_POST_FAILURE_ETHERNET : this is not a Fault and not required the application to stop. bool _isSound = false ; // HIGH: : ALARM_ID_UI_POST_FAILURE_SOUND : this is not a Fault and not required the application to stop. bool _isYearCheck = false ; // HIGH: : ALARM_ID_HD_UI_POST_FAILURE_INVALID_YEAR + bool _isSettingsCRC = false ; // HIGH: fault: ALARM_ID_HD_UI_POST_FAILURE_SETTINGS_BAD + bool _isDone = false ; bool checkShaSum (); @@ -111,6 +114,7 @@ bool checkEthernet (); bool checkSound (); bool checkYear (); + bool checkSettingsCRC (); public: bool isShaSum () const { return _isShaSum ; } @@ -126,6 +130,7 @@ bool isSound () const { return _isSound ; } bool isYearCheck () const { return _isYearCheck ; } bool isDone () const { return _isDone ; } + bool isSettingsCRCCheck () const { return _isSettingsCRC; } QString macEthernet () const { return _macEthernet ; } QString macWireless () const { return _macWireless ; } @@ -148,6 +153,7 @@ void didEthernet (bool vPass); void didSound (bool vPass); void didYearCheck (bool vPass); + void didSettingsCRCCheck (bool vPass); void didFail(Gui::GuiAlarmID vAlarmID); void didDone(bool vPass);