Index: denali.pro.user =================================================================== diff -u -r3caffb866d4c84ac6282dcd36fc2d8f7cad9584d -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 --- denali.pro.user (.../denali.pro.user) (revision 3caffb866d4c84ac6282dcd36fc2d8f7cad9584d) +++ denali.pro.user (.../denali.pro.user) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) @@ -1,6 +1,6 @@ - + EnvironmentId Index: scripts/setup.sh =================================================================== diff -u -r13a271ff9262b297f76fa2f97110ff5e0f3f1e1b -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 --- scripts/setup.sh (.../setup.sh) (revision 13a271ff9262b297f76fa2f97110ff5e0f3f1e1b) +++ scripts/setup.sh (.../setup.sh) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) @@ -24,7 +24,8 @@ timedatectl set-ntp 0 echo "Setup the timezone (PDT Pacific)" -timedatectl America/Los_Angeles +timedatectl set-timezone America/Los_Angeles +timedatectl set-local-rtc 1 echo "Setup the time/date" while true; do @@ -35,9 +36,6 @@ fi done -echo "Setup the hardware clock" -hwclock -w - echo "Disabling Qt demo" systemctl disable qtlauncher systemctl disable ebikedata Index: sources/cloudsync/CloudSyncController.h =================================================================== diff -u -rcd7956150072dcb5264c891ee363074623052ead -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 --- sources/cloudsync/CloudSyncController.h (.../CloudSyncController.h) (revision cd7956150072dcb5264c891ee363074623052ead) +++ sources/cloudsync/CloudSyncController.h (.../CloudSyncController.h) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) @@ -78,32 +78,32 @@ enum Errors_Enum { eError_Unknown = 500, // Unknown error, initial error before error check - eError_HeaderCount , - eError_Timestamp , - eError_Sequence , - eError_CRC , - eError_MessageID , - eError_InvalidID , - eError_ParamCount , - eError_ParamMismatch , - eError_ParamMissing , + eError_HeaderCount = 501, + eError_Timestamp = 502, + eError_Sequence = 503, + eError_CRC = 504, + eError_MessageID = 505, + eError_InvalidID = 506, + eError_ParamCount = 507, + eError_ParamMismatch = 508, + eError_ParamMissing = 509, - eError_NoHistory , - eError_Duplicate , + eError_NoHistory = 510, + eError_Duplicate = 511, - eError_LogFolder , - eError_LogFileInp , + eError_LogFolder = 512, + eError_LogFileInp = 513, - eError_CredentialMake , // the UI vault folder for cloudsync credentials can't be created. - eError_CredentialFile , // the credential files sent to UI can't be find or read or doesn't exist.. - eError_CredentialCopy , // the credential files sent to UI can't be copied to UI vault. - eError_CredentialRemove , // the credential files sent to UI can't be removed. - eError_CredentialEmpty , // the UI folder doesn't have credential files. + eError_CredentialMake = 514, // the UI vault folder for cloudsync credentials can't be created. + eError_CredentialFile = 515, // the credential files sent to UI can't be find or read or doesn't exist.. + eError_CredentialCopy = 516, // the credential files sent to UI can't be copied to UI vault. + eError_CredentialRemove = 517, // the credential files sent to UI can't be removed. + eError_CredentialEmpty = 518, // the UI folder doesn't have credential files. - eError_TxCodeNoParam , // the received Tx Code not provided - eError_TxCodeEmpty , // the received Tx Code is empty + eError_TxCodeNoParam = 519, // the received Tx Code not provided + eError_TxCodeEmpty = 520, // the received Tx Code is empty - eError_OutFileEmpty , // Out file has changed from CS2UI but the content is empty. + eError_OutFileEmpty = 521, // Out file has changed from CS2UI but the content is empty. }; typedef QHash MessageList; Index: sources/model/hd/alarm/MAlarmMapping.cpp =================================================================== diff -u -r3caffb866d4c84ac6282dcd36fc2d8f7cad9584d -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 --- sources/model/hd/alarm/MAlarmMapping.cpp (.../MAlarmMapping.cpp) (revision 3caffb866d4c84ac6282dcd36fc2d8f7cad9584d) +++ sources/model/hd/alarm/MAlarmMapping.cpp (.../MAlarmMapping.cpp) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) @@ -7,7 +7,7 @@ * * \file MAlarmMapping.cpp * \author (last) Behrouz NematiPour - * \date (last) 29-Jun-2022 + * \date (last) 01-Jul-2022 * \author (original) Behrouz NematiPour * \date (original) 03-May-2021 * Index: unittests/tst_threads.cpp =================================================================== diff -u -r27cc308ff5113a9386899d3c8f8b29962a8498e1 -rf9912fcd4b809e5a7fd59cf855488b6a762198d0 --- unittests/tst_threads.cpp (.../tst_threads.cpp) (revision 27cc308ff5113a9386899d3c8f8b29962a8498e1) +++ unittests/tst_threads.cpp (.../tst_threads.cpp) (revision f9912fcd4b809e5a7fd59cf855488b6a762198d0) @@ -48,7 +48,7 @@ void tst_threads::tst_Thread_names() { QCOMPARE( _Logger .thread()->objectName(), "Storage::Logger_Thread" ); - QCOMPARE( _DeviceController .thread()->objectName(), "Storage::DeviceController_Thread" ); + QCOMPARE( _DeviceController .thread()->objectName(), "Device::DeviceController_Thread" ); QCOMPARE( _CanInterface .thread()->objectName(), "Can::FrameInterface_Thread" ); QCOMPARE( _FrameInterface .thread()->objectName(), "Can::FrameInterface_Thread" ); QCOMPARE( _MessageAcknowModel .thread()->objectName(), "Can::MessageAcknowModel_Thread" );