Index: sources/model/hd/data/MTreatmentRangesData.h =================================================================== diff -u -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 -rd8027c74c31ed6c4212d3fbb9a1523eedb7d685d --- sources/model/hd/data/MTreatmentRangesData.h (.../MTreatmentRangesData.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) +++ sources/model/hd/data/MTreatmentRangesData.h (.../MTreatmentRangesData.h) (revision d8027c74c31ed6c4212d3fbb9a1523eedb7d685d) @@ -28,12 +28,11 @@ /*! * \brief The MTreatmentRanges class - * \details The treatment ranges data model - * The ranges are used for adjustments and these values are ranges of adjustment. + * \details The treatment adjustment parameter ranges 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:(U32) | #3:(F32) | #4:(F32) | #5:(U32) | #6:(U32) | + * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: |:--: |:--: |:--: |:--: |:--: |:--: | + * |0x1A00| 0x020 | 6 | 1/60 Hz| Y | HD | UI | Treatment adjustment param ranges Data | mDuration_Min | mDuration_Max | mUltrafiltration_Volume_Min | mUltrafiltration_Volume_Max | mDialysate_Flow_Min | mDialysate_Flow_Max | * * \sa Data * @@ -61,12 +60,12 @@ QString infoText () const override { return QString("TreatmentRanges"); } struct Data { - quint32 mDuration_Min = 0; /*!< mDuration_Min value of type U32 extracted out */ - quint32 mDuration_Max = 0; /*!< mDuration_Max value of type U32 extracted out */ - float mUltrafiltration_Volume_Min = 0; /*!< mUltrafiltration_Volume_Min value of type float extracted out */ - float mUltrafiltration_Volume_Max = 0; /*!< mUltrafiltration_Volume_Max value of type float extracted out */ - quint32 mDialysate_Flow_Min = 0; /*!< mDialysate_Flow_Min value of type U32 extracted out */ - quint32 mDialysate_Flow_Max = 0; /*!< mDialysate_Flow_Max value of type U32 extracted out */ + quint32 mDuration_Min = 0; ///< mDuration_Min + quint32 mDuration_Max = 0; ///< mDuration_Max + float mUltrafiltration_Volume_Min = 0; ///< mUltrafiltration_Volume_Min + float mUltrafiltration_Volume_Max = 0; ///< mUltrafiltration_Volume_Max + quint32 mDialysate_Flow_Min = 0; ///< mDialysate_Flow_Min + quint32 mDialysate_Flow_Max = 0; ///< mDialysate_Flow_Max }; MTreatmentRanges () { }