Index: sources/model/dg/data/MDGLoadCellReadingsData.h =================================================================== diff -u -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 -rd8027c74c31ed6c4212d3fbb9a1523eedb7d685d --- sources/model/dg/data/MDGLoadCellReadingsData.h (.../MDGLoadCellReadingsData.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) +++ sources/model/dg/data/MDGLoadCellReadingsData.h (.../MDGLoadCellReadingsData.h) (revision d8027c74c31ed6c4212d3fbb9a1523eedb7d685d) @@ -27,11 +27,11 @@ /*! * \brief The MDGLoadCellReadings class - * \details The DG load cells reading data model + * \details The DG load cell readings 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) | + * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: |:--: |:--: |:--: |:--: | + * |0x0C00| 0x080 | 8 | 10 Hz | N | DG | All | DG Load Cell Readings Data | mReservoir1Prim | mReservoir1Bkup | mReservoir2Prim | mReservoir2Bkup | * * \sa Data * @@ -41,7 +41,6 @@ // friends friend class ::tst_models; - // Load Cell Readings Data Rs1 Prim. (F32) Rs1 Bkup (F32) Rs2 Prim. (F32) Rs2 Bkup (F32) QVariantList parameters() const override; struct { @@ -58,10 +57,10 @@ QString infoText () const override { return QString("LoadCell"); } struct Data { - float mReservoir1Prim = 0; /*!< Reservoir1 Prim value of type float extracted out */ - float mReservoir1Bkup = 0; /*!< Reservoir1 Bkup value of type float extracted out */ - float mReservoir2Prim = 0; /*!< Reservoir2 Prim value of type float extracted out */ - float mReservoir2Bkup = 0; /*!< Reservoir2 Bkup value of type float extracted out */ + float mReservoir1Prim = 0; ///< Reservoir1 Primary + float mReservoir1Bkup = 0; ///< Reservoir1 Back up + float mReservoir2Prim = 0; ///< Reservoir2 Primary + float mReservoir2Bkup = 0; ///< Reservoir2 Back up }; MDGLoadCellReadings () {}