Index: sources/model/hd/data/treatment/MTreatmentStatesData.h =================================================================== diff -u -r34861b44547037950fcf398accc7649f7fac4529 -r78b3d1f4e6675e6a8c5ae3801d134e2d7a49ad06 --- sources/model/hd/data/treatment/MTreatmentStatesData.h (.../MTreatmentStatesData.h) (revision 34861b44547037950fcf398accc7649f7fac4529) +++ sources/model/hd/data/treatment/MTreatmentStatesData.h (.../MTreatmentStatesData.h) (revision 78b3d1f4e6675e6a8c5ae3801d134e2d7a49ad06) @@ -1,13 +1,13 @@ /*! * - * Copyright (c) 2021-2022 Diality Inc. - All Rights Reserved. + * Copyright (c) 2021-2024 Diality Inc. - All Rights Reserved. * \copyright * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * \file MTreatmentStatesData.h - * \author (last) Behrouz NematiPour - * \date (last) 11-Apr-2021 + * \author (last) Dara Navaei + * \date (last) 06-Nov-2024 * \author (original) Behrouz NematiPour * \date (original) 11-Apr-2021 * @@ -38,15 +38,17 @@ * * | Payload || * | || - * | #1:(U32) | \ref Data::mSubMode | - * | #2:(U32) | \ref Data::mUFState | - * | #3:(U32) | \ref Data::mSalineState | - * | #4:(U32) | \ref Data::mHeparinState | - * | #5:(U32) | \ref Data::mRinsebackState | - * | #6:(U32) | \ref Data::mRecirculateState | - * | #6:(U32) | \ref Data::mBloodPrimeState | - * | #6:(U32) | \ref Data::mTreatmentEndState | - * | #6:(U32) | \ref Data::mTreatmentStopState | + * | #01:(U32) | \ref Data::mSubMode | + * | #02:(U32) | \ref Data::mUFState | + * | #03:(U32) | \ref Data::mSalineState | + * | #04:(U32) | \ref Data::mHeparinState | + * | #05:(U32) | \ref Data::mRinsebackState | + * | #06:(U32) | \ref Data::mRecirculateState | + * | #07:(U32) | \ref Data::mBloodPrimeState | + * | #08:(U32) | \ref Data::mTreatmentEndState | + * | #09:(U32) | \ref Data::mTreatmentStopState | + * | #10:(U32) | \ref Data::mDialysisState | + * | #11:(U32) | \ref Data::mBloodLeakZeoringState | * * \sa Data * \sa Treatment_States @@ -58,6 +60,8 @@ * \sa Blood_Prime_States * \sa Treatment_Stop_States * \sa Treatment_End_States + * \sa Dialysis States + * \sa Blood Leak Zeroing States * *

Logging info

* | || @@ -75,16 +79,17 @@ QVariantList parameters() const override; struct { - Types::U32 mSubMode ; - Types::U32 mUFState ; - Types::U32 mSalineState ; - Types::U32 mHeparinState ; - Types::U32 mRinsebackState ; - Types::U32 mRecirculateState ; - Types::U32 mBloodPrimeState ; - Types::U32 mTreatmentEndState ; - Types::U32 mTreatmentStopState ; - Types::U32 mDialysisState ; + Types::U32 mSubMode ; + Types::U32 mUFState ; + Types::U32 mSalineState ; + Types::U32 mHeparinState ; + Types::U32 mRinsebackState ; + Types::U32 mRecirculateState ; + Types::U32 mBloodPrimeState ; + Types::U32 mTreatmentEndState ; + Types::U32 mTreatmentStopState ; + Types::U32 mDialysisState ; + Types::U32 mBloodLeakZeoringState ; } _data; public: @@ -94,16 +99,17 @@ QString infoText () const override { return QString("TreatmentStates"); } struct Data { - quint32 mSubMode = 0; ///< Sub-Mode State - Treatment_States - quint32 mUFState = 0; ///< UF State - UF_States - quint32 mSalineState = 0; ///< Saline State - Saline_Bolus_States - quint32 mHeparinState = 0; ///< Heparin State - Heparin_Bolus_States - quint32 mRinsebackState = 0; ///< Rinseback State - Rinseback_States - quint32 mRecirculateState = 0; ///< Recirculate State - Treatment_Recirc_States - quint32 mBloodPrimeState = 0; ///< BloodPrime State - Blood_Prime_States - quint32 mTreatmentEndState = 0; ///< TreatmentEnd State - Treatment_Stop_States - quint32 mTreatmentStopState = 0; ///< TreatmentStop State - Treatment_End_States - quint32 mDialysisState = 0; ///< Dialysis State - Dialysis_State + quint32 mSubMode = 0; ///< Sub-Mode State - Treatment_States + quint32 mUFState = 0; ///< UF State - UF_States + quint32 mSalineState = 0; ///< Saline State - Saline_Bolus_States + quint32 mHeparinState = 0; ///< Heparin State - Heparin_Bolus_States + quint32 mRinsebackState = 0; ///< Rinseback State - Rinseback_States + quint32 mRecirculateState = 0; ///< Recirculate State - Treatment_Recirc_States + quint32 mBloodPrimeState = 0; ///< BloodPrime State - Blood_Prime_States + quint32 mTreatmentEndState = 0; ///< TreatmentEnd State - Treatment_Stop_States + quint32 mTreatmentStopState = 0; ///< TreatmentStop State - Treatment_End_States + quint32 mDialysisState = 0; ///< Dialysis State - Dialysis_State + quint32 mBloodLeakZeoringState = 0; ///< Blood leak zeroing State - Blood leak zeroing States }; MTreatmentStates() { }