Index: sources/canbus/MessageInterpreter.cpp =================================================================== diff -u -ra0f2700fad25ef602d0e3b953186d5572efd8169 -r2cee3c28bf7565eeb55dcb033961fe6962f11d16 --- sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision a0f2700fad25ef602d0e3b953186d5572efd8169) +++ sources/canbus/MessageInterpreter.cpp (.../MessageInterpreter.cpp) (revision 2cee3c28bf7565eeb55dcb033961fe6962f11d16) @@ -230,7 +230,7 @@ break; case Gui::GuiActionType::ID_PowerOff : INTERPRET_RECEIVED_MESSAGE(AdjustPowerOffRequestData ); break; - case Gui::GuiActionType::ID_AdjustVersionsReq : INTERPRET_RECEIVED_MESSAGE(AdjustVersionsRequestData ); break; + case Gui::GuiActionType::ID_AdjustVersionsReq : INTERPRET_RECVD_MT_MESSAGE(AdjustVersionsRequestData ); break; // in-treatment case Gui::GuiActionType::ID_AdjustDurationReq : INTERPRET_RECEIVED_MESSAGE(AdjustDurationRequestData ); break; case Gui::GuiActionType::ID_AdjustBloodDialysateReq : INTERPRET_RECEIVED_MESSAGE(AdjustBloodDialysateRequestData ); break; Index: sources/gui/qml/pages/ManagerHome.qml =================================================================== diff -u -r2d2917978a4e25eb79a0fb71851b6124171d8072 -r2cee3c28bf7565eeb55dcb033961fe6962f11d16 --- sources/gui/qml/pages/ManagerHome.qml (.../ManagerHome.qml) (revision 2d2917978a4e25eb79a0fb71851b6124171d8072) +++ sources/gui/qml/pages/ManagerHome.qml (.../ManagerHome.qml) (revision 2cee3c28bf7565eeb55dcb033961fe6962f11d16) @@ -288,6 +288,14 @@ ] textObjectName: "_HDVersions" } + TouchRect { + x : col(5.2) + y : row(4.5) + width : 150 + height : 35 + text.text : "Get Version" + onClicked : vTreatmentAdjustmentVersions.doAdjustment() + } DebugDataColumn { id: _DGVersionsColumn x: col(6) Index: sources/view/hd/data/VHDTreatmentStatesData.h =================================================================== diff -u -rdd2d4b50f32f74eccbc9592be5ef9da0bc0fbd25 -r2cee3c28bf7565eeb55dcb033961fe6962f11d16 --- sources/view/hd/data/VHDTreatmentStatesData.h (.../VHDTreatmentStatesData.h) (revision dd2d4b50f32f74eccbc9592be5ef9da0bc0fbd25) +++ sources/view/hd/data/VHDTreatmentStatesData.h (.../VHDTreatmentStatesData.h) (revision 2cee3c28bf7565eeb55dcb033961fe6962f11d16) @@ -116,7 +116,6 @@ PROPERTY( bool , tsRecirculate , true ) ///< TREATMENT_STOP_RECIRC_STATE = 0 # Dialysate re-circulation state of the treatment stop sub-mode state machine PROPERTY( bool , tsRecirculateNo , false) ///< TREATMENT_STOP_NO_RECIRC_STATE = 1 # No dialysate re-circulation state of the treatment stop sub-mode state machine - // class definition VIEW_DEC_CLASS(VHDTreatmentStates)