Index: AlarmMapping.csv =================================================================== diff -u -recd3358b9104dfb7aef670062d343be78a0a02ba -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- AlarmMapping.csv (.../AlarmMapping.csv) (revision ecd3358b9104dfb7aef670062d343be78a0a02ba) +++ AlarmMapping.csv (.../AlarmMapping.csv) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -182,7 +182,7 @@ 181,"DG load cells weight out of range for tare." 182,"DG load cells invalid calibration." 183,"DG invalid load cell value." - 184,"Inlet or Outlet UV reactor not healthy." + 184,"DG inlet UV reactor not healthy." 185,"DG fan RPM out of range." 186,"DG concentrate pump fault." 187,"DG concentrate pump CP1 speed control error." @@ -319,4 +319,5 @@ 318,"HD Air Pump timeout alarm." 319,"DG chemical disinfect flush flush sample." 320,"DG chemical disinfect flush sample timeout." - 321,"Total number of alarms." + 321,"DG outlet UV reactor not healthy." + 322,"Total number of alarms." Index: cppcheck.err =================================================================== diff -u -r5b46bc8e4724e4ddb648f901d76bb7ec24f8b6c7 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- cppcheck.err (.../cppcheck.err) (revision 5b46bc8e4724e4ddb648f901d76bb7ec24f8b6c7) +++ cppcheck.err (.../cppcheck.err) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -1,17 +1,14 @@ -02/02/2023 19:39 +02/10/2023 9:49 Behrouz NematiPour -sources/storage/Logger.h:91:5: error: There is an unknown macro here somewhere. Configuration is required. If Q_ENUM is a macro then please configure it. [unknownMacro] - Q_ENUM(LogType) - ^ -sources/model/settings/MSettings.cpp:45:15: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] - mKeys += keyValue.key(); - ^ -sources/model/settings/MSettings.cpp:74:17: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] - mValues += keyValue.val(); - ^ -sources/model/settings/MSettings.cpp:91:0: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] - if ( vKey == keyValue.key() ) return keyValue.val(); -^ +sources/canbus/MessageAcknowModel.h:58:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_sequence' a value by passing the value to the constructor in the initialization list. [useInitializationList] + _sequence = vSequence ; + ^ +sources/canbus/MessageAcknowModel.h:59:9: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_frameList' a value by passing the value to the constructor in the initialization list. [useInitializationList] + _frameList = vFrameList ; + ^ +sources/device/DeviceModels.h:50:21: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + mString += QString(",%1").arg(param.toString()); + ^ sources/storage/FileHandler.h:102:14: style: Condition '!createFolder' is always false [knownConditionTrueFalse] if ( ! createFolder ) { if ( ! dstDir.exists() ) { err = eDstFolderNotExist ; goto lErr; }} ^ @@ -21,6 +18,33 @@ sources/storage/FileHandler.h:102:14: note: Condition '!createFolder' is always false if ( ! createFolder ) { if ( ! dstDir.exists() ) { err = eDstFolderNotExist ; goto lErr; }} ^ +sources/ApplicationPost.cpp:111:9: style: Condition '!ok' is always false [knownConditionTrueFalse] + if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_DISPLAY); + ^ +sources/ApplicationPost.cpp:109:15: note: Assignment 'ok=true', assigned value is 1 + bool ok = true; + ^ +sources/ApplicationPost.cpp:111:9: note: Condition '!ok' is always false + if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_DISPLAY); + ^ +sources/ApplicationPost.cpp:206:9: style: Condition '!ok' is always false [knownConditionTrueFalse] + if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_ETHERNET); + ^ +sources/ApplicationPost.cpp:204:15: note: Assignment 'ok=true', assigned value is 1 + bool ok = true; + ^ +sources/ApplicationPost.cpp:206:9: note: Condition '!ok' is always false + if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_ETHERNET); + ^ +sources/ApplicationPost.cpp:220:9: style: Condition '!ok' is always false [knownConditionTrueFalse] + if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_SOUND); + ^ +sources/ApplicationPost.cpp:218:15: note: Assignment 'ok=true', assigned value is 1 + bool ok = true; + ^ +sources/ApplicationPost.cpp:220:9: note: Condition '!ok' is always false + if (! ok) emit didFail(Gui::GuiAlarmID::ALARM_ID_UI_POST_FAILURE_SOUND); + ^ sources/storage/FileHandler.h:92:17: style: Local variable 'totalSize' shadows outer function [shadowFunction] qint64 totalSize = 0; ^ @@ -33,68 +57,1226 @@ sources/storage/FileHandler.h:87:33: style: Variable 'err' is assigned a value that is never used. [unreadVariable] FileCopyError_Enums err = eOK; ^ -sources/view/VAdjustmentResponseBase.h:61:5: error: There is an unknown macro here somewhere. Configuration is required. If Q_PROPERTY is a macro then please configure it. [unknownMacro] - Q_PROPERTY(QString adjustment_ReasonText READ text NOTIFY adjustment_ReasonTriggered) +sources/MainTimer.cpp:69:16: style: The scope of the variable 'oH' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +void f(int x) +{ + int i = 0; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + static int oH,oM,oS; int cH,cM,cS; + ^ +sources/MainTimer.cpp:69:19: style: The scope of the variable 'oM' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +void f(int x) +{ + int i = 0; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + static int oH,oM,oS; int cH,cM,cS; + ^ +sources/MainTimer.cpp:69:22: style: The scope of the variable 'oS' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +void f(int x) +{ + int i = 0; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + static int oH,oM,oS; int cH,cM,cS; + ^ +sources/cloudsync/CloudSyncController.cpp:396:13: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + buf += item.toString(); + ^ +sources/cloudsync/CloudSyncController.cpp:202:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/cloudsync/CloudSyncController.cpp:226:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/cloudsync/CloudSyncController.cpp:499:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/cloudsync/CloudSyncController.cpp:548:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/cloudsync/CloudSyncController.cpp:557:51: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + if ( isDuplicate(messageID, data) ) { error = eError_Duplicate; args = { messageID }; ok = false; return ok; } // TODO: goto lErr; } don't log it just ignore and return false. + ^ +sources/cloudsync/CloudSyncController.cpp:557:76: style: Variable 'args' is assigned a value that is never used. [unreadVariable] + if ( isDuplicate(messageID, data) ) { error = eError_Duplicate; args = { messageID }; ok = false; return ok; } // TODO: goto lErr; } don't log it just ignore and return false. + ^ +sources/cloudsync/CloudSyncController.cpp:579:27: style: Variable 'error' is assigned a value that is never used. [unreadVariable] + Errors_Enum error = eError_Unknown; + ^ +sources/model/MAbstractDynamic.h:80:5: warning: Member variable 'MAbstractDynamic::_data' is not initialized in the constructor. [uninitMemberVar] + MAbstractDynamic () { } ^ -sources/view/dg/data/VDGOperationModeData.h:44:5: error: There is an unknown macro here somewhere. Configuration is required. If Q_PROPERTY is a macro then please configure it. [unknownMacro] - Q_PROPERTY(QString text READ text NOTIFY opModeChanged) +sources/model/confirm/MDuetConfirmHDi.h:78:5: warning: Member variable 'MDuetConfirmHDi::_data' is not initialized in the constructor. [uninitMemberVar] + MDuetConfirmHDi () { } ^ -sources/view/dg/data/VDGValvesStatesData.h:57:5: error: There is an unknown macro here somewhere. Configuration is required. If Q_PROPERTY is a macro then please configure it. [unknownMacro] - Q_PROPERTY(QString text READ text NOTIFY refreshTriggered) +sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.h:75:5: warning: Member variable 'MAdjustDGDateTimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDGDateTimeResponse () { } ^ -sources/view/hd/data/VHDOperationModeData.h:79:5: error: There is an unknown macro here somewhere. Configuration is required. If Q_PROPERTY is a macro then please configure it. [unknownMacro] - Q_PROPERTY(QString text READ text NOTIFY opModeChanged) +sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.h:74:5: warning: Member variable 'MAdjustServiceDatesDGResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustServiceDatesDGResponse () { } ^ -sources/view/settings/VBluetooth.h:63:5: error: There is an unknown macro here somewhere. Configuration is required. If Q_ENUM is a macro then please configure it. [unknownMacro] - Q_ENUM(DataRole) +sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.h:97:5: warning: Member variable 'MAdjustVersionsDGResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustVersionsDGResponse () { } ^ -sources/storage/StorageGlobals.cpp:53:0: style: The function 'Log_Min_Available_Total_Space_IsLow' is never used. [unusedFunction] +sources/model/dg/data/MDGAccelerometerData.h:103:5: warning: Member variable 'MDGAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] + MDGAccelerometer () { } + ^ +sources/model/dg/data/MDGConductivityData.h:83:5: warning: Member variable 'MDGConductivityData::_data' is not initialized in the constructor. [uninitMemberVar] + MDGConductivityData () { } + ^ +sources/model/dg/data/MDGDrainPumpData.h:81:5: warning: Member variable 'MDGDrainPump::_data' is not initialized in the constructor. [uninitMemberVar] + MDGDrainPump () { } + ^ +sources/model/dg/data/MDGHeatersData.h:102:5: warning: Member variable 'MDGHeaters::_data' is not initialized in the constructor. [uninitMemberVar] + MDGHeaters () {} + ^ +sources/model/dg/data/MDGLoadCellReadingsData.h:81:5: warning: Member variable 'MDGLoadCellReadings::_data' is not initialized in the constructor. [uninitMemberVar] + MDGLoadCellReadings () {} + ^ +sources/model/dg/data/MDGOperationModeData.h:75:5: warning: Member variable 'MDGOperationMode::_data' is not initialized in the constructor. [uninitMemberVar] + MDGOperationMode () {} + ^ +sources/model/dg/data/MDGPressuresData.h:84:5: warning: Member variable 'MDGPressures::_data' is not initialized in the constructor. [uninitMemberVar] + MDGPressures () {} + ^ +sources/model/dg/data/MDGROPumpData.h:81:5: warning: Member variable 'MDGROPump::_data' is not initialized in the constructor. [uninitMemberVar] + MDGROPump () { } + ^ +sources/model/dg/data/MDGReservoirData.h:78:5: warning: Member variable 'MDGReservoir::_data' is not initialized in the constructor. [uninitMemberVar] + MDGReservoir () {} + ^ +sources/model/dg/data/MDGTemperaturesData.h:136:5: warning: Member variable 'MDGTemperatures::_data' is not initialized in the constructor. [uninitMemberVar] + MDGTemperatures() { } + ^ +sources/model/dg/data/post/MDGPostFinalResultData.h:74:5: warning: Member variable 'MDGPostFinalResult::_data' is not initialized in the constructor. [uninitMemberVar] + MDGPostFinalResult() {} + ^ +sources/model/dg/data/post/MDGPostSingleResultData.h:77:5: warning: Member variable 'MDGPostSingleResult::_data' is not initialized in the constructor. [uninitMemberVar] + MDGPostSingleResult() {} + ^ +sources/model/dg/data/pretreatment/MDGFilterFlushData.h:75:5: warning: Member variable 'MDGFilterFlush::_data' is not initialized in the constructor. [uninitMemberVar] + MDGFilterFlush() {} + ^ +sources/model/hd/adjustment/MAdjustPowerOff.h:65:5: warning: Member variable 'MPowerOff::_data' is not initialized in the constructor. [uninitMemberVar] + MPowerOff () { } + ^ +sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.h:76:5: warning: Member variable 'MAdjustDisinfectModeResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDisinfectModeResponse () { } + ^ +sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.h:76:5: warning: Member variable 'MAdjustDisinfectStartResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDisinfectStartResponse () { } + ^ +sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.h:77:5: warning: Member variable 'MAdjustDisposablesRemovalConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDisposablesRemovalConfirmResponse () { } + ^ +sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.h:180:5: warning: Member variable 'MAdjustTreatmentLogResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustTreatmentLogResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.h:77:5: warning: Member variable 'MAdjustDisposablesConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDisposablesConfirmResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.h:77:5: warning: Member variable 'MAdjustDisposablesPrimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDisposablesPrimeResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.h:75:5: warning: Member variable 'MAdjustInitTreatmentResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustInitTreatmentResponse () {} + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.h:124:5: warning: Member variable 'MAdjustParametersValidationResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustParametersValidationResponse () {} + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.h:77:5: warning: Member variable 'MAdjustPatientConnectionBeginResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustPatientConnectionBeginResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.h:77:5: warning: Member variable 'MAdjustPatientConnectionConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustPatientConnectionConfirmResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.h:75:5: warning: Member variable 'MAdjustStartTreatmentResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustStartTreatmentResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.h:79:5: warning: Member variable 'MAdjustUltrafiltrationInitResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustUltrafiltrationInitResponse () { } + ^ +sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.h:77:5: warning: Member variable 'MAdjustWaterSampleResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustWaterSampleResponse () { } + ^ +sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.h:75:5: warning: Member variable 'MAdjustHDAlarmVolumeResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustHDAlarmVolumeResponse () { } + ^ +sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.h:75:5: warning: Member variable 'MAdjustHDDateTimeResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustHDDateTimeResponse () { } + ^ +sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.h:74:5: warning: Member variable 'MAdjustServiceDatesHDResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustServiceDatesHDResponse () { } + ^ +sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.h:74:5: warning: Member variable 'MAdjustServiceModeResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustServiceModeResponse () { } + ^ +sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.h:97:5: warning: Member variable 'MAdjustVersionsHDResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustVersionsHDResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.h:81:5: warning: Member variable 'MAdjustBloodDialysateResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustBloodDialysateResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.h:82:5: warning: Member variable 'MAdjustDurationResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustDurationResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.h:77:5: warning: Member variable 'MAdjustTreatmentEndResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustTreatmentEndResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.h:77:5: warning: Member variable 'MAdjustHeparinResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustHeparinResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h:89:5: warning: Member variable 'MAdjustPressuresLimitsResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustPressuresLimitsResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.h:77:5: warning: Member variable 'MAdjustRecirculateResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustRecirculateResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.h:77:5: warning: Member variable 'MAdjustRinsebackResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustRinsebackResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.h:80:5: warning: Member variable 'MAdjustSalineResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustSalineResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.h:82:5: warning: Member variable 'MAdjustUltrafiltrationConfirmResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustUltrafiltrationConfirmResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:82:5: warning: Member variable 'MAdjustUltrafiltrationEditResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustUltrafiltrationEditResponse () { } + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:67:14: warning: The class 'MAdjustUltrafiltrationEditResponse' defines member variable with name 'stringPrefix' also defined in its parent class 'MAdjustUltrafiltrationConfirmResponse'. [duplInheritedMember] + QString stringPrefix = "AdjustUFEdit"; + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.h:61:14: note: Parent variable 'MAdjustUltrafiltrationConfirmResponse::stringPrefix' + QString stringPrefix = "AdjustUFConfirm"; + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:67:14: note: Derived variable 'MAdjustUltrafiltrationEditResponse::stringPrefix' + QString stringPrefix = "AdjustUFEdit"; + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:79:7: warning: The class 'MAdjustUltrafiltrationEditResponse' defines member variable with name '_data' also defined in its parent class 'MAdjustUltrafiltrationConfirmResponse'. [duplInheritedMember] + } _data; + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.h:79:7: note: Parent variable 'MAdjustUltrafiltrationConfirmResponse::_data' + } _data; + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.h:79:7: note: Derived variable 'MAdjustUltrafiltrationEditResponse::_data' + } _data; + ^ +sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.h:78:5: warning: Member variable 'MAdjustUltrafiltrationStateResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAdjustUltrafiltrationStateResponse() { } + ^ +sources/model/hd/alarm/MAlarmActiveList.h:133:5: warning: Member variable 'MAlarmActiveListResponse::_data' is not initialized in the constructor. [uninitMemberVar] + MAlarmActiveListResponse () { } + ^ +sources/model/hd/alarm/MAlarmCleared.h:72:5: warning: Member variable 'MAlarmCleared::_data' is not initialized in the constructor. [uninitMemberVar] + MAlarmCleared () { } + ^ +sources/model/hd/alarm/MAlarmClearedCondition.h:73:5: warning: Member variable 'MAlarmClearedCondition::_data' is not initialized in the constructor. [uninitMemberVar] + MAlarmClearedCondition () { } + ^ +sources/model/hd/alarm/MAlarmStatusData.h:86:5: warning: Member variable 'MAlarmStatus::_data' is not initialized in the constructor. [uninitMemberVar] + MAlarmStatus() { } + ^ +sources/model/hd/alarm/MAlarmTriggered.h:99:5: warning: Member variable 'MAlarmTriggered::_xata' is not initialized in the constructor. [uninitMemberVar] + MAlarmTriggered () { } + ^ +sources/model/hd/alarm/MAlarmTriggered.h:65:18: style: The function 'parameters' overrides a function in a base class but is not marked with a 'override' specifier. [missingOverride] + QVariantList parameters() const; + ^ +sources/model/MAbstract.h:139:26: note: Virtual function in base class + virtual QVariantList parameters () const = 0; + ^ +sources/model/hd/alarm/MAlarmTriggered.h:65:18: note: Function in derived class + QVariantList parameters() const; + ^ +sources/model/hd/data/MHDAccelerometerData.h:103:5: warning: Member variable 'MHDAccelerometer::_data' is not initialized in the constructor. [uninitMemberVar] + MHDAccelerometer () { } + ^ +sources/model/hd/data/MHDAirBubbleData.h:77:5: warning: Member variable 'MHDAirBubbleData::_data' is not initialized in the constructor. [uninitMemberVar] + MHDAirBubbleData () { } + ^ +sources/model/hd/data/MHDAirTrapData.h:77:5: warning: Member variable 'MHDAirTrapData::_data' is not initialized in the constructor. [uninitMemberVar] + MHDAirTrapData () { } + ^ +sources/model/hd/data/MHDBloodLeakData.h:102:5: warning: Member variable 'MHDBloodLeakData::_data' is not initialized in the constructor. [uninitMemberVar] + MHDBloodLeakData () { } + ^ +sources/model/hd/data/MHDOperationModeData.h:75:5: warning: Member variable 'MHDOperationMode::_data' is not initialized in the constructor. [uninitMemberVar] + MHDOperationMode () {} + ^ +sources/model/hd/data/MHDSyringePumpData.h:106:5: warning: Member variable 'MHDSyringePump::_data' is not initialized in the constructor. [uninitMemberVar] + MHDSyringePump () { } + ^ +sources/model/hd/data/MTreatmentRangesData.h:87:5: warning: Member variable 'MTreatmentRanges::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentRanges () { } + ^ +sources/model/hd/data/post/MHDPostFinalResultData.h:74:5: warning: Member variable 'MHDPostFinalResult::_data' is not initialized in the constructor. [uninitMemberVar] + MHDPostFinalResult() {} + ^ +sources/model/hd/data/post/MHDPostSingleResultData.h:77:5: warning: Member variable 'MHDPostSingleResult::_data' is not initialized in the constructor. [uninitMemberVar] + MHDPostSingleResult() {} + ^ +sources/model/hd/data/posttreatment/MPostTreatmentStatesData.h:74:5: warning: Member variable 'MPostTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] + MPostTreatmentStates() { } + ^ +sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.h:72:5: warning: Member variable 'MPreTreatmentDisposablesPrime::_data' is not initialized in the constructor. [uninitMemberVar] + MPreTreatmentDisposablesPrime() { } + ^ +sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.h:75:5: warning: Member variable 'MPreTreatmentSelfTestDry::_data' is not initialized in the constructor. [uninitMemberVar] + MPreTreatmentSelfTestDry() { } + ^ +sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.h:75:5: warning: Member variable 'MPreTreatmentSelfTestNoCartridge::_data' is not initialized in the constructor. [uninitMemberVar] + MPreTreatmentSelfTestNoCartridge () { } + ^ +sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h:111:5: warning: Member variable 'MPreTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] + MPreTreatmentStates() { } + ^ +sources/model/hd/data/treatment/MTreatmentBloodFlowData.h:90:5: warning: Member variable 'MBloodFlow::_data' is not initialized in the constructor. [uninitMemberVar] + MBloodFlow() { } + ^ +sources/model/hd/data/treatment/MTreatmentBloodPrimeData.h:77:5: warning: Member variable 'MTreatmentBloodPrime::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentBloodPrime () { } + ^ +sources/model/hd/data/treatment/MTreatmentDialysateFlowData.h:89:5: warning: Member variable 'MDialysateFlow::_data' is not initialized in the constructor. [uninitMemberVar] + MDialysateFlow() { } + ^ +sources/model/hd/data/treatment/MTreatmentHeparinData.h:78:5: warning: Member variable 'MTreatmentHeparin::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentHeparin () { } + ^ +sources/model/hd/data/treatment/MTreatmentOutletFlowData.h:90:5: warning: Member variable 'MOutletFlow::_data' is not initialized in the constructor. [uninitMemberVar] + MOutletFlow () { } + ^ +sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.h:84:5: warning: Member variable 'MPressureOcclusion::_data' is not initialized in the constructor. [uninitMemberVar] + MPressureOcclusion () { } + ^ +sources/model/hd/data/treatment/MTreatmentRecirculateData.h:78:5: warning: Member variable 'MTreatmentRecirculate::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentRecirculate () { } + ^ +sources/model/hd/data/treatment/MTreatmentRinsebackData.h:90:5: warning: Member variable 'MTreatmentRinseback::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentRinseback () { } + ^ +sources/model/hd/data/treatment/MTreatmentSalineData.h:81:5: warning: Member variable 'MTreatmentSaline::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentSaline () { } + ^ +sources/model/hd/data/treatment/MTreatmentStatesData.h:109:5: warning: Member variable 'MTreatmentStates::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentStates() { } + ^ +sources/model/hd/data/treatment/MTreatmentStopData.h:76:5: warning: Member variable 'MTreatmentStop::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentStop () { } + ^ +sources/model/hd/data/treatment/MTreatmentTimeData.h:79:5: warning: Member variable 'MTreatmentTime::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentTime () { } + ^ +sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.h:81:5: warning: Member variable 'MTreatmentLogAlarmData::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentLogAlarmData() { } + ^ +sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.h:90:5: warning: Member variable 'MTreatmentLogAvrgeData::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentLogAvrgeData() { } + ^ +sources/model/hd/data/treatmentlog/MTreatmentLogEventData.h:81:5: warning: Member variable 'MTreatmentLogEventData::_data' is not initialized in the constructor. [uninitMemberVar] + MTreatmentLogEventData() { } + ^ +sources/model/settings/MSettings.cpp:45:15: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + mKeys += keyValue.key(); + ^ +sources/model/settings/MSettings.cpp:74:17: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + mValues += keyValue.val(); + ^ +sources/model/settings/MSettings.cpp:91:0: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] + if ( vKey == keyValue.key() ) return keyValue.val(); +^ +sources/storage/Logger.cpp:43:5: performance: When an object of a class is created, the constructors of all member variables are called consecutively in the order the variables are declared, even if you don't explicitly write them to the initialization list. You could avoid assigning '_logFileNamePrefix' a value by passing the value to the constructor in the initialization list. [useInitializationList] + _logFileNamePrefix = QFileInfo(qApp->applicationFilePath()).baseName(); + ^ +sources/storage/Logger.cpp:244:10: style: Condition 'ok' is always true [knownConditionTrueFalse] + if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; + ^ +sources/storage/Logger.cpp:243:15: note: Assignment 'ok=true', assigned value is 1 + bool ok = true; + ^ +sources/storage/Logger.cpp:244:10: note: Condition 'ok' is always true + if ( ok && ! setLogPath(LogType::eLogAppED) ) ok = false; + ^ +sources/storage/Logger.cpp:189:17: style: The scope of the variable 'notified' can be reduced. Warning: Be careful when fixing this message, especially when there are inner loops. Here is an example where cppcheck will write that the scope for 'i' can be reduced: +void f(int x) +{ + int i = 0; + if (x) { + // it's safe to move 'int i = 0;' here + for (int n = 0; n < 10; ++n) { + // it is possible but not safe to move 'int i = 0;' here + do_something(&i); + } + } +} +When you see this message it is always safe to reduce the variable scope 1 level. [variableScope] + static bool notified = false; + ^ +sources/storage/TreatmentLog.cpp:467:10: style: Condition '!ok' is always false [knownConditionTrueFalse] + if ( ! ok ) { + ^ +sources/storage/TreatmentLog.cpp:461:10: note: Assuming that condition '!ok' is not redundant + if ( ! ok ) { + ^ +sources/storage/TreatmentLog.cpp:467:10: note: Condition '!ok' is always false + if ( ! ok ) { + ^ +sources/storage/TreatmentLog.cpp:90:41: style: Variable 'mTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] + QString mTreatmentDurationFmt = QTime (0, 0).addSecs(int(vData.mTreatmentDuration )).toString(_timeFormat); + ^ +sources/storage/TreatmentLog.cpp:91:41: style: Variable 'mActualTreatmentDurationFmt' is assigned a value that is never used. [unreadVariable] + QString mActualTreatmentDurationFmt = QTime (0, 0).addSecs(int(vData.mActualTreatmentDuration )).toString(_timeFormat); + ^ +sources/utility/format.cpp:98:19: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + mData += fromVariant(item); + ^ +sources/view/settings/VNetworkModel.cpp:264:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] + { + ^ +sources/view/settings/VNetworkModel.cpp:282:9: style: Consider using std::find_if algorithm instead of a raw loop. [useStlAlgorithm] + { + ^ +sources/view/settings/VSettings.cpp:164:17: style: Consider using std::accumulate algorithm instead of a raw loop. [useStlAlgorithm] + keyList += keys.join(""); + ^ +unittests/tst_messaging.cpp:294:18: style: Variable 'msg.actionId' is reassigned a value before the old one has been used. [redundantAssignment] + msg.actionId = Gui::GuiActionType::ID_RawData; + ^ +unittests/tst_messaging.cpp:279:18: note: msg.actionId is assigned + msg.actionId = Gui::GuiActionType::ID_AlarmTriggered; + ^ +unittests/tst_messaging.cpp:294:18: note: msg.actionId is overwritten + msg.actionId = Gui::GuiActionType::ID_RawData; + ^ +unittests/tst_views.cpp:711:26: style: Variable 'action' is assigned a value that is never used. [unreadVariable] + GuiActionType action = GuiActionType::ID_AdjustParametersValidationRsp; + ^ +unittests/tst_views.cpp:406:0: style: The function 'VCreateTreatment_check_init' is never used. [unusedFunction] ^ -sources/model/settings/MSettings.cpp:126:0: style: The function 'add' is never used. [unusedFunction] +unittests/tst_views.cpp:660:0: style: The function 'VCreateTreatment_enums' is never used. [unusedFunction] ^ -sources/model/settings/MSettings.cpp:113:0: style: The function 'categorys' is never used. [unusedFunction] +unittests/tst_views.cpp:708:0: style: The function 'VCreateTreatment_fw_validation_response' is never used. [unusedFunction] ^ -sources/device/DeviceError.cpp:56:0: style: The function 'checkScript' is never used. [unusedFunction] +unittests/tst_views.cpp:676:0: style: The function 'VCreateTreatment_json' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:142:0: style: The function 'copyFolder' is never used. [unusedFunction] +unittests/tst_views.cpp:778:0: style: The function 'VCreateTreatment_load_parameter_ranges' is never used. [unusedFunction] ^ -sources/utility/crc.cpp:50:0: style: The function 'crc8' is never used. [unusedFunction] +unittests/tst_views.cpp:602:0: style: The function 'VCreateTreatment_save' is never used. [unusedFunction] ^ -sources/model/settings/MSettings.cpp:152:0: style: The function 'datetimeFormat' is never used. [unusedFunction] +unittests/tst_views.cpp:581:0: style: The function 'VCreateTreatment_save_csv' is never used. [unusedFunction] ^ -sources/model/settings/MSettings.cpp:102:0: style: The function 'groups' is never used. [unusedFunction] +unittests/tst_views.cpp:71:0: style: The function 'VCreateTreatment_validation' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:261:0: style: The function 'isMounted' is never used. [unusedFunction] +unittests/tst_views.cpp:231:0: style: The function 'VCreateTreatment_validation_ranges' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:241:0: style: The function 'makeFolder' is never used. [unusedFunction] +unittests/tst_views.cpp:42:0: style: The function 'VTreatmentAdjustmentUltrafiltrationState_text' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:162:0: style: The function 'moveFolder' is never used. [unusedFunction] +unittests/tst_views.cpp:28:0: style: The function 'VTreatmentAdjustmentsResponse_text_NoReason' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:203:0: style: The function 'removeFiles' is never used. [unusedFunction] +unittests/tst_views.cpp:35:0: style: The function 'VTreatmentAdjustmentsResponse_text_WAReason' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:183:0: style: The function 'removeFolder' is never used. [unusedFunction] +unittests/tst_canbus.cpp:312:0: style: The function 'cleanup' is never used. [unusedFunction] ^ -sources/storage/FileHandler.cpp:415:0: style: The function 'subFolders' is never used. [unusedFunction] +unittests/tst_acknow.cpp:164:0: style: The function 'cleanupTestCase' is never used. [unusedFunction] ^ -sources/model/MAbstract.cpp:33:0: style: The function 'toVariantList' is never used. [unusedFunction] +sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp:49:0: style: The function 'doBegin' is never used. [unusedFunction] ^ -sources/model/settings/MSettings.cpp:68:0: style: The function 'values' is never used. [unusedFunction] +sources/view/VTreatmentCreate.cpp:83:0: style: The function 'doCancel' is never used. [unusedFunction] ^ +sources/view/settings/VNetworkModel.cpp:245:0: style: The function 'doCheckIfConnected' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:95:0: style: The function 'doClearCondition' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:89:0: style: The function 'doDisinfectCancel' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:137:0: style: The function 'doDisinfectChemFlush' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:128:0: style: The function 'doDisinfectChemical' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:100:0: style: The function 'doDisinfectClear' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:142:0: style: The function 'doDisinfectConfirm' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:110:0: style: The function 'doDisinfectFlush' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:119:0: style: The function 'doDisinfectHeat' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp:77:0: style: The function 'doDisinfectInitiate' is never used. [unusedFunction] + +^ +sources/gui/GuiView.cpp:250:0: style: The function 'doExportListInsert' is never used. [unusedFunction] + +^ +sources/gui/GuiView.cpp:293:0: style: The function 'doExportListPercent' is never used. [unusedFunction] + +^ +sources/gui/GuiView.cpp:281:0: style: The function 'doExportListSelect' is never used. [unusedFunction] + +^ +sources/view/VTreatmentCreate(legacy).cpp:504:0: style: The function 'doGetPrescriptionParameterValues' is never used. [unusedFunction] + +^ +sources/view/settings/VDateTime.cpp:44:0: style: The function 'doInit' is never used. [unusedFunction] + +^ +sources/device/DeviceView.cpp:89:0: style: The function 'doInitBluetoothPairedQuery' is never used. [unusedFunction] + +^ +sources/device/DeviceView.cpp:65:0: style: The function 'doInitBluetoothPairedReset' is never used. [unusedFunction] + +^ +sources/device/DeviceView.cpp:32:0: style: The function 'doInitBrightness' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp:49:0: style: The function 'doInitiate' is never used. [unusedFunction] + +^ +sources/view/VEventSpy.cpp:149:0: style: The function 'doMouseReset' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp:66:0: style: The function 'doOptionDuration' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp:54:0: style: The function 'doOptionRate' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp:41:0: style: The function 'doPause' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp:49:0: style: The function 'doPrime' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:51:0: style: The function 'doReconnect' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp:54:0: style: The function 'doRequest' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp:99:0: style: The function 'doReset' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp:64:0: style: The function 'doResult' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp:51:0: style: The function 'doResume' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp:51:0: style: The function 'doSample' is never used. [unusedFunction] + +^ +sources/view/settings/VNetworkModel.cpp:369:0: style: The function 'doSetDNS' is never used. [unusedFunction] + +^ +sources/view/settings/VNetworkModel.cpp:351:0: style: The function 'doSetGateway' is never used. [unusedFunction] + +^ +sources/view/settings/VNetworkModel.cpp:342:0: style: The function 'doSetIPAddress' is never used. [unusedFunction] + +^ +sources/view/settings/VNetworkModel.cpp:360:0: style: The function 'doSetSubnetMask' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:78:0: style: The function 'doSilence' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp:87:0: style: The function 'doSkip' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp:58:0: style: The function 'doStop' is never used. [unusedFunction] + +^ +sources/view/VEventSpy.cpp:192:0: style: The function 'doTouchReset' is never used. [unusedFunction] + +^ +sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp:75:0: style: The function 'doTreatmentEnd' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:57:0: style: The function 'doUserActionEnd' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:67:0: style: The function 'doUserActionOk' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:37:0: style: The function 'doUserActionResume' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:47:0: style: The function 'doUserActionRinseback' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:31:0: style: The function 'initTestCase' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:35:0: style: The function 'initTestCase_data' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:200:0: style: The function 'instructionKeys' is never used. [unusedFunction] + +^ +sources/view/hd/alarm/VAlarmStatus.cpp:201:0: style: The function 'instructionValues' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:66:0: style: The function 'logDatum' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:74:0: style: The function 'logError' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:119:0: style: The function 'logError_Unhandled_TreatmentStates' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:91:0: style: The function 'logError_gDisableUnhandledReport_False' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:106:0: style: The function 'logError_gDisableUnhandledReport_True' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:58:0: style: The function 'logEvent' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:82:0: style: The function 'logUnknown' is never used. [unusedFunction] + +^ +sources/bluetooth/BluetoothInterface.cpp:1159:0: style: The function 'mimic' is never used. [unusedFunction] + +^ +sources/storage/FileHandler.cpp:167:0: style: The function 'moveFolder' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:149:0: style: The function 'readUnknown' is never used. [unusedFunction] + +^ +sources/storage/FileHandler.cpp:208:0: style: The function 'removeFiles' is never used. [unusedFunction] + +^ +sources/storage/FileHandler.cpp:188:0: style: The function 'removeFolder' is never used. [unusedFunction] + +^ +sources/bluetooth/BluetoothInterface.cpp:1239:0: style: The function 'requestBattery' is never used. [unusedFunction] + +^ +sources/bluetooth/BluetoothInterface.cpp:1226:0: style: The function 'requestInformation' is never used. [unusedFunction] + +^ +sources/bluetooth/BluetoothInterface.cpp:1207:0: style: The function 'requestMeasurements' is never used. [unusedFunction] + +^ +sources/view/settings/VBluetooth.cpp:79:0: style: The function 'roleNames' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:135:0: style: The function 'setLogPath_F' is never used. [unusedFunction] + +^ +unittests/tst_logging.cpp:142:0: style: The function 'setLogPath_T' is never used. [unusedFunction] + +^ +sources/MainTimer.cpp:116:0: style: The function 'timerEvent' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:62:0: style: The function 'tst_AcknowModel_Init' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:89:0: style: The function 'tst_AcknowModel_Receive_Acknow' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:71:0: style: The function 'tst_AcknowModel_Receive_Normal' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:118:0: style: The function 'tst_AcknowModel_Transmit_Acknow' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:107:0: style: The function 'tst_AcknowModel_Transmit_Normal' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:134:0: style: The function 'tst_AcknowModel_onAcknowReceive_Correct' is never used. [unusedFunction] + +^ +unittests/tst_acknow.cpp:157:0: style: The function 'tst_AcknowModel_onAcknowReceive_Incorrect' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:739:0: style: The function 'tst_AlarmGenerator_setBits_OutOfRange' is never used. [unusedFunction] + +^ +unittests/tst_initializations.cpp:30:0: style: The function 'tst_ApplicationController_init' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:45:0: style: The function 'tst_CanInterface_Connect_Error_Interface' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:55:0: style: The function 'tst_CanInterface_Connect_NoError' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:631:0: style: The function 'tst_DGDrainPumpData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:617:0: style: The function 'tst_DGDrainPumpData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:792:0: style: The function 'tst_DGHeatersData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:774:0: style: The function 'tst_DGHeatersData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:842:0: style: The function 'tst_DGLoadCellReadingsData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:820:0: style: The function 'tst_DGLoadCellReadingsData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:668:0: style: The function 'tst_DGOperationMode' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:658:0: style: The function 'tst_DGOperationMode_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:588:0: style: The function 'tst_DGPressuresData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:566:0: style: The function 'tst_DGPressuresData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:538:0: style: The function 'tst_DGROPumpData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:520:0: style: The function 'tst_DGROPumpData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:712:0: style: The function 'tst_DGReservoirData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:694:0: style: The function 'tst_DGReservoirData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:925:0: style: The function 'tst_DGTemperaturesData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:871:0: style: The function 'tst_DGTemperaturesData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:748:0: style: The function 'tst_DGValvesStates' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:740:0: style: The function 'tst_DGValvesStates_data' is never used. [unusedFunction] + +^ +unittests/tst_initializations.cpp:35:0: style: The function 'tst_DeviceController_init' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:85:0: style: The function 'tst_FrameInterface_ActionTransmit_KeepAlive' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:115:0: style: The function 'tst_FrameInterface_ActionTransmit_PowerOff' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:99:0: style: The function 'tst_FrameInterface_ActionTransmit_PowerOff_Accepted' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:107:0: style: The function 'tst_FrameInterface_ActionTransmit_PowerOff_Rejected' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:123:0: style: The function 'tst_FrameInterface_ActionTransmit_Raw' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:134:0: style: The function 'tst_FrameInterface_ActionTransmit_ShortPayload' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:142:0: style: The function 'tst_FrameInterface_ActionTransmit_Unknown' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:201:0: style: The function 'tst_FrameInterface_FrameReceived_CRC_Error' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:188:0: style: The function 'tst_FrameInterface_FrameReceived_Channel_Incorrect' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:175:0: style: The function 'tst_FrameInterface_FrameReceived_Channel_NotListen' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:279:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_AlarmStatus_LessData' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:240:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_BloodFlow' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:260:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_BloodFlow_LessData' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:227:0: style: The function 'tst_FrameInterface_FrameReceived_LongFrame_Error' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:149:0: style: The function 'tst_FrameInterface_FrameReceived_PowerOff' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:162:0: style: The function 'tst_FrameInterface_FrameReceived_PowerOff_Timeout' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:214:0: style: The function 'tst_FrameInterface_FrameReceived_ShortFrame_Error' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:302:0: style: The function 'tst_FrameInterface_FrameReceived_removeHead_EmptyList' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:67:0: style: The function 'tst_FrameInterface_Init' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:79:0: style: The function 'tst_FrameInterface_ReInit' is never used. [unusedFunction] + +^ +unittests/tst_canbus.cpp:92:0: style: The function 'tst_FrameInterface_TransmitFrame_LongerData' is never used. [unusedFunction] + +^ +unittests/tst_initializations.cpp:40:0: style: The function 'tst_FrameInterface_init' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:95:0: style: The function 'tst_MAdjustBloodDialysateResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:72:0: style: The function 'tst_MAdjustBloodDialysateResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:206:0: style: The function 'tst_MAdjustDurationResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:183:0: style: The function 'tst_MAdjustDurationResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1787:0: style: The function 'tst_MAdjustInitTreatmentResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1772:0: style: The function 'tst_MAdjustInitTreatmentResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:487:0: style: The function 'tst_MAdjustPressuresLimitsResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:456:0: style: The function 'tst_MAdjustPressuresLimitsResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:426:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:399:0: style: The function 'tst_MAdjustUltrafiltrationConfirmResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:366:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:327:0: style: The function 'tst_MAdjustUltrafiltrationEditResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:254:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:235:0: style: The function 'tst_MAdjustUltrafiltrationInitResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:300:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:281:0: style: The function 'tst_MAdjustUltrafiltrationStateResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1974:0: style: The function 'tst_MAdjustmentTreatmentParametersRequest' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1936:0: style: The function 'tst_MAlarmAcknowledgeRequest' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1494:0: style: The function 'tst_MAlarmCleared' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1484:0: style: The function 'tst_MAlarmCleared_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1418:0: style: The function 'tst_MAlarmStatus' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1394:0: style: The function 'tst_MAlarmStatus_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1379:0: style: The function 'tst_MAlarmStatus_text' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1458:0: style: The function 'tst_MAlarmTriggered' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1448:0: style: The function 'tst_MAlarmTriggered_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1149:0: style: The function 'tst_MBloodFlowData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1115:0: style: The function 'tst_MBloodFlowData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1952:0: style: The function 'tst_MConfirmTreatmentRequest' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1215:0: style: The function 'tst_MDialysateFlowData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1181:0: style: The function 'tst_MDialysateFlowData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1960:0: style: The function 'tst_MEndTreatmentRequest' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1825:0: style: The function 'tst_MEndTreatmentResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1814:0: style: The function 'tst_MEndTreatmentResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1023:0: style: The function 'tst_MHDOperationModeData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1013:0: style: The function 'tst_MHDOperationModeData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1912:0: style: The function 'tst_MHeparinResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1898:0: style: The function 'tst_MHeparinResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1944:0: style: The function 'tst_MInitTreatmentRequest' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1083:0: style: The function 'tst_MOutletFlowData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1049:0: style: The function 'tst_MOutletFlowData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1356:0: style: The function 'tst_MPowerOff' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1349:0: style: The function 'tst_MPowerOff_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1745:0: style: The function 'tst_MPreTreatmentPrime' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1730:0: style: The function 'tst_MPreTreatmentPrime_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1319:0: style: The function 'tst_MPressureOcclusionData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1293:0: style: The function 'tst_MPressureOcclusionData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1870:0: style: The function 'tst_MSalineBolusResponse' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1852:0: style: The function 'tst_MSalineBolusResponse_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1704:0: style: The function 'tst_MTreatmentHeparinData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1694:0: style: The function 'tst_MTreatmentHeparinData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1600:0: style: The function 'tst_MTreatmentParametersResp' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1520:0: style: The function 'tst_MTreatmentParametersResp_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:153:0: style: The function 'tst_MTreatmentRanges' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:122:0: style: The function 'tst_MTreatmentRanges_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1665:0: style: The function 'tst_MTreatmentSalineBolusData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1647:0: style: The function 'tst_MTreatmentSalineBolusData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:984:0: style: The function 'tst_MTreatmentStateData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:962:0: style: The function 'tst_MTreatmentStateData_data' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1265:0: style: The function 'tst_MTreatmentTimeData' is never used. [unusedFunction] + +^ +unittests/tst_models.cpp:1247:0: style: The function 'tst_MTreatmentTimeData_data' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:600:0: style: The function 'tst_MessageBuilder_addActionId' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:627:0: style: The function 'tst_MessageBuilder_addData_LongerThanMax' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:614:0: style: The function 'tst_MessageBuilder_addData_shorterLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:666:0: style: The function 'tst_MessageBuilder_buildFrames_addActionId' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:679:0: style: The function 'tst_MessageBuilder_buildFrames_addData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:692:0: style: The function 'tst_MessageBuilder_buildFrames_eLenCanFrame' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:643:0: style: The function 'tst_MessageBuilder_checkCRC' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:655:0: style: The function 'tst_MessageBuilder_getHeader' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:715:0: style: The function 'tst_MessageDispatcher_actionTransmit' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:727:0: style: The function 'tst_MessageDispatcher_actionTransmit_Unknown' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:274:0: style: The function 'tst_MessageInterpreter_HD_emptyMessages' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:162:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:176:0: style: The function 'tst_MessageInterpreter_adjustBloodDialysateData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:190:0: style: The function 'tst_MessageInterpreter_adjustDurationData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:204:0: style: The function 'tst_MessageInterpreter_adjustDurationData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:246:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:260:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationConfirmData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:218:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:232:0: style: The function 'tst_MessageInterpreter_adjustUltrafiltrationEditData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:87:0: style: The function 'tst_MessageInterpreter_bloodFlowData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:386:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:400:0: style: The function 'tst_MessageInterpreter_canbusFaultCountData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:102:0: style: The function 'tst_MessageInterpreter_dialysateInletFlowData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:117:0: style: The function 'tst_MessageInterpreter_dialysateOutletFlowData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:451:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustBloodDialysateReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:465:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustDurationReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:563:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustHeparinReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:572:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustPressuresReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:549:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustSalineReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:535:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationConfirmReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:521:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationEditReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:493:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationInitReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:507:0: style: The function 'tst_MessageInterpreter_interpretMessage_AdjustUltrafiltrationStateReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:479:0: style: The function 'tst_MessageInterpreter_interpretMessage_AlarmSilenceReq' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:586:0: style: The function 'tst_MessageInterpreter_interpretMessage_CANBusFaultCount' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:423:0: style: The function 'tst_MessageInterpreter_interpretMessage_DG_Unhandled' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:415:0: style: The function 'tst_MessageInterpreter_interpretMessage_String' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:47:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:60:0: style: The function 'tst_MessageInterpreter_isPayloadLenValid_undefined' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:33:0: style: The function 'tst_MessageInterpreter_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:330:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:344:0: style: The function 'tst_MessageInterpreter_loadCellReadingsData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:435:0: style: The function 'tst_MessageInterpreter_notify_fromByteArray' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:73:0: style: The function 'tst_MessageInterpreter_powerOffData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:147:0: style: The function 'tst_MessageInterpreter_pressureOcclusionData' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:358:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:372:0: style: The function 'tst_MessageInterpreter_temperatureSensorsData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:302:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_isType' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:316:0: style: The function 'tst_MessageInterpreter_treatmentRangesData_payloadLen' is never used. [unusedFunction] + +^ +unittests/tst_messaging.cpp:132:0: style: The function 'tst_MessageInterpreter_treatmentTime' is never used. [unusedFunction] + +^ +unittests/tst_threads.cpp:36:0: style: The function 'tst_Thread_init' is never used. [unusedFunction] + +^ +unittests/tst_threads.cpp:48:0: style: The function 'tst_Thread_names' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:35:0: style: The function 'tst_floatCompare_isMatch' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:30:0: style: The function 'tst_floatCompare_noMatch' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:172:0: style: The function 'tst_fromvariant_Bool_False' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:164:0: style: The function 'tst_fromvariant_Bool_True' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:72:0: style: The function 'tst_fromvariant_ByteArray' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:83:0: style: The function 'tst_fromvariant_Float' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:116:0: style: The function 'tst_fromvariant_Int_Neg' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:105:0: style: The function 'tst_fromvariant_Int_Pos' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:67:0: style: The function 'tst_fromvariant_IsString' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:127:0: style: The function 'tst_fromvariant_List' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:56:0: style: The function 'tst_fromvariant_NoString' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:94:0: style: The function 'tst_fromvariant_UInt' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:180:0: style: The function 'tst_fromvariant_Undefined' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:238:0: style: The function 'tst_getValue_len' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:48:0: style: The function 'tst_getbits_IsError' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:40:0: style: The function 'tst_getbits_NoError' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:261:0: style: The function 'tst_safeIncrement_GtMaxValue_Step1' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:254:0: style: The function 'tst_safeIncrement_GtMaxValue_Step10' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:247:0: style: The function 'tst_safeIncrement_StepZero' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:188:0: style: The function 'tst_toStringList_Default' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:221:0: style: The function 'tst_toStringList_Prefix' is never used. [unusedFunction] + +^ +unittests/tst_utilities.cpp:204:0: style: The function 'tst_toStringList_RemoveDuplicate' is never used. [unusedFunction] + +^ nofile:0:0: information: Cppcheck cannot find all the include files. Cppcheck can check the code without the include files found. But the results will probably be more accurate if all the include files are found. Please check your project's include directories and add all of them as include directories for Cppcheck. To see what files Cppcheck cannot find use --check-config. [missingInclude] Index: cppcheck.log =================================================================== diff -u -r26fe902811376b9f164925dc3c1f016a783d9f84 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- cppcheck.log (.../cppcheck.log) (revision 26fe902811376b9f164925dc3c1f016a783d9f84) +++ cppcheck.log (.../cppcheck.log) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -1,1298 +1,1500 @@ -02/02/2023 19:39 +02/10/2023 9:49 Behrouz NematiPour Checking main.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking main.cpp: UNIT_TEST... +Checking main.cpp: Q_PROPERTY=1;Q_ENUM=1... 1/214 files checked 1% done Checking sources/AlarmGenerator.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/AlarmGenerator.cpp: Q_PROPERTY=1;Q_ENUM=1... 2/214 files checked 1% done Checking sources/ApplicationController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/ApplicationController.cpp: Q_PROPERTY=1;Q_ENUM=1... 3/214 files checked 3% done Checking sources/ApplicationPost.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -4/214 files checked 3% done +Checking sources/ApplicationPost.cpp: Q_PROPERTY=1;Q_ENUM=1... +4/214 files checked 4% done Checking sources/MainTimer.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/MainTimer.cpp: Q_PROPERTY=1;Q_ENUM=1... 5/214 files checked 4% done Checking sources/Threads.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/Threads.cpp: Q_PROPERTY=1;Q_ENUM=1... 6/214 files checked 4% done Checking sources/bluetooth/BluetoothInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/bluetooth/BluetoothInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... 7/214 files checked 9% done Checking sources/canbus/CanInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/canbus/CanInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... 8/214 files checked 10% done Checking sources/canbus/FrameInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/canbus/FrameInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... 9/214 files checked 11% done Checking sources/canbus/MessageAcknowModel.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/canbus/MessageAcknowModel.cpp: Q_PROPERTY=1;Q_ENUM=1... 10/214 files checked 11% done Checking sources/canbus/MessageBuilder.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/canbus/MessageBuilder.cpp: DISABLE_CRC... +Checking sources/canbus/MessageBuilder.cpp: Q_PROPERTY=1;Q_ENUM=1... 11/214 files checked 13% done Checking sources/canbus/MessageDispatcher.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/canbus/MessageDispatcher.cpp: DEBUG_ACKBACK_HD_TO_UI... -Checking sources/canbus/MessageDispatcher.cpp: DEBUG_OUT_OF_SYNC... -12/214 files checked 16% done +Checking sources/canbus/MessageDispatcher.cpp: Q_PROPERTY=1;Q_ENUM=1... +12/214 files checked 15% done Checking sources/canbus/MessageInterpreter.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/canbus/MessageInterpreter.cpp: Q_PROPERTY=1;Q_ENUM=1... 13/214 files checked 20% done Checking sources/cloudsync/CloudSyncController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/cloudsync/CloudSyncController.cpp: Q_PROPERTY=1;Q_ENUM=1... 14/214 files checked 23% done Checking sources/device/DeviceController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/device/DeviceController.cpp: BUILD_FOR_DESKTOP... -15/214 files checked 24% done +Checking sources/device/DeviceController.cpp: Q_PROPERTY=1;Q_ENUM=1... +15/214 files checked 25% done Checking sources/device/DeviceError.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/device/DeviceError.cpp: Q_PROPERTY=1;Q_ENUM=1... 16/214 files checked 25% done Checking sources/device/DeviceModels.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/device/DeviceModels.cpp: Q_PROPERTY=1;Q_ENUM=1... 17/214 files checked 25% done Checking sources/device/DeviceView.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/device/DeviceView.cpp: Q_PROPERTY=1;Q_ENUM=1... 18/214 files checked 26% done Checking sources/gui/GuiController.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -19/214 files checked 27% done +Checking sources/gui/GuiController.cpp: Q_PROPERTY=1;Q_ENUM=1... +19/214 files checked 26% done Checking sources/gui/GuiGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/gui/GuiGlobals.cpp: BUILD_FOR_DESKTOP... +Checking sources/gui/GuiGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... 20/214 files checked 27% done Checking sources/gui/GuiView.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/gui/GuiView.cpp: BUILD_FOR_DESKTOP... +Checking sources/gui/GuiView.cpp: Q_PROPERTY=1;Q_ENUM=1... 21/214 files checked 28% done Checking sources/model/MAbstract.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/MAbstract.cpp: Q_PROPERTY=1;Q_ENUM=1... 22/214 files checked 28% done Checking sources/model/MAbstractDynamic.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/MAbstractDynamic.cpp: Q_PROPERTY=1;Q_ENUM=1... 23/214 files checked 29% done Checking sources/model/confirm/MDuetConfirmHDi.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/confirm/MDuetConfirmHDi.cpp: Q_PROPERTY=1;Q_ENUM=1... 24/214 files checked 29% done Checking sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/adjustment/settings/MAdjustDGDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 25/214 files checked 29% done Checking sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/adjustment/settings/MAdjustDGSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 26/214 files checked 29% done Checking sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/adjustment/settings/MAdjustDGServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 27/214 files checked 29% done Checking sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/adjustment/settings/MAdjustDGVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 28/214 files checked 29% done Checking sources/model/dg/data/MDGAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... 29/214 files checked 30% done Checking sources/model/dg/data/MDGConductivityData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... 30/214 files checked 30% done Checking sources/model/dg/data/MDGDebugText.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... 31/214 files checked 30% done Checking sources/model/dg/data/MDGDrainPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... 32/214 files checked 30% done Checking sources/model/dg/data/MDGGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... 33/214 files checked 30% done Checking sources/model/dg/data/MDGHeatersData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... 34/214 files checked 30% done Checking sources/model/dg/data/MDGLoadCellReadingsData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... 35/214 files checked 30% done Checking sources/model/dg/data/MDGOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -36/214 files checked 30% done +Checking sources/model/dg/data/MDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... +36/214 files checked 31% done Checking sources/model/dg/data/MDGPressuresData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... 37/214 files checked 31% done Checking sources/model/dg/data/MDGROPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... 38/214 files checked 31% done Checking sources/model/dg/data/MDGReservoirData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... 39/214 files checked 31% done Checking sources/model/dg/data/MDGTemperaturesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/MDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 40/214 files checked 31% done Checking sources/model/dg/data/MDGValvesStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -41/214 files checked 31% done +Checking sources/model/dg/data/MDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... +41/214 files checked 32% done Checking sources/model/dg/data/post/MDGPostFinalResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -42/214 files checked 31% done +Checking sources/model/dg/data/post/MDGPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... +42/214 files checked 32% done Checking sources/model/dg/data/post/MDGPostSingleResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -43/214 files checked 31% done +Checking sources/model/dg/data/post/MDGPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... +43/214 files checked 32% done Checking sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/dg/data/pretreatment/MDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... 44/214 files checked 32% done Checking sources/model/hd/adjustment/MAdjustPowerOff.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/MAdjustPowerOff.cpp: Q_PROPERTY=1;Q_ENUM=1... 45/214 files checked 32% done Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 46/214 files checked 32% done Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/disinfect/MDisinfectAdjustStartResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 47/214 files checked 32% done Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustDisposablesRemovalConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 48/214 files checked 32% done Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/posttreatment/MPostTreatmentAdjustTreatmentLogResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 49/214 files checked 33% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 50/214 files checked 33% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -51/214 files checked 33% done +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustDisposablesPrimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +51/214 files checked 34% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -52/214 files checked 33% done +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustInitTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +52/214 files checked 34% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustParametersValidationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 53/214 files checked 34% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionBeginResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 54/214 files checked 34% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustPatientConnectionConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 55/214 files checked 34% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustStartTreatmentResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 56/214 files checked 34% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -57/214 files checked 34% done +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustUltrafiltrationInitResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +57/214 files checked 35% done Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -58/214 files checked 34% done +Checking sources/model/hd/adjustment/pretreatment/MPreTreatmentAdjustWaterSampleResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +58/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -59/214 files checked 34% done +Checking sources/model/hd/adjustment/settings/MAdjustHDAlarmVolumeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +59/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/settings/MAdjustHDDateTimeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 60/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/settings/MAdjustHDSerialNumberResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 61/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/settings/MAdjustHDServiceDatesResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 62/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/settings/MAdjustHDServiceModeResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 63/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... 64/214 files checked 35% done Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/settings/MAdjustHDVersionsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 65/214 files checked 35% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -66/214 files checked 35% done +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustBloodDialysateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +66/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustDurationResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 67/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustEndResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 68/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustHeparinResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 69/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 70/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRecirculateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 71/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustRinsebackResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 72/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustSalineResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 73/214 files checked 36% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -74/214 files checked 36% done +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationConfirmResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... +74/214 files checked 37% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationEditResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 75/214 files checked 37% done Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/adjustment/treatment/MTreatmentAdjustUltrafiltrationStateResponse.cpp: Q_PROPERTY=1;Q_ENUM=1... 76/214 files checked 37% done Checking sources/model/hd/alarm/MAlarmActiveList.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/alarm/MAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... 77/214 files checked 37% done Checking sources/model/hd/alarm/MAlarmCleared.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/alarm/MAlarmCleared.cpp: Q_PROPERTY=1;Q_ENUM=1... 78/214 files checked 37% done Checking sources/model/hd/alarm/MAlarmClearedCondition.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/alarm/MAlarmClearedCondition.cpp: Q_PROPERTY=1;Q_ENUM=1... 79/214 files checked 37% done Checking sources/model/hd/alarm/MAlarmMapping.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/alarm/MAlarmMapping.cpp: Q_PROPERTY=1;Q_ENUM=1... 80/214 files checked 44% done Checking sources/model/hd/alarm/MAlarmStatusData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/alarm/MAlarmStatusData.cpp: Q_PROPERTY=1;Q_ENUM=1... 81/214 files checked 45% done Checking sources/model/hd/alarm/MAlarmTriggered.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/alarm/MAlarmTriggered.cpp: Q_PROPERTY=1;Q_ENUM=1... 82/214 files checked 45% done Checking sources/model/hd/data/MHDAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... 83/214 files checked 45% done Checking sources/model/hd/data/MHDAirBubbleData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... 84/214 files checked 45% done Checking sources/model/hd/data/MHDAirTrapData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... 85/214 files checked 45% done Checking sources/model/hd/data/MHDBloodLeakData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -86/214 files checked 45% done +Checking sources/model/hd/data/MHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... +86/214 files checked 46% done Checking sources/model/hd/data/MHDDebugText.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDDebugText.cpp: Q_PROPERTY=1;Q_ENUM=1... 87/214 files checked 46% done Checking sources/model/hd/data/MHDGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... 88/214 files checked 46% done Checking sources/model/hd/data/MHDOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 89/214 files checked 46% done Checking sources/model/hd/data/MHDSyringePumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... 90/214 files checked 46% done Checking sources/model/hd/data/MTreatmentRangesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/MTreatmentRangesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 91/214 files checked 46% done Checking sources/model/hd/data/post/MHDPostFinalResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/post/MHDPostFinalResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... 92/214 files checked 46% done Checking sources/model/hd/data/post/MHDPostSingleResultData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/post/MHDPostSingleResultData.cpp: Q_PROPERTY=1;Q_ENUM=1... 93/214 files checked 46% done Checking sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -94/214 files checked 46% done +Checking sources/model/hd/data/post/MUIPostFinalResultHDRequest.cpp: Q_PROPERTY=1;Q_ENUM=1... +94/214 files checked 47% done Checking sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/posttreatment/MPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 95/214 files checked 47% done Checking sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/pretreatment/MPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 96/214 files checked 47% done Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... 97/214 files checked 47% done Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/pretreatment/MPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 98/214 files checked 47% done Checking sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 99/214 files checked 47% done Checking sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentBloodFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... 100/214 files checked 47% done Checking sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -101/214 files checked 47% done +Checking sources/model/hd/data/treatment/MTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... +101/214 files checked 48% done Checking sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentDialysateFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... 102/214 files checked 48% done Checking sources/model/hd/data/treatment/MTreatmentHeparinData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... 103/214 files checked 48% done Checking sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentOutletFlowData.cpp: Q_PROPERTY=1;Q_ENUM=1... 104/214 files checked 48% done Checking sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentPressureOcclusionData.cpp: Q_PROPERTY=1;Q_ENUM=1... 105/214 files checked 48% done Checking sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... 106/214 files checked 48% done Checking sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -107/214 files checked 48% done +Checking sources/model/hd/data/treatment/MTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... +107/214 files checked 49% done Checking sources/model/hd/data/treatment/MTreatmentSalineData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -108/214 files checked 48% done +Checking sources/model/hd/data/treatment/MTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... +108/214 files checked 49% done Checking sources/model/hd/data/treatment/MTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 109/214 files checked 49% done Checking sources/model/hd/data/treatment/MTreatmentStopData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... 110/214 files checked 49% done Checking sources/model/hd/data/treatment/MTreatmentTimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatment/MTreatmentTimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 111/214 files checked 49% done Checking sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatmentlog/MTreatmentLogAlarmData.cpp: Q_PROPERTY=1;Q_ENUM=1... 112/214 files checked 49% done Checking sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatmentlog/MTreatmentLogAvrgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 113/214 files checked 49% done Checking sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/hd/data/treatmentlog/MTreatmentLogEventData.cpp: Q_PROPERTY=1;Q_ENUM=1... 114/214 files checked 49% done Checking sources/model/settings/MBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/settings/MBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... 115/214 files checked 50% done Checking sources/model/settings/MSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/settings/MSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... 116/214 files checked 50% done Checking sources/model/ui/data/MUIBloodPressureData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/model/ui/data/MUIBloodPressureData.cpp: Q_PROPERTY=1;Q_ENUM=1... 117/214 files checked 50% done Checking sources/storage/FileHandler.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/storage/FileHandler.cpp: Q_PROPERTY=1;Q_ENUM=1... 118/214 files checked 52% done Checking sources/storage/Logger.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/storage/Logger.cpp: BUILD_FOR_DESKTOP... +Checking sources/storage/Logger.cpp: Q_PROPERTY=1;Q_ENUM=1... 119/214 files checked 53% done Checking sources/storage/Settings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/storage/Settings.cpp: Q_PROPERTY=1;Q_ENUM=1... 120/214 files checked 54% done Checking sources/storage/StorageGlobals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/storage/StorageGlobals.cpp: BUILD_FOR_TARGET... +Checking sources/storage/StorageGlobals.cpp: Q_PROPERTY=1;Q_ENUM=1... 121/214 files checked 54% done Checking sources/storage/TreatmentLog.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/storage/TreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... 122/214 files checked 56% done Checking sources/utility/crc.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/utility/crc.cpp: Q_PROPERTY=1;Q_ENUM=1... 123/214 files checked 56% done Checking sources/utility/format.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -124/214 files checked 56% done +Checking sources/utility/format.cpp: Q_PROPERTY=1;Q_ENUM=1... +124/214 files checked 57% done Checking sources/utility/types.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/utility/types.cpp: Q_PROPERTY=1;Q_ENUM=1... 125/214 files checked 57% done Checking sources/view/VAdjustmentResponseBase.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/VAdjustmentResponseBase.cpp: Q_PROPERTY=1;Q_ENUM=1... 126/214 files checked 57% done Checking sources/view/VEventSpy.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking sources/view/VEventSpy.cpp: DEBUG_BCUFF_MIMIC... -Checking sources/view/VEventSpy.cpp: SPY_MOUSE_EVENT... -127/214 files checked 57% done +Checking sources/view/VEventSpy.cpp: Q_PROPERTY=1;Q_ENUM=1... +127/214 files checked 58% done Checking sources/view/VGeneralEvent.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/VGeneralEvent.cpp: Q_PROPERTY=1;Q_ENUM=1... 128/214 files checked 58% done Checking sources/view/VTreatmentCreate(legacy).cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/VTreatmentCreate(legacy).cpp: Q_PROPERTY=1;Q_ENUM=1... 129/214 files checked 60% done Checking sources/view/VTreatmentCreate.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -130/214 files checked 60% done +Checking sources/view/VTreatmentCreate.cpp: Q_PROPERTY=1;Q_ENUM=1... +130/214 files checked 61% done Checking sources/view/confirm/VConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/confirm/VConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... 131/214 files checked 61% done Checking sources/view/dg/data/VDGAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... 132/214 files checked 61% done Checking sources/view/dg/data/VDGConductivityData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGConductivityData.cpp: Q_PROPERTY=1;Q_ENUM=1... 133/214 files checked 61% done Checking sources/view/dg/data/VDGDrainPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGDrainPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... 134/214 files checked 61% done Checking sources/view/dg/data/VDGHeatersData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -135/214 files checked 61% done +Checking sources/view/dg/data/VDGHeatersData.cpp: Q_PROPERTY=1;Q_ENUM=1... +135/214 files checked 62% done Checking sources/view/dg/data/VDGLoadCellReadingsData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -136/214 files checked 61% done +Checking sources/view/dg/data/VDGLoadCellReadingsData.cpp: Q_PROPERTY=1;Q_ENUM=1... +136/214 files checked 62% done Checking sources/view/dg/data/VDGOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -137/214 files checked 61% done +Checking sources/view/dg/data/VDGOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... +137/214 files checked 62% done Checking sources/view/dg/data/VDGPressuresData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -138/214 files checked 61% done +Checking sources/view/dg/data/VDGPressuresData.cpp: Q_PROPERTY=1;Q_ENUM=1... +138/214 files checked 62% done Checking sources/view/dg/data/VDGROPumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGROPumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... 139/214 files checked 62% done Checking sources/view/dg/data/VDGReservoirData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGReservoirData.cpp: Q_PROPERTY=1;Q_ENUM=1... 140/214 files checked 62% done Checking sources/view/dg/data/VDGTemperaturesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGTemperaturesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 141/214 files checked 62% done Checking sources/view/dg/data/VDGValvesStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/VDGValvesStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 142/214 files checked 62% done Checking sources/view/dg/data/post/VDGPOSTData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/post/VDGPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... 143/214 files checked 62% done Checking sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/dg/data/pretreatment/VDGFilterFlushData.cpp: Q_PROPERTY=1;Q_ENUM=1... 144/214 files checked 62% done Checking sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/common/VCommonAdjustmentVitals.cpp: Q_PROPERTY=1;Q_ENUM=1... 145/214 files checked 63% done Checking sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/disinfect/VDisinfectAdjustDisinfect.cpp: Q_PROPERTY=1;Q_ENUM=1... 146/214 files checked 63% done Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -147/214 files checked 63% done +Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustDisposablesRemovalConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... +147/214 files checked 64% done Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -148/214 files checked 63% done +Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustPatientDisconnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... +148/214 files checked 64% done Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/posttreatment/VPostTreatmentAdjustTreatmentLog.cpp: Q_PROPERTY=1;Q_ENUM=1... 149/214 files checked 64% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentConsumablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... 150/214 files checked 64% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... 151/214 files checked 64% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentDisposablesPrime.cpp: Q_PROPERTY=1;Q_ENUM=1... 152/214 files checked 64% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -153/214 files checked 64% done +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentInitTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... +153/214 files checked 65% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -154/214 files checked 64% done +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionBegin.cpp: Q_PROPERTY=1;Q_ENUM=1... +154/214 files checked 65% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentPatientConnectionConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... 155/214 files checked 65% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentStartTreatment.cpp: Q_PROPERTY=1;Q_ENUM=1... 156/214 files checked 65% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentUltrafiltrationInit.cpp: Q_PROPERTY=1;Q_ENUM=1... 157/214 files checked 65% done Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/pretreatment/VPreTreatmentAdjustmentWaterSample.cpp: Q_PROPERTY=1;Q_ENUM=1... 158/214 files checked 65% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -159/214 files checked 65% done +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentDuration.cpp: Q_PROPERTY=1;Q_ENUM=1... +159/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -160/214 files checked 65% done +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentEnd.cpp: Q_PROPERTY=1;Q_ENUM=1... +160/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -161/214 files checked 65% done +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentFlows.cpp: Q_PROPERTY=1;Q_ENUM=1... +161/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentHeparin.cpp: Q_PROPERTY=1;Q_ENUM=1... 162/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentPressuresLimits.cpp: Q_PROPERTY=1;Q_ENUM=1... 163/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRecirculate.cpp: Q_PROPERTY=1;Q_ENUM=1... 164/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentRinseback.cpp: Q_PROPERTY=1;Q_ENUM=1... 165/214 files checked 66% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -166/214 files checked 66% done +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentSaline.cpp: Q_PROPERTY=1;Q_ENUM=1... +166/214 files checked 67% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -167/214 files checked 66% done +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationConfirm.cpp: Q_PROPERTY=1;Q_ENUM=1... +167/214 files checked 67% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationEdit.cpp: Q_PROPERTY=1;Q_ENUM=1... 168/214 files checked 67% done Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/adjustment/treatment/VTreatmentAdjustmentUltrafiltrationState.cpp: Q_PROPERTY=1;Q_ENUM=1... 169/214 files checked 67% done Checking sources/view/hd/alarm/VAlarmActiveList.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -170/214 files checked 67% done +Checking sources/view/hd/alarm/VAlarmActiveList.cpp: Q_PROPERTY=1;Q_ENUM=1... +170/214 files checked 68% done Checking sources/view/hd/alarm/VAlarmStatus.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/alarm/VAlarmStatus.cpp: Q_PROPERTY=1;Q_ENUM=1... 171/214 files checked 68% done Checking sources/view/hd/data/VHDAccelerometerData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/VHDAccelerometerData.cpp: Q_PROPERTY=1;Q_ENUM=1... 172/214 files checked 68% done Checking sources/view/hd/data/VHDAirBubbleData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/VHDAirBubbleData.cpp: Q_PROPERTY=1;Q_ENUM=1... 173/214 files checked 68% done Checking sources/view/hd/data/VHDAirTrapData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -174/214 files checked 68% done +Checking sources/view/hd/data/VHDAirTrapData.cpp: Q_PROPERTY=1;Q_ENUM=1... +174/214 files checked 69% done Checking sources/view/hd/data/VHDBloodLeakData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -175/214 files checked 68% done +Checking sources/view/hd/data/VHDBloodLeakData.cpp: Q_PROPERTY=1;Q_ENUM=1... +175/214 files checked 69% done Checking sources/view/hd/data/VHDOperationModeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/VHDOperationModeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 176/214 files checked 69% done Checking sources/view/hd/data/VHDSyringePumpData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/VHDSyringePumpData.cpp: Q_PROPERTY=1;Q_ENUM=1... 177/214 files checked 69% done Checking sources/view/hd/data/VTreatmentRanges.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/VTreatmentRanges.cpp: Q_PROPERTY=1;Q_ENUM=1... 178/214 files checked 70% done Checking sources/view/hd/data/post/VHDPOSTData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/post/VHDPOSTData.cpp: Q_PROPERTY=1;Q_ENUM=1... 179/214 files checked 70% done Checking sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -180/214 files checked 70% done +Checking sources/view/hd/data/posttreatment/VPostTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... +180/214 files checked 71% done Checking sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -181/214 files checked 70% done +Checking sources/view/hd/data/pretreatment/VPreTreatmentDisposablesPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... +181/214 files checked 71% done Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -182/214 files checked 70% done +Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestDryData.cpp: Q_PROPERTY=1;Q_ENUM=1... +182/214 files checked 71% done Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -183/214 files checked 70% done +Checking sources/view/hd/data/pretreatment/VPreTreatmentSelfTestNoCartridgeData.cpp: Q_PROPERTY=1;Q_ENUM=1... +183/214 files checked 71% done Checking sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -184/214 files checked 71% done +Checking sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... +184/214 files checked 72% done Checking sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VHDTreatmentStatesData.cpp: Q_PROPERTY=1;Q_ENUM=1... 185/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentBloodFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... 186/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentBloodPrimeData.cpp: Q_PROPERTY=1;Q_ENUM=1... 187/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentDialysateFlow.cpp: Q_PROPERTY=1;Q_ENUM=1... 188/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentHeparinData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentHeparinData.cpp: Q_PROPERTY=1;Q_ENUM=1... 189/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentPressureOcclusion.cpp: Q_PROPERTY=1;Q_ENUM=1... 190/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentRecirculateData.cpp: Q_PROPERTY=1;Q_ENUM=1... 191/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentRinsebackData.cpp: Q_PROPERTY=1;Q_ENUM=1... 192/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentSalineData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentSalineData.cpp: Q_PROPERTY=1;Q_ENUM=1... 193/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentStopData.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/hd/data/treatment/VTreatmentStopData.cpp: Q_PROPERTY=1;Q_ENUM=1... 194/214 files checked 73% done Checking sources/view/hd/data/treatment/VTreatmentTime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -195/214 files checked 73% done +Checking sources/view/hd/data/treatment/VTreatmentTime.cpp: Q_PROPERTY=1;Q_ENUM=1... +195/214 files checked 74% done Checking sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -196/214 files checked 73% done +Checking sources/view/hd/data/treatment/VTreatmentUltrafiltration.cpp: Q_PROPERTY=1;Q_ENUM=1... +196/214 files checked 74% done Checking sources/view/settings/VAdjustmentAlarmVolume.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VAdjustmentAlarmVolume.cpp: Q_PROPERTY=1;Q_ENUM=1... 197/214 files checked 74% done Checking sources/view/settings/VAdjustmentServiceDates.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VAdjustmentServiceDates.cpp: Q_PROPERTY=1;Q_ENUM=1... 198/214 files checked 74% done Checking sources/view/settings/VAdjustmentServiceMode.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VAdjustmentServiceMode.cpp: Q_PROPERTY=1;Q_ENUM=1... 199/214 files checked 74% done Checking sources/view/settings/VAdjustmentVersions.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VAdjustmentVersions.cpp: Q_PROPERTY=1;Q_ENUM=1... 200/214 files checked 74% done Checking sources/view/settings/VBluetooth.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VBluetooth.cpp: Q_PROPERTY=1;Q_ENUM=1... 201/214 files checked 75% done Checking sources/view/settings/VDateTime.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VDateTime.cpp: Q_PROPERTY=1;Q_ENUM=1... 202/214 files checked 76% done Checking sources/view/settings/VNetworkModel.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VNetworkModel.cpp: Q_PROPERTY=1;Q_ENUM=1... 203/214 files checked 77% done Checking sources/view/settings/VSettings.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking sources/view/settings/VSettings.cpp: Q_PROPERTY=1;Q_ENUM=1... 204/214 files checked 78% done Checking sources/wifi/WifiInterface.cpp ... Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -205/214 files checked 80% done +Checking sources/wifi/WifiInterface.cpp: Q_PROPERTY=1;Q_ENUM=1... +205/214 files checked 81% done Checking unittests/tst_acknow.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_acknow.cpp: Q_PROPERTY=1;Q_ENUM=1... 206/214 files checked 81% done Checking unittests/tst_canbus.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_canbus.cpp: Q_PROPERTY=1;Q_ENUM=1... 207/214 files checked 82% done Checking unittests/tst_initializations.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_initializations.cpp: Q_PROPERTY=1;Q_ENUM=1... 208/214 files checked 82% done Checking unittests/tst_logging.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_logging.cpp: Q_PROPERTY=1;Q_ENUM=1... 209/214 files checked 82% done Checking unittests/tst_messaging.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_messaging.cpp: Q_PROPERTY=1;Q_ENUM=1... 210/214 files checked 84% done Checking unittests/tst_models.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native -Checking unittests/tst_models.cpp: CONSOLEOUT... +Checking unittests/tst_models.cpp: Q_PROPERTY=1;Q_ENUM=1... 211/214 files checked 96% done Checking unittests/tst_threads.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_threads.cpp: Q_PROPERTY=1;Q_ENUM=1... 212/214 files checked 96% done Checking unittests/tst_utilities.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_utilities.cpp: Q_PROPERTY=1;Q_ENUM=1... 213/214 files checked 97% done Checking unittests/tst_views.cpp ... -Defines: +Defines:Q_PROPERTY=1;Q_ENUM=1 Undefines: Includes: -I.//sources/ -I.//sources/bluetooth/ -I.//sources/canbus/ -I.//sources/cloudsync/ -I.//sources/device/ -I.//sources/gui/ -I.//sources/model/ -I.//sources/storage/ -I.//sources/utility/ -I.//sources/view/ -I.//sources/wifi/ -I.//unittests/ Platform:Native +Checking unittests/tst_views.cpp: Q_PROPERTY=1;Q_ENUM=1... 214/214 files checked 100% done Index: denali.pro.user =================================================================== diff -u -r26fe902811376b9f164925dc3c1f016a783d9f84 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- denali.pro.user (.../denali.pro.user) (revision 26fe902811376b9f164925dc3c1f016a783d9f84) +++ denali.pro.user (.../denali.pro.user) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -1,14 +1,14 @@ - + EnvironmentId {d3e165e0-350b-4c5e-a5f5-6e3e06ca0990} ProjectExplorer.Project.ActiveTarget - 1 + 0 ProjectExplorer.Project.EditorSettings @@ -89,11 +89,11 @@ ProjectExplorer.Project.Target.0 - GenericLinuxOsType - Qt 5.15.10 (iMX8) - Qt 5.15.10 (iMX8) - {ada4083c-13b6-4ac8-a486-71ff00b060da} - 1 + Desktop + Desktop Qt 5.15.10 GCC 64bit + Desktop Qt 5.15.10 GCC 64bit + qt.qt5.51510.gcc_64_kit + 0 0 0 @@ -250,80 +250,30 @@ 3 - - true - RemoteLinux.KillAppStep - - - - - - - - - true - RemoteLinux.DirectUploadStep - - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali - - - 192.168.10.186 - 192.168.10.186 - 192.168.10.228 - 192.168.10.228 - - - /home/root - /home/root - /home/root - /home/root - - - /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - - - 2023-01-18T20:13:36.296 - 2023-01-18T17:47:08.797 - 2023-01-17T18:18:03.749 - 2023-01-17T18:06:25.579 - - - 2023-01-18T20:13:33.000 - 2023-01-18T17:47:04.000 - 2023-01-17T18:17:25.000 - 2023-01-17T18:05:42.000 - - - 2 + 0 Deploy Deploy ProjectExplorer.BuildSteps.Deploy 1 false - DeployToGenericLinux + ProjectExplorer.DefaultDeployConfiguration 1 true true true - 1 + 2 - denali (on %{Device:Name}) - RemoteLinuxRunConfiguration:/home/denali/Projects/application/denali.pro + Qt4ProjectManager.Qt4RunConfiguration:/home/denali/Projects/application/denali.pro /home/denali/Projects/application/denali.pro --disable-alarm-no-minimize false true + true false true /home/denali/Projects/tmp/build/build-denali-Desktop_Qt_5_15_10_GCC_64bit-Debug @@ -364,8 +314,7 @@ true - -b --tag denali >> denali - + -b --tag denali >> denali sha256sum %{buildDir} ProjectExplorer.ProcessStep @@ -419,8 +368,7 @@ true - -b --tag denali >> denali - + -b --tag denali >> denali sha256sum %{buildDir} ProjectExplorer.ProcessStep @@ -510,6 +458,7 @@ true RemoteLinux.DirectUploadStep + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali @@ -521,37 +470,36 @@ /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali + /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Release/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - /home/denali/Projects/tmp/build/build-denali-Qt_5_15_10_iMX8-Debug/denali - 192.168.10.159 - 192.168.137.210 - 192.168.10.138 192.168.10.228 192.168.10.228 - 192.168.137.25 - 192.168.137.30 - 192.168.137.170 + 192.168.10.138 + 192.168.137.210 + 192.168.10.159 192.168.10.186 192.168.10.167 - 192.168.137.24 - 192.168.40.23 192.168.137.170 - 192.168.137.26 - 192.168.137.3 + 192.168.137.30 + 192.168.137.25 192.168.10.186 - 192.168.137.247 - 192.168.137.125 - 192.168.137.36 + 192.168.137.3 + 192.168.137.26 + 192.168.137.170 + 192.168.40.23 + 192.168.137.24 192.168.137.202 + 192.168.137.36 + 192.168.137.125 + 192.168.137.247 /home/root @@ -576,15 +524,15 @@ /home/root + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux + /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots - /opt/b2qt/3.1.18/sysroots/x86_64-pokysdk-linux /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots /opt/b2qt/3.1.18/sysroots @@ -598,48 +546,48 @@ /opt/b2qt/3.1.18/sysroots - 2023-01-24T18:19:13.179 - 2023-02-02T01:52:20.307 - 2023-02-02T09:06:00.862 - 2023-01-17T18:06:25.579 2023-01-17T18:18:03.749 - 2023-02-02T02:13:54.596 - 2023-02-02T02:30:48.337 - 2023-01-27T10:15:15.423 + 2023-01-17T18:06:25.579 + 2023-02-02T09:06:00.862 + 2023-02-02T01:52:20.307 + 2023-01-24T18:19:13.179 2023-01-18T17:47:08.797 2023-02-02T19:40:15.813 - 2023-02-02T02:05:29.947 - 2023-01-24T17:29:54.849 - 2023-01-27T09:45:11.898 - 2023-02-01T05:00:56.449 - 2023-02-02T02:40:56.627 + 2023-01-27T10:15:15.423 + 2023-02-02T02:30:48.337 + 2023-02-02T02:13:54.596 2023-01-18T20:13:36.296 - 2023-02-02T02:26:33.738 - 2023-02-02T02:07:25.922 - 2023-02-01T03:23:15.710 + 2023-02-02T02:40:56.627 + 2023-02-01T05:00:56.449 + 2023-01-27T09:45:11.898 + 2023-01-24T17:29:54.849 + 2023-02-02T02:05:29.947 2023-02-02T01:46:50.167 + 2023-02-01T03:23:15.710 + 2023-02-02T02:07:25.922 + 2023-02-02T02:26:33.738 - 2023-01-24T18:18:58.000 - 2023-02-02T01:52:16.000 - 2023-02-02T09:05:22.000 - 2023-01-17T18:05:42.000 2023-01-17T18:17:25.000 - 2023-02-02T02:14:08.000 - 2023-02-02T02:31:01.000 - 2023-01-27T10:15:08.000 + 2023-01-17T18:05:42.000 + 2023-02-02T09:05:22.000 + 2023-02-02T01:52:16.000 + 2023-01-24T18:18:58.000 2023-01-18T17:47:04.000 2023-02-02T19:39:36.000 - 2023-02-02T02:05:42.000 - 2023-01-24T17:30:03.000 - 2023-01-27T09:44:58.000 - 2023-02-01T05:00:51.000 - 2023-02-02T02:41:10.000 + 2023-01-27T10:15:08.000 + 2023-02-02T02:31:01.000 + 2023-02-02T02:14:08.000 2023-01-18T20:13:33.000 - 2023-02-02T02:26:46.000 - 2023-02-02T02:07:21.000 - 2023-02-01T03:23:28.000 + 2023-02-02T02:41:10.000 + 2023-02-01T05:00:51.000 + 2023-01-27T09:44:58.000 + 2023-01-24T17:30:03.000 + 2023-02-02T02:05:42.000 2023-02-02T01:47:02.000 + 2023-02-01T03:23:28.000 + 2023-02-02T02:07:21.000 + 2023-02-02T02:26:46.000 2 @@ -650,26 +598,26 @@ 1 false - ProjectExplorer.DefaultDeployConfiguration + DeployToGenericLinux 1 true true true - 2 + 1 - Qt4ProjectManager.Qt4RunConfiguration:/home/denali/Projects/application/denali.pro + denali (on %{Device:Name}) + RemoteLinuxRunConfiguration:/home/denali/Projects/application/denali.pro /home/denali/Projects/application/denali.pro 1 --disable-alarm-no-minimize false true - true false true - /home/denali/Projects/tmp/build/build-denali-Desktop_Qt_5_15_10_GCC_64bit-Debug + :0 1 Index: en_US.udic =================================================================== diff -u -rfde18b0e9684a491bdef054b9057159ca36afad7 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- en_US.udic (.../en_US.udic) (revision fde18b0e9684a491bdef054b9057159ca36afad7) +++ en_US.udic (.../en_US.udic) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -212,3 +212,4 @@ txr nd pre +vcan Index: imake.sh =================================================================== diff -u -r26fe902811376b9f164925dc3c1f016a783d9f84 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- imake.sh (.../imake.sh) (revision 26fe902811376b9f164925dc3c1f016a783d9f84) +++ imake.sh (.../imake.sh) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -26,9 +26,3 @@ echo " ********** bypassed cppcheck" fi -if [[ "$2" == "0" ]]; then - echo " ********** skipped the cppcheck call **********" -else - ./cppcheck.sh -fi - Index: main.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- main.cpp (.../main.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ main.cpp (.../main.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -97,6 +97,11 @@ bool gConsoleoutFrameInterface = false ; bool gConsoleoutCanInterface = false ; +bool gBypassFault = false ; +bool gEnableDryDemo = false ; +QString gActiveCANBus = "can0"; + + /*! * \page CommandLineSwitches Denali Command Line Switches * \verbatim @@ -231,7 +236,22 @@ QCoreApplication::translate("main", "Enables Acknowledgment Log")); parser.addOption(optionEnableAcknowLog); + // --- -D : enable-dry-demo + QCommandLineOption optionEnableDryDemo(QStringList() << "D" << "enable-dry-demo", + QCoreApplication::translate("main", "Enables Dry-Demo Mode")); + parser.addOption(optionEnableDryDemo); + // --- -A : active-can-bus + QCommandLineOption optionActiveCANBus(QStringList() << "A" << "active-can-bus", + QCoreApplication::translate("main", "Sets the Active CANBus [Shall start with 'can' or 'vcan]"), + QCoreApplication::translate("main", "CANBus")); + parser.addOption(optionActiveCANBus); + + // --- -F : disable-fault-screen + QCommandLineOption optionBypassFault(QStringList() << "F" << "disable-fault-screen", + QCoreApplication::translate("main", "Enables UI to navigate to Home/Standby on fault")); + parser.addOption(optionBypassFault); + // --- parse command lines parser.process(*qApp); @@ -248,6 +268,17 @@ gEnableCheckInLog = parser.isSet(optionEnableCheckInLog ); gEnableAcknowLog = parser.isSet(optionEnableAcknowLog ); + gBypassFault = parser.isSet(optionBypassFault ); + gEnableDryDemo = parser.isSet(optionEnableDryDemo ); + + if ( parser.isSet(optionActiveCANBus ) ) { + QString value = parser.value(optionActiveCANBus); + if ( ! value.startsWith("-") && // if a value is not given for the switch then the next switch becomes the value of the previous one + ( value.startsWith("can") || value.startsWith("vcan") ) ) { // to be more precise + gActiveCANBus = value; + } + } + if (parser.isSet(optionSendEmptyKeepAwake)) gSendEmptyKeepAwake = true; bool ok = false; Index: sources/canbus/CanInterface.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/canbus/CanInterface.h (.../CanInterface.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/canbus/CanInterface.h (.../CanInterface.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -54,7 +54,7 @@ // constants const char *_canType = "socketcan"; - QString _canInterface = "can0"; + QString _canInterface = gActiveCANBus; // can0 by default, can be altered by -A(--active-can-bus) const int _canBitRate = 250000; // member variables Index: sources/canbus/MessageGlobals.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/canbus/MessageGlobals.h (.../MessageGlobals.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -86,20 +86,20 @@ {Gui::GuiActionType::ID_HDBloodLeakData , 10 * 4 }, // 2 parameters each 4bytes // ---- {Gui::GuiActionType::ID_HDOperationModeData , 2 * 4 }, // 2 parameter each 4bytes - {Gui::GuiActionType::ID_PreTreatmentStates , 9 * 4 }, // 9 parameters each 4bytes + {Gui::GuiActionType::ID_PreTreatmentStates , 11 * 4 }, //11 parameters each 4bytes {Gui::GuiActionType::ID_TreatmentStates , 10 * 4 }, // 9 parameters each 4bytes {Gui::GuiActionType::ID_PostTreatmentStates , 1 * 4 }, // 1 parameter each 4bytes // DG Data Messages {Gui::GuiActionType::ID_DGROPumpData , 4 * 4 }, // 4 parameters each 4bytes - {Gui::GuiActionType::ID_DGPressuresData , 4 * 4 }, // 4 parameters each 4bytes + {Gui::GuiActionType::ID_DGPressuresData , 5 * 4 }, // 5 parameters each 4bytes {Gui::GuiActionType::ID_DGDrainPumpData , 4 * 4 }, // 4 parameters each 4bytes {Gui::GuiActionType::ID_DGOperationModeData , 2 * 4 }, // 2 parameter each 4bytes {Gui::GuiActionType::ID_DGReservoirData , 3 * 4 }, // 3 parameters each 4bytes {Gui::GuiActionType::ID_DGValvesStatesData , 1 * 2 }, // 1 parameters each 2bytes - {Gui::GuiActionType::ID_DGHeatersData , 3 * 4 }, // 3 parameters each 4bytes + {Gui::GuiActionType::ID_DGHeatersData , 11 * 4 }, // 11 parameters each 4bytes {Gui::GuiActionType::ID_DGLoadCellReadingsData , 4 * 4 }, // 4 parameters each 4bytes - {Gui::GuiActionType::ID_DGTemperaturesData , 13 * 4 }, // 13 parameters each 4bytes + {Gui::GuiActionType::ID_DGTemperaturesData , 21 * 4 }, // 21 parameters each 4bytes {Gui::GuiActionType::ID_DGAccelerometerData , 9 * 4 }, // 9 parameters each 4bytes {Gui::GuiActionType::ID_DGConductivityData , 5 * 4 }, // 9 parameters each 4bytes // HD Data Messages Index: sources/canbus/MessageInterpreter.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -685,7 +685,7 @@ bool MessageInterpreter::logUnhandledMessage(const Message &vMessage) const { bool ok = false; quint16 id = vMessage.actionId; - QString logString; + QString logString = QString("%1,").arg(id,4,16); if (_messageList.contains(id)) { ok = true; QStringList items = _messageList[id]; @@ -695,10 +695,10 @@ if (i == 0) { QString ID; switch (identifySource(vMessage.can_id, &ID)) { - case Can_Source::eCan_HD: logString = ID + ",~" + item; break; - case Can_Source::eCan_DG: logString = ID + ",~" + item; break; - case Can_Source::eCan_DI: logString = ID + ",~" + item; break; - default : logString = ID + ",~" + item; break; + case Can_Source::eCan_HD: logString += ID + ",~" + item; break; + case Can_Source::eCan_DG: logString += ID + ",~" + item; break; + case Can_Source::eCan_DI: logString += ID + ",~" + item; break; + default : logString += ID + ",~" + item; break; } } else { Index: sources/device/DeviceController.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/device/DeviceController.cpp (.../DeviceController.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -400,7 +400,12 @@ // has been tested manually bool ok; _usbDrive = vDevice.toLatin1().constData(); - ok = ::mount(_usbDrive, USB_Mount_Point, USB_File_System, MS_SYNCHRONOUS | MS_NOEXEC, "") == 0; + ok = ::mount(_usbDrive, USB_Mount_Point, USB_File_System, + MS_SYNCHRONOUS | + MS_NOEXEC | // Disallow program execution + MS_NODEV | + MS_NOSUID , // Setting this option on a file system prevents users from introducing privileged programs onto the system and allowing non-root users to execute them. + "") == 0; if (ok) { _mounted = true; _removed = false; Index: sources/gui/GuiController.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/GuiController.cpp (.../GuiController.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/GuiController.cpp (.../GuiController.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -289,17 +289,8 @@ { //DEBUG:0: qDebug() << " ***** GuiController " << Storage::SDCard_Base_Path_Name << vIsReady << vIsReadOnly << gDisableSDCFailLogStop; - static bool hasAlarm = false; // to clear the alarm, only once. - if ( ( ! vIsReady || vIsReadOnly ) && ! gDisableSDCFailLogStop ) { - hasAlarm = true; - AlarmStatusData data = AlarmGenerator::ALARM_ID_UI_POST_FAILURE_SDCARD(); - emit didActionReceive(data); - } - else if ( hasAlarm ) { - hasAlarm = false; - AlarmStatusData data = AlarmGenerator::ALARM_ID_NO_ALARM(); - emit didActionReceive(data); - } + //TODO : May probably need to send the following alarm in case the SD-Card fails after successful post and stop logging as well. + // emit didActionTransmit(GuiActionType::ID_AlarmTriggered, {GuiAlarmID::ALARM_ID_UI_POST_FAILURE_SDCARD ,0,0,0,0,0,0,0}); emit didSDCardStateChange(vIsReady, vIsReadOnly); } Index: sources/gui/GuiView.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/GuiView.h (.../GuiView.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/GuiView.h (.../GuiView.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -78,6 +78,9 @@ PROPERTY(GuiStringIndexMap , exportList , {}) READONLY(GuiUint08IndexMap , exportListPercent , {}) + READONLY(bool , dryDemoMode , gEnableDryDemo ) + READONLY(bool , bypassFault , gBypassFault ) + public: explicit GuiView(QObject *parent = nullptr); Index: sources/gui/qml/PowerItem.qml =================================================================== diff -u -r8172c6aa4187be26aa9c0e73a130bc6183ad10dd -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/PowerItem.qml (.../PowerItem.qml) (revision 8172c6aa4187be26aa9c0e73a130bc6183ad10dd) +++ sources/gui/qml/PowerItem.qml (.../PowerItem.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -21,9 +21,6 @@ import Gui.View 0.1 import Gui.Actions 0.1 -// Confirm -import VConfirm 0.1 - // Qml imports import "qrc:/globals" import "qrc:/components" @@ -38,7 +35,6 @@ property bool isOpen: false - VConfirm { id: vConfirm } AutoHideInfo { id: _autoHideInfo } PowerOff { id: _powerOffDialog @@ -52,6 +48,7 @@ autoClose : vConfirm.isPowerOff || vConfirm.isReject onVisibleChanged: { + _root.isOpen = visible if (visible) _alarmItem.alarmHide() else _alarmItem.alarmMaximize() } Index: sources/gui/qml/components/DebugDataColumn.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/DebugDataColumn.qml (.../DebugDataColumn.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -28,11 +28,11 @@ property var label: [] property string title: "Title" property int fontPixelSizeTitle: 30 - property int fontPixelSizeText : 38 + property int fontPixelSizeText : 35 property string textObjectName: "_DebugDataColumn" - property var horizontalAlignmentTitle: Text.AlignRight - property var horizontalAlignmentText : Text.AlignRight + property int horizontalAlignmentTitle: Text.AlignRight + property int horizontalAlignmentText : Text.AlignRight width : 150 spacing : -15 Index: sources/gui/qml/components/Slider.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/components/Slider.qml (.../Slider.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -82,12 +82,10 @@ // real-time bound change should effect the current set value onMinimumChanged: { - minimum = minimum.toFixed(decimal) if (value < minimum ) value = minimum } onMaximumChanged: { - maximum = maximum.toFixed(decimal) if (value > maximum ) value = maximum } @@ -115,24 +113,28 @@ function setValue(x) { let mValue = 0 - if ( x < 0 ) { mValue = minimum; update(mValue); return; } - if ( x > width ) { mValue = maximum; update(mValue); return; } + let mMinimum = Number(_root.minimum.toFixed(decimal)) + let mMaximum = Number(_root.maximum.toFixed(decimal)) + if ( x < 0 ) { mValue = mMinimum; update(mValue); return; } + if ( x > width ) { mValue = mMaximum; update(mValue); return; } mValue = getValueOfX(x) - if ( step === 1 ) { mValue = parseInt(mValue); update(mValue); return; } + if ( step === 1 ) { mValue = parseInt(mValue); update(mValue); return; } let start = 0 - if ( ! stepSnap ) start = minimum + if ( ! stepSnap ) start = mMinimum mValue = Math.round((mValue - start) / step) * step + start let decimals = Math.round(-Math.log10(step)) - if (decimals > 0) mValue = mValue.toFixed(decimals) + if (decimals > 0) { + mValue = mValue.toFixed(decimals) + } - if ( mValue < minimum ) { mValue = minimum; update(mValue); return; } - if ( mValue > maximum ) { mValue = maximum; update(mValue); return; } + if ( mValue < mMinimum ) { mValue = mMinimum; update(mValue); return; } + if ( mValue > mMaximum ) { mValue = mMaximum; update(mValue); return; } - update(mValue); return; + update(mValue); return; } function setHandlerPosition() { Index: sources/gui/qml/dialogs/DiagnosticsDialog.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/dialogs/DiagnosticsDialog.qml (.../DiagnosticsDialog.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/dialogs/DiagnosticsDialog.qml (.../DiagnosticsDialog.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -107,12 +107,14 @@ vDGPressures.roOutletPSI .toFixed(2) , vDGPressures.drainInletPSI .toFixed(2) , vDGPressures.drainOutletPSI .toFixed(2) , + vDGPressures.barometricPSI .toFixed(2) , ] label: [ "PPi", "PPo", "PRd", "PDr", + "bar", ] } @@ -139,9 +141,9 @@ x: col(4) y: row(0) model: [ - vDGHeaters.mainPrimaryDC .toFixed(2), - vDGHeaters.smallPrimaryDC .toFixed(2), - vDGHeaters.trimmerDC .toFixed(2), + vDGHeaters.mainPrimayHeaterDC .toFixed(2), + vDGHeaters.smallPrimaryHeaterDC .toFixed(2), + vDGHeaters.trimmerHeaterDC .toFixed(2), ] label: [ "HP1", @@ -184,10 +186,18 @@ vDGTemperatures.inletDialysate .toFixed(2) , vDGTemperatures.primaryHeaterThermoCouple .toFixed(2) , vDGTemperatures.trimmerHeaterThermoCouple .toFixed(2) , - // vDGTemperatures.primaryHeaterColdJunction .toFixed(2) , - // vDGTemperatures.trimmerHeaterColdJunction .toFixed(2) , + vDGTemperatures.primaryHeaterColdJunction .toFixed(2) , + vDGTemperatures.trimmerHeaterColdJunction .toFixed(2) , vDGTemperatures.primaryHeaterInternal .toFixed(2) , vDGTemperatures.trimmerHeaterInternal .toFixed(2) , + vDGTemperatures.fpgaBoard .toFixed(2) , + vDGTemperatures.loadCellA1B1 .toFixed(2) , + vDGTemperatures.loadCellA2B2 .toFixed(2) , + vDGTemperatures.internalTHDORTD .toFixed(2) , + vDGTemperatures.internalTDIRTD .toFixed(2) , + vDGTemperatures.interalTHDRTD .toFixed(2) , + vDGTemperatures.internalCondSnsrTemp .toFixed(2) , + vDGTemperatures.baroTempSensor .toFixed(2) , ] label: [ "TPi" , @@ -199,18 +209,26 @@ "TDi" , "HP.Trm", "HR.Trm", - // "HP.CJ" , - // "HR.CJ" , + "HP.Cld", + "HR.Cld", "HP.Int", "HR.Int", + "fpga" , + "cell11", + "cell22", + "iTHDO" , + "iTDI" , + "iTHD" , + "iCond" , + "baro" , ] } DebugDataColumn { id: _DGConductivityColumn textObjectName :"_DGConductivityData" title : qsTr(" Conduct ") x: col(3.7) - y: row(3.0) + y: row(3.2) model: [ vDGConductivity.RORejectionRatio .toFixed(3), vDGConductivity.CPi .toFixed(1), @@ -230,8 +248,8 @@ DebugDataColumn { id: _HDAirColumn textObjectName :"_HDAirData" title : qsTr(" Air Status ") - x: col(6) - y: row(4.1) + x: col(3.0) + y: row(5.5) model: [ vHDAirBubble .venousAirBubbleStatus , vHDAirTrap .airTrapLowerLevel , @@ -248,7 +266,7 @@ textObjectName :"_DGOperationModeData" title : qsTr(" DG Mode ") x: col(2.5) - y: row(1.7) + y: row(1.9) model: [ vDGOperationMode.text , ] @@ -260,7 +278,7 @@ textObjectName :"_HDBloodFlowData" title : qsTr(" BP ") x: col(0) - y: row(2.4) + y: row(2.6) model: [ vTreatmentBloodFlow.bloodFlow_FlowSetPoint , vTreatmentBloodFlow.bloodFlow_MeasuredFlow .toFixed(2) , @@ -287,7 +305,7 @@ textObjectName :"_HDDialysateInletFlowData" title : qsTr(" DPi ") x: col(1.2) - y: row(2.4) + y: row(2.6) model: [ vTreatmentDialysateFlow.dialysateFlow_FlowSetPoint .toFixed(2) , vTreatmentDialysateFlow.dialysateFlow_MeasuredFlow .toFixed(2) , @@ -312,7 +330,7 @@ textObjectName :"_HDDialysateOutletFlowData" title : qsTr(" UF/DPo ") x: col(2.4) - y: row(2.4) + y: row(2.6) model: [ vTreatmentUltrafiltration.ultrafiltration_RefUFVol .toFixed(3) , vTreatmentUltrafiltration.ultrafiltration_MeasUFVol .toFixed(3) , @@ -337,7 +355,7 @@ textObjectName :"_HDPressureOcclusionData" title : qsTr(" Prsr Oc ") x: col(3.7) - y: row(1.7) + y: row(1.9) model: [ vTreatmentPressureOcclusion.arterialPressure .toFixed(2) , vTreatmentPressureOcclusion.venousPressure .toFixed(2) , @@ -354,7 +372,7 @@ textObjectName :"_HDSyringePumpData" title : qsTr(" Syringe ") x: col(4.6) - y: row(1.7) + y: row(1.9) model: [ vHDSyringePump.syringePumpState , vHDSyringePump.heparinState , @@ -387,7 +405,7 @@ textObjectName :"_HDOperationModeData" title : qsTr(" HD Mode ") x: col(0.5) - y: row(1.7) + y: row(1.9) model: [ vHDOperationMode.text , ] @@ -455,7 +473,7 @@ DebugDataColumn { id: _HDAlarmTopColumn textObjectName :"_HDAlarmTopData" title : qsTr(" Alarms ") - x: col(6) + x: col(5) y: row(5.5) model: [ _alarmItem.alarm_AlarmID , @@ -521,9 +539,9 @@ DebugDataColumn { id: _PreTreatmentStatesColumn textObjectName :"_PreTreatmentStatesData" title : qsTr(" PreTx States ") - x: col(1.0) + x: col(1.5) y: row(5.5) - model: [ "%1,%2,%3,%4,%5,%6,%7,%8,%9" + model: [ "%1,%2,%3,%4,%5,%6,%7,%8,%9,%10,%11" .arg(vPreTreatmentStates.subMode ) .arg(vPreTreatmentStates.waterSampleState ) .arg(vPreTreatmentStates.selfTestConsumablesState) @@ -533,7 +551,10 @@ .arg(vPreTreatmentStates.primeState ) .arg(vPreTreatmentStates.recirculateState ) .arg(vPreTreatmentStates.patientConnectionState ) + .arg(vPreTreatmentStates.wetSelfTestsState ) + .arg(vPreTreatmentStates.preTreatmentRsrvrState ) ] + fontPixelSizeText: 30 } Text { id : _mouseEventCountText Index: sources/gui/qml/main.qml =================================================================== diff -u -r081df84b4b81ab39296f42c3c7e91deb021b8979 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/main.qml (.../main.qml) (revision 081df84b4b81ab39296f42c3c7e91deb021b8979) +++ sources/gui/qml/main.qml (.../main.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -110,6 +110,9 @@ // Disinfection import VDisinfectAdjustDisinfect 0.1 +// Confirm +import VConfirm 0.1 + // Qml imports import "qrc:/globals" import "qrc:/pages" @@ -125,6 +128,8 @@ width : Variables.applicationWidth height: Variables.applicationHeight + VConfirm { id: vConfirm } + VHDPOSTData { id: vHDPOSTData } VDGPOSTData { id: vDGPOSTData } @@ -360,7 +365,16 @@ SDCProgressItem { id: _sdcProgressItem // TODO: disable this later. this is only for diagnostic purpose. onDoubleClicked : { - _diagnosticsDialog.open() + if ( _GuiView.dryDemoMode ) { + let dryDemoTempID = 99 + let id = vConfirm.id + vConfirm.id = dryDemoTempID + vConfirm.doConfirm( true ) + vConfirm.id = id + } + else { + _diagnosticsDialog.open() + } } } Index: sources/gui/qml/pages/MainStack.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/pages/MainStack.qml (.../MainStack.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/pages/MainStack.qml (.../MainStack.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -146,7 +146,9 @@ function onIsManagerChanged ( vValue ) { if( vValue ) _mainMenu.isManager () } function onIsSettingsChanged ( vValue ) { if( vValue ) _mainMenu.isSettings () } - function onFaultChanged ( vValue ) { page( _faultModeScreen , vValue && ! vSettings.noCANBus )} + function onFaultChanged ( vValue ) { page( _GuiView.bypassFault ? // If the -F (disable-fault-screen) set in CLI, + _mainHome : // go to home/standby screen + _faultModeScreen , vValue && ! vSettings.noCANBus )} function onServiceChanged ( vValue ) { page( _serviceModeScreen , vValue )} function onInitChanged ( vValue ) { page( _postModeScreen , vValue && ! vSettings.noCANBus ) if( vValue ) vHDPOSTData.reset() // better to reset on vinit = true because the rest makes the screen animation to run Index: sources/gui/qml/pages/treatment/TreatmentStack.qml =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/gui/qml/pages/treatment/TreatmentStack.qml (.../TreatmentStack.qml) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -118,22 +118,25 @@ } Connections { target: _treatmentAdjustmentFlow - function onConfirmClicked ( vValue ) { vTreatmentAdjustmentFlows.doAdjustment(bloodFlowRateValue, dialysateFlowRateValue) } + function onConfirmClicked ( vValue ) { vTreatmentAdjustmentFlows.doAdjustment( + _treatmentAdjustmentFlow.bloodFlowRateValue , + _treatmentAdjustmentFlow.dialysateFlowRateValue ) + } } Connections { target: _treatmentAdjustmentPressuresLimits function onConfirmClicked ( vValue ) { vTreatmentAdjustmentPressuresLimits.doAdjustment( - arterialPressureLowerBound , - arterialPressureUpperBound , - venousPressureLowerBound , - venousPressureUpperBound - ) + _treatmentAdjustmentPressuresLimits.arterialPressureLowerBound , + _treatmentAdjustmentPressuresLimits.arterialPressureUpperBound , + _treatmentAdjustmentPressuresLimits.venousPressureLowerBound , + _treatmentAdjustmentPressuresLimits.venousPressureUpperBound ) } } TreatmentAdjustmentDuration { id: _treatmentAdjustmentDuration } Connections { target: _treatmentAdjustmentDuration function onConfirmClicked ( vValue ) { vTreatmentAdjustmentDuration.doAdjustment( - _treatmentAdjustmentDuration.durationValue )} + _treatmentAdjustmentDuration.durationValue ) + } } EntryDialog { id: _vitalEntry @@ -172,10 +175,10 @@ } Connections { target: vTreatmentVitals - function onDidTrigger ( vSystolic, vDiastolic, vHeartRate ) { + function onDidTrigger ( vSystolic, vDiastolic, vHeartRate ) { if ( vTreatmentVitals.enableDialog ) { - _vitalEntry.update(vSystolic, vDiastolic, vHeartRate ) - _vitalEntry.open() + _vitalEntry.update ( vSystolic, vDiastolic, vHeartRate ) + _vitalEntry.open () } } } Index: sources/main.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/main.h (.../main.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/main.h (.../main.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -98,6 +98,9 @@ extern bool gConsoleoutFrameInterface ; extern bool gConsoleoutCanInterface ; +extern bool gBypassFault ; +extern bool gEnableDryDemo ; +extern QString gActiveCANBus ; //--------------------------------------------------------------------------------// //--------------------------------------------------------------------------------// Index: sources/model/dg/data/MDGHeatersData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/dg/data/MDGHeatersData.cpp (.../MDGHeatersData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGHeatersData.cpp (.../MDGHeatersData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -18,21 +18,46 @@ QVariantList MDGHeaters::parameters() const { return { - _data.mMainPrimaryDC .value, - _data.mSmallPrimaryDC .value, - _data.mTrimmerDC .value + _data.mMainPrimayHeaterDC .value, + _data.mSmallPrimaryHeaterDC .value, + _data.mTrimmerHeaterDC .value, + _data.mPrimaryTargetTemp .value, + _data.mTrimmerTargetTemp .value, + _data.mPrimaryHeaterState .value, + _data.mTrimmerHeaterState .value, + _data.mPrimaryEfficiency .value, + _data.mPrimaryCalcTargetTemp .value, + _data.mTrimmerCalcCurrentTemp .value, + _data.mTrimmerUseLastDC .value, }; + } bool MDGHeaters::fromByteArray(const QByteArray &vByteArray, int *vIndex) { int index = 0; // message data start position - if (GetValue(vByteArray, index, _data.mMainPrimaryDC )) - if (GetValue(vByteArray, index, _data.mSmallPrimaryDC )) - if (GetValue(vByteArray, index, _data.mTrimmerDC )) + if (GetValue(vByteArray, index, _data.mMainPrimayHeaterDC )) + if (GetValue(vByteArray, index, _data.mSmallPrimaryHeaterDC )) + if (GetValue(vByteArray, index, _data.mTrimmerHeaterDC )) + if (GetValue(vByteArray, index, _data.mPrimaryTargetTemp )) + if (GetValue(vByteArray, index, _data.mTrimmerTargetTemp )) + if (GetValue(vByteArray, index, _data.mPrimaryHeaterState )) + if (GetValue(vByteArray, index, _data.mTrimmerHeaterState )) + if (GetValue(vByteArray, index, _data.mPrimaryEfficiency )) + if (GetValue(vByteArray, index, _data.mPrimaryCalcTargetTemp )) + if (GetValue(vByteArray, index, _data.mTrimmerCalcCurrentTemp )) + if (GetValue(vByteArray, index, _data.mTrimmerUseLastDC )) return true ; else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } } /*! @@ -42,8 +67,16 @@ */ MDGHeaters::Data MDGHeaters::data() const { Data data; - data.mMainPrimaryDC = _data.mMainPrimaryDC .value; - data.mSmallPrimaryDC = _data.mSmallPrimaryDC .value; - data.mTrimmerDC = _data.mTrimmerDC .value; + data.mMainPrimayHeaterDC = _data.mMainPrimayHeaterDC .value; + data.mSmallPrimaryHeaterDC = _data.mSmallPrimaryHeaterDC .value; + data.mTrimmerHeaterDC = _data.mTrimmerHeaterDC .value; + data.mPrimaryTargetTemp = _data.mPrimaryTargetTemp .value; + data.mTrimmerTargetTemp = _data.mTrimmerTargetTemp .value; + data.mPrimaryHeaterState = _data.mPrimaryHeaterState .value; + data.mTrimmerHeaterState = _data.mTrimmerHeaterState .value; + data.mPrimaryEfficiency = _data.mPrimaryEfficiency .value; + data.mPrimaryCalcTargetTemp = _data.mPrimaryCalcTargetTemp .value; + data.mTrimmerCalcCurrentTemp = _data.mTrimmerCalcCurrentTemp .value; + data.mTrimmerUseLastDC = _data.mTrimmerUseLastDC .value; return data; } Index: sources/model/dg/data/MDGHeatersData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/dg/data/MDGHeatersData.h (.../MDGHeatersData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGHeatersData.h (.../MDGHeatersData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -36,9 +36,17 @@ * * | Payload || * | || - * | #1:(F32) | \ref Data::mMainPrimaryDC | - * | #2:(F32) | \ref Data::mSmallPrimaryDC | - * | #3:(F32) | \ref Data::mTrimmerDC | + * | # 1:(F32) | \ref Data::mMainPrimayHeaterDC | + * | # 2:(F32) | \ref Data::mSmallPrimaryHeaterDC | + * | # 3:(F32) | \ref Data::mTrimmerHeaterDC | + * | # 4:(F32) | \ref Data::mPrimaryTargetTemp | + * | # 5:(F32) | \ref Data::mTrimmerTargetTemp | + * | # 6:(F32) | \ref Data::mPrimaryHeaterState | + * | # 7:(F32) | \ref Data::mTrimmerHeaterState | + * | # 8:(F32) | \ref Data::mPrimaryEfficiency | + * | # 9:(F32) | \ref Data::mPrimaryCalcTargetTemp | + * | #10:(F32) | \ref Data::mTrimmerCalcCurrentTemp | + * | #11:(F32) | \ref Data::mTrimmerUseLastDC | * * \sa Data * @@ -55,13 +63,20 @@ // friends friend class ::tst_models; - // Heaters Data (U32) mainPrimaryDC (U32) smallPrimaryDC (U32) trimmerDC QVariantList parameters() const override; struct { - Types::F32 mMainPrimaryDC ; - Types::F32 mSmallPrimaryDC ; - Types::F32 mTrimmerDC ; + Types::F32 mMainPrimayHeaterDC ; ///< Main primary heater DC + Types::F32 mSmallPrimaryHeaterDC ; ///< Small primary heater DC + Types::F32 mTrimmerHeaterDC ; ///< Trimmer heater DC + Types::F32 mPrimaryTargetTemp ; ///< Primary heater target temperature + Types::F32 mTrimmerTargetTemp ; ///< Trimmer heater target temperature + Types::U32 mPrimaryHeaterState ; ///< Primary heater state + Types::U32 mTrimmerHeaterState ; ///< Trimmer heater state + Types::F32 mPrimaryEfficiency ; ///< Primary heater efficiency + Types::F32 mPrimaryCalcTargetTemp ; ///< Primary heater calculated target temperature + Types::F32 mTrimmerCalcCurrentTemp ; ///< Trimmer heater calculated current temperature + Types::U32 mTrimmerUseLastDC ; ///< Trimmer heater use last duty cycle } _data; public: @@ -71,9 +86,17 @@ QString infoText () const override { return QString("Heaters"); } struct Data { - float mMainPrimaryDC = 0; ///< main Primary DC - float mSmallPrimaryDC = 0; ///< small Primary DC - float mTrimmerDC = 0; ///< trimmer DC + float mMainPrimayHeaterDC = 0; ///< main Primary DC + float mSmallPrimaryHeaterDC = 0; ///< small Primary DC + float mTrimmerHeaterDC = 0; ///< trimmer DC + float mPrimaryTargetTemp = 0; ///< Primary heater target temperature + float mTrimmerTargetTemp = 0; ///< Trimmer heater target temperature + quint32 mPrimaryHeaterState = 0; ///< Primary heater state + quint32 mTrimmerHeaterState = 0; ///< Trimmer heater state + float mPrimaryEfficiency = 0; ///< Primary heater efficiency + float mPrimaryCalcTargetTemp = 0; ///< Primary heater calculated target temperature + float mTrimmerCalcCurrentTemp = 0; ///< Trimmer heater calculated current temperature + quint32 mTrimmerUseLastDC = 0; ///< Trimmer heater use last duty cycle }; MDGHeaters () {} Index: sources/model/dg/data/MDGPressuresData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/dg/data/MDGPressuresData.cpp (.../MDGPressuresData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGPressuresData.cpp (.../MDGPressuresData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -18,24 +18,27 @@ QVariantList MDGPressures::parameters() const { return { - _data.mROInletPSI .value, - _data.mROOutletPSI .value, - _data.mDrainInletPSI .value, - _data.mDrainOutletPSI .value + _data.mROInletPSI .value, + _data.mROOutletPSI .value, + _data.mDrainInletPSI .value, + _data.mDrainOutletPSI .value, + _data.mBarometricPSI .value }; } bool MDGPressures::fromByteArray(const QByteArray &vByteArray, int *vIndex) { int index = 0; // message data start position - if (GetValue(vByteArray, index, _data.mROInletPSI )) - if (GetValue(vByteArray, index, _data.mROOutletPSI )) - if (GetValue(vByteArray, index, _data.mDrainInletPSI )) - if (GetValue(vByteArray, index, _data.mDrainOutletPSI )) + if (GetValue(vByteArray, index, _data.mROInletPSI )) + if (GetValue(vByteArray, index, _data.mROOutletPSI )) + if (GetValue(vByteArray, index, _data.mDrainInletPSI )) + if (GetValue(vByteArray, index, _data.mDrainOutletPSI )) + if (GetValue(vByteArray, index, _data.mBarometricPSI )) return true ; else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } } /*! @@ -45,9 +48,10 @@ */ MDGPressures::Data MDGPressures::data() const { Data data; - data.mROInletPSI = _data.mROInletPSI .value; - data.mROOutletPSI = _data.mROOutletPSI .value; - data.mDrainInletPSI = _data.mDrainInletPSI .value; - data.mDrainOutletPSI = _data.mDrainOutletPSI .value; + data.mROInletPSI = _data.mROInletPSI .value; + data.mROOutletPSI = _data.mROOutletPSI .value; + data.mDrainInletPSI = _data.mDrainInletPSI .value; + data.mDrainOutletPSI = _data.mDrainOutletPSI .value; + data.mBarometricPSI = _data.mBarometricPSI .value; return data; } Index: sources/model/dg/data/MDGPressuresData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/dg/data/MDGPressuresData.h (.../MDGPressuresData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGPressuresData.h (.../MDGPressuresData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -40,6 +40,7 @@ * | #2:(F32) | \ref Data::mROOutletPSI | * | #3:(F32) | \ref Data::mDrainInletPSI | * | #4:(F32) | \ref Data::mDrainOutletPSI | + * | #5:(F32) | \ref Data::mBarometricPSI | * * \sa Data * @@ -59,10 +60,11 @@ QVariantList parameters() const override; struct { - Types::F32 mROInletPSI ; - Types::F32 mROOutletPSI ; - Types::F32 mDrainInletPSI ; - Types::F32 mDrainOutletPSI ; + Types::F32 mROInletPSI ; ///< RO pump inlet pressure + Types::F32 mROOutletPSI ; ///< RO pump outlet pressure + Types::F32 mDrainInletPSI ; ///< Drain pump inlet pressure + Types::F32 mDrainOutletPSI ; ///< Drain pump outlet pressure + Types::F32 mBarometricPSI ; ///< Barometric pressure } _data; public: @@ -76,6 +78,7 @@ float mROOutletPSI = 0; ///< RO outlet PSI float mDrainInletPSI = 0; ///< Drain inlet PSI float mDrainOutletPSI = 0; ///< Drain outlet PSI + float mBarometricPSI = 0; ///< Drain outlet PSI }; MDGPressures () {} Index: sources/model/dg/data/MDGTemperaturesData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/dg/data/MDGTemperaturesData.cpp (.../MDGTemperaturesData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGTemperaturesData.cpp (.../MDGTemperaturesData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -19,19 +19,27 @@ QVariantList MDGTemperatures::parameters() const { return { - _data.mInletPrimaryHeater .value, - _data.mHeatDisinfect .value, - _data.mOutletPrimaryHeater .value, - _data.mConductivitySensor1 .value, - _data.mConductivitySensor2 .value, - _data.mOutletRedundancy .value, - _data.mInletDialysate .value, - _data.mPrimaryHeaterThermoCouple .value, - _data.mTrimmerHeaterThermoCouple .value, - _data.mPrimaryHeaterColdJunction .value, - _data.mTrimmerHeaterColdJunction .value, - _data.mPrimaryHeaterInternal .value, - _data.mTrimmerHeaterInternal .value + _data.mInletPrimaryHeater .value, + _data.mHeatDisinfect .value, + _data.mOutletPrimaryHeater .value, + _data.mConductivitySensor1 .value, + _data.mConductivitySensor2 .value, + _data.mOutletRedundancy .value, + _data.mInletDialysate .value, + _data.mPrimaryHeaterThermoCouple .value, + _data.mTrimmerHeaterThermoCouple .value, + _data.mPrimaryHeaterColdJunction .value, + _data.mTrimmerHeaterColdJunction .value, + _data.mPrimaryHeaterInternal .value, + _data.mTrimmerHeaterInternal .value, + _data.mFpgaBoard .value, + _data.mLoadCellA1B1 .value, + _data.mLoadCellA2B2 .value, + _data.mInternalTHDORTD .value, + _data.mInternalTDIRTD .value, + _data.mInteralTHDRTD .value, + _data.mInternalCondSnsrTemp .value, + _data.mBaroTempSensor .value, }; } @@ -50,6 +58,14 @@ if (GetValue(vByteArray, index, _data.mTrimmerHeaterColdJunction )) if (GetValue(vByteArray, index, _data.mPrimaryHeaterInternal )) if (GetValue(vByteArray, index, _data.mTrimmerHeaterInternal )) + if (GetValue(vByteArray, index, _data.mFpgaBoard )) + if (GetValue(vByteArray, index, _data.mLoadCellA1B1 )) + if (GetValue(vByteArray, index, _data.mLoadCellA2B2 )) + if (GetValue(vByteArray, index, _data.mInternalTHDORTD )) + if (GetValue(vByteArray, index, _data.mInternalTDIRTD )) + if (GetValue(vByteArray, index, _data.mInteralTHDRTD )) + if (GetValue(vByteArray, index, _data.mInternalCondSnsrTemp )) + if (GetValue(vByteArray, index, _data.mBaroTempSensor )) return true ; else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } @@ -64,6 +80,14 @@ else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } } /*! @@ -86,5 +110,13 @@ data.mTrimmerHeaterColdJunction = _data.mTrimmerHeaterColdJunction .value; data.mPrimaryHeaterInternal = _data.mPrimaryHeaterInternal .value; data.mTrimmerHeaterInternal = _data.mTrimmerHeaterInternal .value; + data.mFpgaBoard = _data.mFpgaBoard .value; + data.mLoadCellA1B1 = _data.mLoadCellA1B1 .value; + data.mLoadCellA2B2 = _data.mLoadCellA2B2 .value; + data.mInternalTHDORTD = _data.mInternalTHDORTD .value; + data.mInternalTDIRTD = _data.mInternalTDIRTD .value; + data.mInteralTHDRTD = _data.mInteralTHDRTD .value; + data.mInternalCondSnsrTemp = _data.mInternalCondSnsrTemp .value; + data.mBaroTempSensor = _data.mBaroTempSensor .value; return data; } Index: sources/model/dg/data/MDGTemperaturesData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/dg/data/MDGTemperaturesData.h (.../MDGTemperaturesData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGTemperaturesData.h (.../MDGTemperaturesData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -49,6 +49,14 @@ * | #11:(F32) | \ref Data::mTrimmerHeaterColdJunction | * | #12:(F32) | \ref Data::mPrimaryHeaterInternal | * | #13:(F32) | \ref Data::mTrimmerHeaterInternal | + * | #14:(F32) | \ref Data::mFpgaBoard | + * | #15:(F32) | \ref Data::mLoadCellA1B1 | + * | #16:(F32) | \ref Data::mLoadCellA2B2 | + * | #17:(F32) | \ref Data::mInternalTHDORTD | + * | #18:(F32) | \ref Data::mInternalTDIRTD | + * | #19:(F32) | \ref Data::mInteralTHDRTD | + * | #20:(F32) | \ref Data::mInternalCondSnsrTemp | + * | #21:(F32) | \ref Data::mBaroTempSensor | * * \sa Data * @@ -72,19 +80,27 @@ QVariantList parameters() const override; struct { - Types::F32 mInletPrimaryHeater ; /* 01 */ - Types::F32 mHeatDisinfect ; /* 02 */ - Types::F32 mOutletPrimaryHeater ; /* 03 */ - Types::F32 mConductivitySensor1 ; /* 04 */ - Types::F32 mConductivitySensor2 ; /* 05 */ - Types::F32 mOutletRedundancy ; /* 06 */ - Types::F32 mInletDialysate ; /* 07 */ - Types::F32 mPrimaryHeaterThermoCouple ; /* 08 */ - Types::F32 mTrimmerHeaterThermoCouple ; /* 09 */ - Types::F32 mPrimaryHeaterColdJunction ; /* 10 */ - Types::F32 mTrimmerHeaterColdJunction ; /* 11 */ - Types::F32 mPrimaryHeaterInternal ; /* 12 */ - Types::F32 mTrimmerHeaterInternal ; /* 13 */ + Types::F32 mInletPrimaryHeater ; ///< Trimmer heater internal temperature (calculated from thermocouple and cold junction) + Types::F32 mHeatDisinfect ; ///< Primary heaters internal temperature (calculated from thermocouple and cold junction) + Types::F32 mOutletPrimaryHeater ; ///< Trimmer heater cold junction temperature sensor + Types::F32 mConductivitySensor1 ; ///< Primary heaters cold junction temperature sensor + Types::F32 mConductivitySensor2 ; ///< Trimmer heater thermocouple sensor + Types::F32 mOutletRedundancy ; ///< Primary heaters thermocouple sensor + Types::F32 mInletDialysate ; ///< Inlet dialysate temperature sensor + Types::F32 mPrimaryHeaterThermoCouple ; ///< Outlet redundant temperature sensor + Types::F32 mTrimmerHeaterThermoCouple ; ///< Conductivity sensor 2 temperature sensor + Types::F32 mPrimaryHeaterColdJunction ; ///< Conductivity sensor 1 temperature sensor + Types::F32 mTrimmerHeaterColdJunction ; ///< Outlet primary heater temperature sensor + Types::F32 mPrimaryHeaterInternal ; ///< Heat Disinfect temperature sensor + Types::F32 mTrimmerHeaterInternal ; ///< Inlet primary heater temperature sensor + Types::F32 mFpgaBoard ; ///< FPGA board temperature sensor + Types::F32 mLoadCellA1B1 ; ///< Load cell A1/B1 temperature sensor + Types::F32 mLoadCellA2B2 ; ///< Load cell A2/B2 temperature sensor + Types::F32 mInternalTHDORTD ; ///< THDo RTD channel temperature sensor + Types::F32 mInternalTDIRTD ; ///< TDI RTD channel temperature sensor + Types::F32 mInteralTHDRTD ; ///< THd RTD channel temperature sensor + Types::F32 mInternalCondSnsrTemp ; ///< Conductivity Sensor internal temperature sensor + Types::F32 mBaroTempSensor ; ///< Barometric temperature sensor } _data; public: @@ -94,19 +110,27 @@ QString infoText () const override { return QString("Temperatures"); } struct Data { - float mInletPrimaryHeater = 0; ///< Inlet primary heaters temperature - float mHeatDisinfect = 0; ///< Heat Disinfect temperature - float mOutletPrimaryHeater = 0; ///< Outlet primary heaters temperature - float mConductivitySensor1 = 0; ///< Conductivity sensor 1 temperature - float mConductivitySensor2 = 0; ///< Conductivity sensor 2 temperature - float mOutletRedundancy = 0; ///< Outlet redundancy temperature - float mInletDialysate = 0; ///< Inlet dialysate temperature - float mPrimaryHeaterThermoCouple = 0; ///< Primary heaters internal temperature - float mTrimmerHeaterThermoCouple = 0; ///< Trimmer heater internal temperature - float mPrimaryHeaterColdJunction = 0; ///< Primary heaters cold junction temperature - float mTrimmerHeaterColdJunction = 0; ///< Trimmer heater cold junction temperature - float mPrimaryHeaterInternal = 0; ///< Primary heaters internal temperature - float mTrimmerHeaterInternal = 0; ///< Trimmer heater internal temperature + float mInletPrimaryHeater = 0; ///< Trimmer heater internal temperature (calculated from thermocouple and cold junction) + float mHeatDisinfect = 0; ///< Primary heaters internal temperature (calculated from thermocouple and cold junction) + float mOutletPrimaryHeater = 0; ///< Trimmer heater cold junction temperature sensor + float mConductivitySensor1 = 0; ///< Primary heaters cold junction temperature sensor + float mConductivitySensor2 = 0; ///< Trimmer heater thermocouple sensor + float mOutletRedundancy = 0; ///< Primary heaters thermocouple sensor + float mInletDialysate = 0; ///< Inlet dialysate temperature sensor + float mPrimaryHeaterThermoCouple = 0; ///< Outlet redundant temperature sensor + float mTrimmerHeaterThermoCouple = 0; ///< Conductivity sensor 2 temperature sensor + float mPrimaryHeaterColdJunction = 0; ///< Conductivity sensor 1 temperature sensor + float mTrimmerHeaterColdJunction = 0; ///< Outlet primary heater temperature sensor + float mPrimaryHeaterInternal = 0; ///< Heat Disinfect temperature sensor + float mTrimmerHeaterInternal = 0; ///< Inlet primary heater temperature sensor + float mFpgaBoard = 0; ///< FPGA board temperature sensor + float mLoadCellA1B1 = 0; ///< Load cell A1/B1 temperature sensor + float mLoadCellA2B2 = 0; ///< Load cell A2/B2 temperature sensor + float mInternalTHDORTD = 0; ///< THDo RTD channel temperature sensor + float mInternalTDIRTD = 0; ///< TDI RTD channel temperature sensor + float mInteralTHDRTD = 0; ///< THd RTD channel temperature sensor + float mInternalCondSnsrTemp = 0; ///< Conductivity Sensor internal temperature sensor + float mBaroTempSensor = 0; ///< Barometric temperature sensor }; MDGTemperatures() { } Index: sources/model/hd/alarm/MAlarmMapping.cpp =================================================================== diff -u -rb6460e7cb67979601bccc9783b596d15ddb9a9b1 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/hd/alarm/MAlarmMapping.cpp (.../MAlarmMapping.cpp) (revision b6460e7cb67979601bccc9783b596d15ddb9a9b1) +++ sources/model/hd/alarm/MAlarmMapping.cpp (.../MAlarmMapping.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -7,7 +7,7 @@ * * \file MAlarmMapping.cpp * \author (last) Behrouz NematiPour - * \date (last) 08-Feb-2023 + * \date (last) 10-Feb-2023 * \author (original) Behrouz NematiPour * \date (original) 03-May-2021 * Index: sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp (.../MPreTreatmentStatesData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/hd/data/pretreatment/MPreTreatmentStatesData.cpp (.../MPreTreatmentStatesData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -27,6 +27,8 @@ _data.mPrimeState .value, _data.mRecirculateState .value, _data.mPatientConnectionState .value, + _data.mWetSelfTestsState .value, + _data.mPreTreatmentRsrvrState .value, }; } @@ -41,6 +43,8 @@ if (GetValue(vByteArray, index, _data.mPrimeState )) if (GetValue(vByteArray, index, _data.mRecirculateState )) if (GetValue(vByteArray, index, _data.mPatientConnectionState )) + if (GetValue(vByteArray, index, _data.mWetSelfTestsState )) + if (GetValue(vByteArray, index, _data.mPreTreatmentRsrvrState )) return true ; else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } @@ -51,6 +55,8 @@ else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } + else { if(vIndex) *vIndex = index; return false; } } /*! @@ -69,5 +75,7 @@ data.mPrimeState = _data.mPrimeState .value; data.mRecirculateState = _data.mRecirculateState .value; data.mPatientConnectionState = _data.mPatientConnectionState .value; + data.mWetSelfTestsState = _data.mWetSelfTestsState .value; + data.mPreTreatmentRsrvrState = _data.mPreTreatmentRsrvrState .value; return data; } Index: sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h (.../MPreTreatmentStatesData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/hd/data/pretreatment/MPreTreatmentStatesData.h (.../MPreTreatmentStatesData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -36,17 +36,19 @@ * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: | * |0x5C00| 0x040 | 7 | 1 Hz | N | HD | All | Pre-Treatment States Data | * - * | Payload || - * | || - * | #1:(U32) | \ref Data::mSubMode | - * | #2:(U32) | \ref Data::mWaterSampleState | - * | #3:(U32) | \ref Data::mSelfTestConsumablesState | - * | #4:(U32) | \ref Data::mSelfTestNoCartridgeState | - * | #5:(U32) | \ref Data::mInstallationState | - * | #6:(U32) | \ref Data::mSelfTestDryState | - * | #7:(U32) | \ref Data::mPrimeState | - * | #8:(U32) | \ref Data::mRecirculateState | - * | #9:(U32) | \ref Data::mPatientConnectionState | + * | Payload || + * | || + * | # 1:(U32) | \ref Data::mSubMode | + * | # 2:(U32) | \ref Data::mWaterSampleState | + * | # 3:(U32) | \ref Data::mSelfTestConsumablesState | + * | # 4:(U32) | \ref Data::mSelfTestNoCartridgeState | + * | # 5:(U32) | \ref Data::mInstallationState | + * | # 6:(U32) | \ref Data::mSelfTestDryState | + * | # 7:(U32) | \ref Data::mPrimeState | + * | # 8:(U32) | \ref Data::mRecirculateState | + * | # 9:(U32) | \ref Data::mPatientConnectionState | + * | #10:(U32) | \ref Data::mWetSelfTestsState | + * | #11:(U32) | \ref Data::mPreTreatmentRsrvrState | * * \sa Data * \sa HD_Pre_Treatment_Mode_States @@ -73,15 +75,17 @@ QVariantList parameters() const override; struct { - Types::U32 mSubMode ; - Types::U32 mWaterSampleState ; - Types::U32 mSelfTestConsumablesState ; - Types::U32 mSelfTestNoCartridgeState ; - Types::U32 mInstallationState ; - Types::U32 mSelfTestDryState ; - Types::U32 mPrimeState ; - Types::U32 mRecirculateState ; - Types::U32 mPatientConnectionState ; + Types::U32 mSubMode ; ///< Current pre-treatment sub-mode + Types::U32 mWaterSampleState ; ///< Current sample water state + Types::U32 mSelfTestConsumablesState ; ///< Current consumable self-tests state + Types::U32 mSelfTestNoCartridgeState ; ///< Current no cartridge self-tests state + Types::U32 mInstallationState ; ///< Current disposable installation state + Types::U32 mSelfTestDryState ; ///< Current dry self-tests state + Types::U32 mPrimeState ; ///< Current prime state + Types::U32 mRecirculateState ; ///< Current re-circulate state + Types::U32 mPatientConnectionState ; ///< Current patient connection state + Types::U32 mWetSelfTestsState ; ///< Current wet self-tests state + Types::U32 mPreTreatmentRsrvrState ; ///< Current pre-treatment reservoir state } _data; public: @@ -91,15 +95,17 @@ QString infoText () const override { return QString("PreTreatmentStates"); } struct Data { - quint32 mSubMode = 0; ///< SubMode State - HD_Pre_Treatment_Mode_States - quint32 mWaterSampleState = 0; ///< WaterSample State - HD_Pre_Treatment_Sample_Water_States - quint32 mSelfTestConsumablesState = 0; ///< selfTestConsumables State - HD_Pre_Treatment_Consumable_Self_Test_States - quint32 mSelfTestNoCartridgeState = 0; ///< SelfTestNoCartridge State - HD_Pre_Treatment_No_Cart_Self_Tests_States - quint32 mInstallationState = 0; ///< Installation State - 0 = One state only - quint32 mSelfTestDryState = 0; ///< SelfTestDry State - HD_Pre_Treatment_Dry_Self_Tests_States - quint32 mPrimeState = 0; ///< Prime State - HD_Pre_Treatment_Prime_States - quint32 mRecirculateState = 0; ///< Recirculate State - HD_Pre_Treatment_Recirc_States - quint32 mPatientConnectionState = 0; ///< PatientConnection State - 0 = One state only + quint32 mSubMode = 0; ///< SubMode State - HD_Pre_Treatment_Mode_States + quint32 mWaterSampleState = 0; ///< WaterSample State - HD_Pre_Treatment_Sample_Water_States + quint32 mSelfTestConsumablesState = 0; ///< selfTestConsumables State - HD_Pre_Treatment_Consumable_Self_Test_States + quint32 mSelfTestNoCartridgeState = 0; ///< SelfTestNoCartridge State - HD_Pre_Treatment_No_Cart_Self_Tests_States + quint32 mInstallationState = 0; ///< Installation State - 0 = One state only + quint32 mSelfTestDryState = 0; ///< SelfTestDry State - HD_Pre_Treatment_Dry_Self_Tests_States + quint32 mPrimeState = 0; ///< Prime State - HD_Pre_Treatment_Prime_States + quint32 mRecirculateState = 0; ///< Recirculate State - HD_Pre_Treatment_Recirc_States + quint32 mPatientConnectionState = 0; ///< PatientConnection State - 0 = One state only + quint32 mWetSelfTestsState = 0; ///< ??? State - Current wet self-tests state + quint32 mPreTreatmentRsrvrState = 0; ///< ??? State - Current pre-treatment reservoir state }; MPreTreatmentStates() { } Index: sources/storage/Logger.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/storage/Logger.h (.../Logger.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/storage/Logger.h (.../Logger.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -36,7 +36,7 @@ #define LOG_APPED(vCONTENT) emit Storage::Logger::I().didLog(vCONTENT, Storage::Logger::LogType::eLogAppED, true ) #define LOG_DEBUG(vCONTENT) emit Storage::Logger::I().didLog(vCONTENT, Storage::Logger::LogType::eLogDebug, true ) -#define LOG_APPED_UI(vCONTENT) emit Storage::Logger::I().didLog("UI," + vCONTENT, Storage::Logger::LogType::eLogAppED, true ) +#define LOG_APPED_UI(vCONTENT) emit Storage::Logger::I().didLog(" ,UI," + vCONTENT, Storage::Logger::LogType::eLogAppED, true ) // forward declarations class tst_logging; @@ -94,7 +94,7 @@ bool _logStorageReady = true; - const char *_headerA = "TimeStamp,SubSys,Name,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40"; + const char *_headerA = "TimeStamp,ID,SubSys,Name,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40"; const char *_headerD = "TimeStamp,Description"; QDir _dir; QString _logFileNamePrefix; Index: sources/view/dg/data/VDGHeatersData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/dg/data/VDGHeatersData.cpp (.../VDGHeatersData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/dg/data/VDGHeatersData.cpp (.../VDGHeatersData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -21,7 +21,15 @@ void VDGHeaters::onActionReceive(const DGHeatersData &vData) { - mainPrimaryDC ( vData.mMainPrimaryDC ); - smallPrimaryDC ( vData.mSmallPrimaryDC ); - trimmerDC ( vData.mTrimmerDC ); + mainPrimayHeaterDC ( vData.mMainPrimayHeaterDC ); + smallPrimaryHeaterDC ( vData.mSmallPrimaryHeaterDC ); + trimmerHeaterDC ( vData.mTrimmerHeaterDC ); + primaryTargetTemp ( vData.mPrimaryTargetTemp ); + trimmerTargetTemp ( vData.mTrimmerTargetTemp ); + primaryHeaterState ( vData.mPrimaryHeaterState ); + trimmerHeaterState ( vData.mTrimmerHeaterState ); + primaryEfficiency ( vData.mPrimaryEfficiency ); + primaryCalcTargetTemp ( vData.mPrimaryCalcTargetTemp ); + trimmerCalcCurrentTemp ( vData.mTrimmerCalcCurrentTemp ); + trimmerUseLastDC ( vData.mTrimmerUseLastDC ); } Index: sources/view/dg/data/VDGHeatersData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/dg/data/VDGHeatersData.h (.../VDGHeatersData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/dg/data/VDGHeatersData.h (.../VDGHeatersData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -8,7 +8,7 @@ * \file VDGHeatersData.h * \author (last) Behrouz NematiPour * \date (last) 10-Aug-2021 - * \author (original) Behrouz NemaiPour + * \author (original) Behrouz NematiPour * \date (original) 02-Jul-2020 * */ @@ -36,9 +36,17 @@ { Q_OBJECT - PROPERTY( float , mainPrimaryDC , 0) - PROPERTY( float , smallPrimaryDC , 0) - PROPERTY( float , trimmerDC , 0) + PROPERTY( float , mainPrimayHeaterDC , 0) + PROPERTY( float , smallPrimaryHeaterDC , 0) + PROPERTY( float , trimmerHeaterDC , 0) + PROPERTY( float , primaryTargetTemp , 0) + PROPERTY( float , trimmerTargetTemp , 0) + PROPERTY( quint32 , primaryHeaterState , 0) + PROPERTY( quint32 , trimmerHeaterState , 0) + PROPERTY( float , primaryEfficiency , 0) + PROPERTY( float , primaryCalcTargetTemp , 0) + PROPERTY( float , trimmerCalcCurrentTemp , 0) + PROPERTY( quint32 , trimmerUseLastDC , 0) VIEW_DEC(VDGHeaters, DGHeatersData) }; Index: sources/view/dg/data/VDGPressuresData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/dg/data/VDGPressuresData.cpp (.../VDGPressuresData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/dg/data/VDGPressuresData.cpp (.../VDGPressuresData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -21,8 +21,9 @@ void VDGPressures::onActionReceive(const DGPressuresData &vData) { - roInletPSI ( vData.mROInletPSI ); - roOutletPSI ( vData.mROOutletPSI ); - drainInletPSI ( vData.mDrainInletPSI ); - drainOutletPSI ( vData.mDrainOutletPSI ); + roInletPSI ( vData.mROInletPSI ); + roOutletPSI ( vData.mROOutletPSI ); + drainInletPSI ( vData.mDrainInletPSI ); + drainOutletPSI ( vData.mDrainOutletPSI ); + barometricPSI ( vData.mBarometricPSI ); } Index: sources/view/dg/data/VDGPressuresData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/dg/data/VDGPressuresData.h (.../VDGPressuresData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/dg/data/VDGPressuresData.h (.../VDGPressuresData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -36,10 +36,11 @@ { Q_OBJECT - PROPERTY( float , roInletPSI , 0) - PROPERTY( float , roOutletPSI , 0) - PROPERTY( float , drainInletPSI , 0) - PROPERTY( float , drainOutletPSI , 0) + PROPERTY( float , roInletPSI , 0) + PROPERTY( float , roOutletPSI , 0) + PROPERTY( float , drainInletPSI , 0) + PROPERTY( float , drainOutletPSI , 0) + PROPERTY( float , barometricPSI , 0) VIEW_DEC(VDGPressures, DGPressuresData) }; Index: sources/view/dg/data/VDGTemperaturesData.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/dg/data/VDGTemperaturesData.cpp (.../VDGTemperaturesData.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/dg/data/VDGTemperaturesData.cpp (.../VDGTemperaturesData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -21,17 +21,25 @@ void VDGTemperatures::onActionReceive(const DGTemperaturesData &vData) { - inletPrimaryHeater ( vData.mInletPrimaryHeater ); - heatDisinfect ( vData.mHeatDisinfect ); - outletPrimaryHeater ( vData.mOutletPrimaryHeater ); - conductivitySensor1 ( vData.mConductivitySensor1 ); - conductivitySensor2 ( vData.mConductivitySensor2 ); - outletRedundancy ( vData.mOutletRedundancy ); - inletDialysate ( vData.mInletDialysate ); - primaryHeaterThermoCouple ( vData.mPrimaryHeaterThermoCouple ); - trimmerHeaterThermoCouple ( vData.mTrimmerHeaterThermoCouple ); - primaryHeaterColdJunction ( vData.mPrimaryHeaterColdJunction ); - trimmerHeaterColdJunction ( vData.mTrimmerHeaterColdJunction ); - primaryHeaterInternal ( vData.mPrimaryHeaterInternal ); - trimmerHeaterInternal ( vData.mTrimmerHeaterInternal ); + inletPrimaryHeater ( vData.mInletPrimaryHeater ); + heatDisinfect ( vData.mHeatDisinfect ); + outletPrimaryHeater ( vData.mOutletPrimaryHeater ); + conductivitySensor1 ( vData.mConductivitySensor1 ); + conductivitySensor2 ( vData.mConductivitySensor2 ); + outletRedundancy ( vData.mOutletRedundancy ); + inletDialysate ( vData.mInletDialysate ); + primaryHeaterThermoCouple ( vData.mPrimaryHeaterThermoCouple ); + trimmerHeaterThermoCouple ( vData.mTrimmerHeaterThermoCouple ); + primaryHeaterColdJunction ( vData.mPrimaryHeaterColdJunction ); + trimmerHeaterColdJunction ( vData.mTrimmerHeaterColdJunction ); + primaryHeaterInternal ( vData.mPrimaryHeaterInternal ); + trimmerHeaterInternal ( vData.mTrimmerHeaterInternal ); + fpgaBoard ( vData.mFpgaBoard ); + loadCellA1B1 ( vData.mLoadCellA1B1 ); + loadCellA2B2 ( vData.mLoadCellA2B2 ); + internalTHDORTD ( vData.mInternalTHDORTD ); + internalTDIRTD ( vData.mInternalTDIRTD ); + interalTHDRTD ( vData.mInteralTHDRTD ); + internalCondSnsrTemp ( vData.mInternalCondSnsrTemp ); + baroTempSensor ( vData.mBaroTempSensor ); } Index: sources/view/dg/data/VDGTemperaturesData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/dg/data/VDGTemperaturesData.h (.../VDGTemperaturesData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/dg/data/VDGTemperaturesData.h (.../VDGTemperaturesData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -49,6 +49,14 @@ PROPERTY( float , trimmerHeaterColdJunction , 0) PROPERTY( float , primaryHeaterInternal , 0) PROPERTY( float , trimmerHeaterInternal , 0) + PROPERTY( float , fpgaBoard , 0) + PROPERTY( float , loadCellA1B1 , 0) + PROPERTY( float , loadCellA2B2 , 0) + PROPERTY( float , internalTHDORTD , 0) + PROPERTY( float , internalTDIRTD , 0) + PROPERTY( float , interalTHDRTD , 0) + PROPERTY( float , internalCondSnsrTemp , 0) + PROPERTY( float , baroTempSensor , 0) VIEW_DEC(VDGTemperatures, DGTemperaturesData) }; Index: sources/view/hd/alarm/VAlarmActiveList.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/hd/alarm/VAlarmActiveList.cpp (.../VAlarmActiveList.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/hd/alarm/VAlarmActiveList.cpp (.../VAlarmActiveList.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -16,8 +16,8 @@ // Project #include "GuiController.h" +#include "Settings.h" -VIEW_DEF_CLASS_ADJUSTMENT(VAlarmActiveList) #define PROPERTY_ALARM_SET(vIndex) \ a##vIndex##ID ( vData.mAlarmID##vIndex ) ; \ @@ -32,12 +32,16 @@ a##vIndex##ID ( 0 ) ; \ a##vIndex##Text ( "" ); \ + +VIEW_DEF_CLASS_ADJUSTMENT(VAlarmActiveList) + /*! \brief Connection Initializer \details All the class signal/slot connections are defined here. */ void View::VAlarmActiveList::initConnections() { - ADJUST_VIEW_CONNECTION(AlarmActiveListRequestData ); - ACTION_VIEW_CONNECTION(AlarmActiveListResponseData); + ADJUST_VIEW_CONNECTION(AlarmActiveListRequestData ); + ACTION_VIEW_CONNECTION(AlarmActiveListResponseData ); + ACTION_VIEW_CONNECTION(SettingsData ); } /*! @@ -96,10 +100,35 @@ */ QString View::VAlarmActiveList::alarmIDText(quint32 vID) { + if ( _alarmTitles.contains(vID) ) { + return _alarmTitles[vID]; + } return Model::MAlarmStatus::toText(static_cast(vID)); } /*! + * \brief View::VAlarmActiveList::onActionReceive + * \details This function updates the list of titles for each AlarmID to be used as the text in activeAlarmList screen, + * when the settings controller is done reading the Alarms.conf and signaling this class. + * \todo This function with the same one in VAlarmStatus needs to be moved to a Controller Model structure, for a better performance and memory management. + */ +void View::VAlarmActiveList::onActionReceive(const SettingsData &) { + QString category = Storage::Settings_Category_Alarms; + QStringList groups = _Settings.groups(category); + for (const auto &group : groups) { + bool ok = true; + quint32 id = group.toInt( &ok ); + if ( ! ok ) { LOG_DEBUG(QString("Not an alarm ID number [%1]").arg(group)); continue; } + + for (const QString &key : _Settings.keys(category, group)) { + if (Storage::Settings::isKeyTitle ( key ) ) { + _alarmTitles[id] = _Settings.value(category, group, key).toString(); + } + } + } +} + +/*! * \brief View::VAlarmActiveList::doRequest * \details Sends the request to get the list of active alarms */ Index: sources/view/hd/alarm/VAlarmActiveList.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/hd/alarm/VAlarmActiveList.h (.../VAlarmActiveList.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/hd/alarm/VAlarmActiveList.h (.../VAlarmActiveList.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -21,6 +21,7 @@ #include "main.h" // Doxygen : do not remove #include "VAdjustmentResponseBase.h" #include "MAlarmActiveList.h" +#include "MSettings.h" namespace View { @@ -38,6 +39,8 @@ // friends friend class ::tst_views; + QMap _alarmTitles; + // disabled coco begin validated: // The property adjustment_Triggered has to be always true // and to always trigger the change event to work as a notifier for GUI @@ -72,7 +75,9 @@ PROPERTY(QString , status , "") - VIEW_DEC_CLASS_ADJUSTMENT(VAlarmActiveList, AlarmActiveListResponseData) + VIEW_DEC_CLASS ( VAlarmActiveList ) + VIEW_DEC_SLOT ( AlarmActiveListResponseData ) + VIEW_DEC_SLOT ( SettingsData ) QString alarmIDText(quint32 vID); Index: sources/view/hd/alarm/VAlarmStatus.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/hd/alarm/VAlarmStatus.cpp (.../VAlarmStatus.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/hd/alarm/VAlarmStatus.cpp (.../VAlarmStatus.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -200,6 +200,12 @@ QStringList VAlarmStatus::instructionKeys () { if ( ! _alarm_AlarmID ) return {}; return _alarms[_alarm_AlarmID].instructions.keys () ; } QStringList VAlarmStatus::instructionValues () { if ( ! _alarm_AlarmID ) return {}; return _alarms[_alarm_AlarmID].instructions.values () ; } +/*! + * \brief View::VAlarmStatus::onActionReceive + * \details This function updates the alarm structure defined here to be used on the AlarmDialogs, + * when the settings controller is done reading the Alarms.conf and signaling this class. + * \todo This function with the same one in VActiveAlarmList needs to be moved to a Controller Model structure, for a better performance and memory management. + */ void VAlarmStatus::onActionReceive(const SettingsData &) { QString category = Storage::Settings_Category_Alarms; QStringList groups = _Settings.groups(category); Index: sources/view/hd/alarm/VAlarmStatus.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/hd/alarm/VAlarmStatus.h (.../VAlarmStatus.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/view/hd/alarm/VAlarmStatus.h (.../VAlarmStatus.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -59,7 +59,7 @@ bool hasInstruction() { return instructions.count(); } }; - QMap _alarms; + QMap _alarms; // ********** DYNAMIC PROPERTIES: The properties which need to be updated by each alarm message received. ********** // READONLY( bool , hasAlarm , false) Index: sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp =================================================================== diff -u -r8172c6aa4187be26aa9c0e73a130bc6183ad10dd -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp (.../VPreTreatmentStatesData.cpp) (revision 8172c6aa4187be26aa9c0e73a130bc6183ad10dd) +++ sources/view/hd/data/pretreatment/VPreTreatmentStatesData.cpp (.../VPreTreatmentStatesData.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -36,6 +36,8 @@ primeState ( vData.mPrimeState ); recirculateState ( vData.mRecirculateState ); patientConnectionState ( vData.mPatientConnectionState ); + wetSelfTestsState ( vData.mWetSelfTestsState ); + preTreatmentRsrvrState ( vData.mPreTreatmentRsrvrState ); // water sample state bool mWaterSample = vData.mSubMode == GuiPreTreatmentStates ::HD_PRE_TREATMENT_WATER_SAMPLE_STATE ; Index: sources/view/hd/data/pretreatment/VPreTreatmentStatesData.h =================================================================== diff -u -r8172c6aa4187be26aa9c0e73a130bc6183ad10dd -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- sources/view/hd/data/pretreatment/VPreTreatmentStatesData.h (.../VPreTreatmentStatesData.h) (revision 8172c6aa4187be26aa9c0e73a130bc6183ad10dd) +++ sources/view/hd/data/pretreatment/VPreTreatmentStatesData.h (.../VPreTreatmentStatesData.h) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -49,6 +49,8 @@ PROPERTY( quint8 , primeState , 0 ) ///< HD_PRE_TREATMENT_PRIME_STATE , Prime blood and dialysate circuits and run wet self-tests state PROPERTY( quint8 , recirculateState , 0 ) ///< HD_PRE_TREATMENT_RECIRCULATE_STATE , Re-circulate blood and dialysate circuits state PROPERTY( quint8 , patientConnectionState , 0 ) ///< HD_PRE_TREATMENT_PATIENT_CONNECTION_STATE , Patient connection state + PROPERTY( quint8 , wetSelfTestsState , 0 ) ///< ??? , ??? + PROPERTY( quint8 , preTreatmentRsrvrState , 0 ) ///< ??? , ??? // Start pre-treatment mode state PROPERTY( bool , waterSample , false ) ///< HD_PRE_TREATMENT_WATER_SAMPLE_STATE , Water sample state Index: unittests/tst_models.cpp =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -r1f2e7dbd08b00f8c56eedf29f083733570aa642e --- unittests/tst_models.cpp (.../tst_models.cpp) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ unittests/tst_models.cpp (.../tst_models.cpp) (revision 1f2e7dbd08b00f8c56eedf29f083733570aa642e) @@ -775,18 +775,18 @@ QTest::addColumn("errorIndex"); QTest::addColumn("data"); QTest::newRow("msg complete ") << 0 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "0A" "0B")); - QTest::newRow("mMainPrimaryDC ") << 1 << QByteArray::fromHex(QByteArray()); - QTest::newRow("mMainPrimaryDC ") << 1 << QByteArray::fromHex(QByteArray("00")); - QTest::newRow("mMainPrimaryDC ") << 1 << QByteArray::fromHex(QByteArray("00" "01")); - QTest::newRow("mMainPrimaryDC ") << 1 << QByteArray::fromHex(QByteArray("00" "01" "02")); - QTest::newRow("mSmallPrimaryDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03")); - QTest::newRow("mSmallPrimaryDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04")); - QTest::newRow("mSmallPrimaryDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05")); - QTest::newRow("mSmallPrimaryDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06")); - QTest::newRow("mTrimmerDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07")); - QTest::newRow("mTrimmerDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08")); - QTest::newRow("mTrimmerDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08" "09")); - QTest::newRow("mTrimmerDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "0A")); + QTest::newRow("mMainPrimayHeaterDC ") << 1 << QByteArray::fromHex(QByteArray()); + QTest::newRow("mMainPrimayHeaterDC ") << 1 << QByteArray::fromHex(QByteArray("00")); + QTest::newRow("mMainPrimayHeaterDC ") << 1 << QByteArray::fromHex(QByteArray("00" "01")); + QTest::newRow("mMainPrimayHeaterDC ") << 1 << QByteArray::fromHex(QByteArray("00" "01" "02")); + QTest::newRow("mSmallPrimaryHeaterDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03")); + QTest::newRow("mSmallPrimaryHeaterDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04")); + QTest::newRow("mSmallPrimaryHeaterDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05")); + QTest::newRow("mSmallPrimaryHeaterDC") << 2 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06")); + QTest::newRow("mTrimmerHeaterDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07")); + QTest::newRow("mTrimmerHeaterDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08")); + QTest::newRow("mTrimmerHeaterDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08" "09")); + QTest::newRow("mTrimmerHeaterDC ") << 3 << QByteArray::fromHex(QByteArray("00" "01" "02" "03" "04" "05" "06" "07" "08" "09" "0A")); } // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ DGHeatersData test definition ~~~~~~~~~~~~~~~~~~~~~~~~ // void tst_models::tst_DGHeatersData() { @@ -804,10 +804,10 @@ #endif switch (errorIndex) { - case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; - case 1: { index = index * sizeof mData._data.mMainPrimaryDC ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; - case 2: { index = index * sizeof mData._data.mSmallPrimaryDC; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; - case 3: { index = index * sizeof mData._data.mTrimmerDC ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; + case 0: { index = 0 ; QVERIFY ( mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; + case 1: { index = index * sizeof mData._data.mMainPrimayHeaterDC ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; + case 2: { index = index * sizeof mData._data.mSmallPrimaryHeaterDC ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; + case 3: { index = index * sizeof mData._data.mTrimmerHeaterDC ; QVERIFY (! mData.fromByteArray(data)); QCOMPARE( index, startIndex ); } break; default: QVERIFY2(false, "Incorrect Test"); break;