Index: sources/model/dg/data/MDGPressuresData.h =================================================================== diff -u -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 -rd8027c74c31ed6c4212d3fbb9a1523eedb7d685d --- sources/model/dg/data/MDGPressuresData.h (.../MDGPressuresData.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) +++ sources/model/dg/data/MDGPressuresData.h (.../MDGPressuresData.h) (revision d8027c74c31ed6c4212d3fbb9a1523eedb7d685d) @@ -27,11 +27,11 @@ /*! * \brief The MDGPressures class - * \details The DG pressure data model + * \details The DG pressures 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:(F32) | #2:(F32) | #3:(F32) | #4:(F32) | + * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: |:--: |:--: |:--: |:--: | + * |0x2000| 0x080 | 8 | 1 Hz | N | DG | All | DG Pressures Data | mROInletPSI | mROOutletPSI | mDrainInletPSI | mDrainOutletPSI | * * \sa Data * @@ -41,7 +41,6 @@ // friends friend class ::tst_models; - // DG Pressures Data (F32) RO inlet PSI (F32) RO outlet PSI (F32) Drain inlet PSI (F32) Drain outlet PSI QVariantList parameters() const override; struct { @@ -58,10 +57,10 @@ QString infoText () const override { return QString("Pressures"); } struct Data { - float mROInletPSI = 0; /*!< Reservoir1 Prim value of type float extracted out */ - float mROOutletPSI = 0; /*!< Reservoir1 Bkup value of type float extracted out */ - float mDrainInletPSI = 0; /*!< Reservoir2 Prim value of type float extracted out */ - float mDrainOutletPSI = 0; /*!< Reservoir2 Bkup value of type float extracted out */ + float mROInletPSI = 0; ///< RO inlet PSI + float mROOutletPSI = 0; ///< RO outlet PSI + float mDrainInletPSI = 0; ///< Drain inlet PSI + float mDrainOutletPSI = 0; ///< Drain outlet PSI }; MDGPressures () {}