Index: sources/model/dg/data/MDGDrainPumpData.h =================================================================== diff -u -rc9f8f8cf3c6c37fc6460d8675c62c9442c4d4263 -rf498a8439de814de93748f2f20315ce69900378e --- sources/model/dg/data/MDGDrainPumpData.h (.../MDGDrainPumpData.h) (revision c9f8f8cf3c6c37fc6460d8675c62c9442c4d4263) +++ sources/model/dg/data/MDGDrainPumpData.h (.../MDGDrainPumpData.h) (revision f498a8439de814de93748f2f20315ce69900378e) @@ -36,11 +36,15 @@ * * | Payload || * | || - * | #1:(U32) | \ref Data::mRPMI | - * | #2:(U32) | \ref Data::mDAC | - * | #3:(U32) | \ref Data::mState | - * | #4:(U32) | \ref Data::mPRMO | + * | #1:(U32) | \ref Data::mRPMI | + * | #2:(U32) | \ref Data::mDAC | + * | #3:(U32) | \ref Data::mState | + * | #4:(U32) | \ref Data::mPRMO | + * | #5:(F32) | \ref Data::mTargetFLPMO | + * | #6:(F32) | \ref Data::mCurrentA | + * | #7:(U32) | \ref Data::mDirection | * + * * \sa Data * *

Logging info

@@ -59,10 +63,13 @@ QVariantList parameters() const override; struct { - Types::U32 mRPMI ; - Types::U32 mDAC ; - Types::U32 mState ; - Types::U32 mRPMO ; + Types::U32 mRPMI ; + Types::U32 mDAC ; + Types::U32 mState ; + Types::U32 mRPMO ; + Types::F32 mTargetFLPMO ; + Types::F32 mCurrentA ; + Types::U32 mDirection ; } _data; public: @@ -72,10 +79,13 @@ QString infoText () const override { return QString("DrainPump"); } struct Data { - quint32 mRPMI = 0; ///< Set pt. RPM - quint32 mDAC = 0; ///< DAC value - quint32 mState = 0; ///< State - quint32 mRPMO = 0; ///< RPM read + quint32 mRPMI = 0; ///< Set pt. RPM + quint32 mDAC = 0; ///< DAC value + quint32 mState = 0; ///< State + quint32 mRPMO = 0; ///< RPM read + float mTargetFLPMO = 0; ///< target Outlet Flow LPM + float mCurrentA = 0; ///< drain Pump Current A + quint32 mDirection = 0; ///< drain Pump Direction }; MDGDrainPump () { }