Index: sources/model/hd/data/MTreatmentPressureOcclusionData.h =================================================================== diff -u -rbb74da05f81b82dad3ec844c1feb1135b949f1c2 -rd8027c74c31ed6c4212d3fbb9a1523eedb7d685d --- sources/model/hd/data/MTreatmentPressureOcclusionData.h (.../MTreatmentPressureOcclusionData.h) (revision bb74da05f81b82dad3ec844c1feb1135b949f1c2) +++ sources/model/hd/data/MTreatmentPressureOcclusionData.h (.../MTreatmentPressureOcclusionData.h) (revision d8027c74c31ed6c4212d3fbb9a1523eedb7d685d) @@ -26,12 +26,12 @@ namespace Model { /*! - * \brief The MPressureOcclusion class - * \details The pressure/occlusion data model + * \brief The MPressureOcclusionData class + * \details The pressureocclusion 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) | #5:(F32) | + * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: |:--: |:--: |:--: |:--: |:--: | + * |0x0900| 0x040 | 7 | 1 Hz | N | HD | All | PressureOcclusion Data | mArterialPressure | mVenousPressure | mBloodPumpOcclusion | mDialysateInletPumpOcclusion | mDialysateOutletPumpOcclusion | * * \sa Data * @@ -58,11 +58,11 @@ QString infoText () const override { return QString("Pressure/Occlusion"); } struct Data { - float mArterialPressure = 0; /*!< ArterialPressure value of type float extracted out */ - float mVenousPressure = 0; /*!< VenousPressure value of type float extracted out */ - float mBloodPumpOcclusion = 0; /*!< BloodPumpOcclusion value of type float extracted out */ - float mDialysateInletPumpOcclusion = 0; /*!< DialysateInletPumpOcclusion value of type float extracted out */ - float mDialysateOutletPumpOcclusion = 0; /*!< DialysateOutletPumpOcclusion value of type float extracted out */ + float mArterialPressure = 0; ///< ArterialPressure + float mVenousPressure = 0; ///< VenousPressure + float mBloodPumpOcclusion = 0; ///< BloodPumpOcclusion + float mDialysateInletPumpOcclusion = 0; ///< DialysateInletPumpOcclusion + float mDialysateOutletPumpOcclusion = 0; ///< DialysateOutletPumpOcclusion }; MPressureOcclusion () { }