Index: sources/model/td/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h =================================================================== diff -u -r8325066ffcce349e21df74e33bd3d298d3042ef3 -r9c2a4c5abe3a93c3b3a7ed3d6fd9e12f0c161b3c --- sources/model/td/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h (.../MTreatmentAdjustPressuresLimitsResponse.h) (revision 8325066ffcce349e21df74e33bd3d298d3042ef3) +++ sources/model/td/adjustment/treatment/MTreatmentAdjustPressuresLimitsResponse.h (.../MTreatmentAdjustPressuresLimitsResponse.h) (revision 9c2a4c5abe3a93c3b3a7ed3d6fd9e12f0c161b3c) @@ -32,12 +32,15 @@ * * | MSG | CAN ID | M.Box | Type | Ack | Src | Dest | Description | * |:----:|:------:|:-----:|:----:|:---:|:---:|:----:|:----------------------------:| - * |0x7200| 0x020 | 6 | Rsp | Y | TD | UI | A/V BP Limit Change Response | + * |0x7300| 0x020 | 6 | Rsp | Y | TD | UI | A/V BP Limit Change Response | * * | Payload || * | || - * | #1:(U32) | \ref Data::mAccepted | - * | #2:(U32) | \ref Data::mReason | + * | #1:(U32) | \ref Data::mAccepted | + * | #2:(U32) | \ref Data::mArterialPressureLimitWindowRejectionReason | + * | #3:(U32) | \ref Data::mVenousPressureLimitWindowRejectionReason | + * | #4:(U32) | \ref Data::mVenousPressureLimitAsymtrcRejectionReason | + * | #5:(U32) | \ref Data::mTmpPressureLimitWindowRejectionReason | * * \sa Data * \sa MAdjustPressureLimitsReq : Pressures limits adjustment request @@ -59,8 +62,11 @@ QVariantList parameters() const override; struct { - Types::U32 mAccepted ; - Types::U32 mReason ; + Types::U32 mAccepted ; + Types::U32 mArterialPressureLimitWindowRejectionReason ; + Types::U32 mVenousPressureLimitWindowRejectionReason ; + Types::U32 mVenousPressureLimitAsymtrcRejectionReason ; + Types::U32 mTmpPressureLimitWindowRejectionReason ; } _data; public: @@ -70,8 +76,11 @@ QString infoText () const override { return QString("AdjustPressuresLimits") ; } struct Data { - bool mAccepted = 0; /*!< Accepted value of type quint32 extracted out */ - quint32 mReason = 0; /*!< Reason value of type quint32 extracted out */ + bool mAccepted = 0; /*!< Accepted value of type quint32 extracted out */ + quint32 mArterialPressureLimitWindowRejectionReason = 0; /*!< Reason value of type quint32 extracted out */ + quint32 mVenousPressureLimitWindowRejectionReason = 0; /*!< Reason value of type quint32 extracted out */ + quint32 mVenousPressureLimitAsymtrcRejectionReason = 0; /*!< Reason value of type quint32 extracted out */ + quint32 mTmpPressureLimitWindowRejectionReason = 0; /*!< Reason value of type quint32 extracted out */ }; MAdjustPressuresLimitsResponse () { }