Index: sources/model/dd/data/MDDBloodLeakData.h =================================================================== diff -u -r64d551143d898bf2ce79cb564e5a3389eb9be91e -r4ae0f0abdbe4edfcd93dbf5b0240417f1f079586 --- sources/model/dd/data/MDDBloodLeakData.h (.../MDDBloodLeakData.h) (revision 64d551143d898bf2ce79cb564e5a3389eb9be91e) +++ sources/model/dd/data/MDDBloodLeakData.h (.../MDDBloodLeakData.h) (revision 4ae0f0abdbe4edfcd93dbf5b0240417f1f079586) @@ -36,7 +36,16 @@ * * | Payload || * | || - * | #1:(U32) | \ref Data::mBloodLeak | + * | #1:(U32) | \ref Data::mBloodLeakStatus | + * | #2:(U32) | \ref Data::mBloodLeakState | + * | #3:(U32) | \ref Data::mBloodLeakPersistentCounter | + * | #4:(U32) | \ref Data::mBloodLeakSerialCommState | + * | #5:(U32) | \ref Data::mBloodLeakIntensity | + * | #6:(U32) | \ref Data::mBloodLeakDetect | + * | #7:(F32) | \ref Data::mBloodLeakIntensityMovingAvg | + * | #8:(U32) | \ref Data::mBloodLeakTimeSinceZeroMS | + * | #9:(U32) | \ref Data::mDriftInRangeStatus | + * |#10:(U32) | \ref Data::mDriftUpperRangeStatus | * * \sa Data * @@ -56,7 +65,16 @@ QVariantList parameters() const override; struct { - Types::U32 mBloodLeak ; + Types::U32 mBloodLeakStatus ; + Types::U32 mBloodLeakState ; + Types::U32 mBloodLeakPersistentCounter ; + Types::U32 mBloodLeakSerialCommState ; + Types::U32 mBloodLeakIntensity ; + Types::U32 mBloodLeakDetect ; + Types::F32 mBloodLeakIntensityMovingAvg ; + Types::U32 mBloodLeakTimeSinceZeroMS ; + Types::U32 mDriftInRangeStatus ; + Types::U32 mDriftUpperRangeStatus ; } _data; public: @@ -66,7 +84,16 @@ QString infoText () const override { return QString("BloodLeak") ; } struct Data { - quint32 mBloodLeak = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakStatus = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakState = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakPersistentCounter = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakSerialCommState = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakIntensity = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakDetect = 0; ///< DD Blood Leak Sensor status + float mBloodLeakIntensityMovingAvg = 0; ///< DD Blood Leak Sensor status + quint32 mBloodLeakTimeSinceZeroMS = 0; ///< DD Blood Leak Sensor status + quint32 mDriftInRangeStatus = 0; ///< DD Blood Leak Sensor status + quint32 mDriftUpperRangeStatus = 0; ///< DD Blood Leak Sensor status }; MDDBloodLeakData () { }