Index: sources/model/dg/data/MDGROPumpData.h =================================================================== diff -u -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 -rd8027c74c31ed6c4212d3fbb9a1523eedb7d685d --- sources/model/dg/data/MDGROPumpData.h (.../MDGROPumpData.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) +++ sources/model/dg/data/MDGROPumpData.h (.../MDGROPumpData.h) (revision d8027c74c31ed6c4212d3fbb9a1523eedb7d685d) @@ -27,11 +27,11 @@ /*! * \brief The MDGROPump class - * \details The DG reverse osmosis pump data model + * \details The DG RO pump data model * - * | MSG | CAN ID | M.Box | Type | Ack | Src | Dest | Description | #1 | #2 | #3 | #4 | #5 | #6 | #7 | #8 | - * |:---:|:------:|:-----:|:----:|:---:|:---:|:----:|:-----------:|:--:|:--:|:--:|:--:|:--:|:--:|:--:|:--:| - * | | | | | | | | | | | | | | | | | + * | MSG | CAN ID | Box | Type | Ack | Src | Dst | Description | #1:(U32) | #2:(F32) | #3:(F32) | + * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: |:--: |:--: |:--: | + * |0x1F00| 0x080 | 8 | 1 Hz | N | DG | All | DG RO Pump Data | mPressure | mFlowRate | mPWM | * * \sa Data * @@ -41,7 +41,6 @@ // friends friend class ::tst_models; - // DG RO Pump Data (U32) Set pt. pressure (F32) flow rate (F32) PWM QVariantList parameters() const override; struct { @@ -57,9 +56,9 @@ QString infoText () const override { return QString("ROPump"); } struct Data { - quint32 mPressure = 0; /*!< ArterialPressure value of type float extracted out */ - float mFlowRate = 0; /*!< VenousPressure value of type float extracted out */ - float mPWM = 0; /*!< BloodPumpOcclusion value of type float extracted out */ + quint32 mPressure = 0; ///< Set pt. pressure + float mFlowRate = 0; ///< flow rate + float mPWM = 0; ///< PWM }; MDGROPump () { }