Index: sources/model/hd/adjustment/MPreTreatmentAdjustRequests.h =================================================================== diff -u -re0412efcf85964a18ec52ad80f233c45998eb45a -r695e95aa2ec5e6e1c395567449ac0f671ecd61ed --- sources/model/hd/adjustment/MPreTreatmentAdjustRequests.h (.../MPreTreatmentAdjustRequests.h) (revision e0412efcf85964a18ec52ad80f233c45998eb45a) +++ sources/model/hd/adjustment/MPreTreatmentAdjustRequests.h (.../MPreTreatmentAdjustRequests.h) (revision 695e95aa2ec5e6e1c395567449ac0f671ecd61ed) @@ -343,55 +343,55 @@ }; /*! - * \brief The MAdjustPatientConnectionConfirmReq class - * \details The model to Confirm Disposables Installation + * \brief The MAdjustUltrafiltrationInitReq class + * \details The ultrafiltration volume change request model * - * | MSG | CAN ID | M.Box | Type | Ack | Src | Dest | Description | - * |:----:|:------:|:-----:|:----:|:---:|:---:|:----:|:----------------------------------:| - * |0x6600| 0x100 | 9 | Req | Y | UI | HD | Patient Connection Confirm Request | + * | MSG | CAN ID | Box | Type | Ack | Src | Dst | Description | + * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: | + * |0x4F00| 0x100 | 9 | Req | Y | UI | HD | UF Vol. Initial Adjustment Request | * * | Payload || * | || - * | None || + * | #1:(F32) | \ref volume | * */ -class MAdjustPatientConnectionConfirmReq : public MModel { +class MAdjustUltrafiltrationInitReq : public MModel { public: + float volume = 0; // coco begin validated : Has been validated manually. // This object is used statically for now, kept the logic for later usage. QString toString() { - return toString({}); + return toString({volume}); } // coco end static QString toString(const QVariantList &vParameters) { - return MModel::toString("PatientConnectionConfirm", vParameters); + return MModel::toString("AdjustUFInit", vParameters); } }; /*! - * \brief The MAdjustUltrafiltrationInitReq class - * \details The ultrafiltration volume change request model + * \brief The MAdjustPatientConnectionConfirmReq class + * \details The model to Confirm Disposables Installation * - * | MSG | CAN ID | Box | Type | Ack | Src | Dst | Description | - * |:----:|:------:|:---:|:------:|:---:|:---:|:---:|:-----------: | - * |0x4F00| 0x100 | 9 | Req | Y | UI | HD | UF Vol. Initial Adjustment Request | + * | MSG | CAN ID | M.Box | Type | Ack | Src | Dest | Description | + * |:----:|:------:|:-----:|:----:|:---:|:---:|:----:|:----------------------------------:| + * |0x6600| 0x100 | 9 | Req | Y | UI | HD | Patient Connection Confirm Request | * * | Payload || * | || - * | #1:(F32) | \ref volume | + * | None || * */ -class MAdjustUltrafiltrationInitReq : public MModel { +class MAdjustPatientConnectionConfirmReq : public MModel { public: - float volume = 0; // coco begin validated : Has been validated manually. // This object is used statically for now, kept the logic for later usage. QString toString() { - return toString({volume}); + return toString({}); } // coco end static QString toString(const QVariantList &vParameters) { - return MModel::toString("AdjustUFInit", vParameters); + return MModel::toString("PatientConnectionConfirm", vParameters); } }; @@ -432,6 +432,6 @@ typedef Model:: MAdjustDisposablesConfirmReq AdjustDisposablesConfirmRequestData; typedef Model:: MAdjustDisposablesPrimeReq AdjustDisposablesPrimeRequestData; typedef Model:: MAdjustPatientConnectionBeginReq AdjustPatientConnectionBeginRequestData; -typedef Model:: MAdjustPatientConnectionConfirmReq AdjustPatientConnectionConfirmRequestData; typedef Model:: MAdjustUltrafiltrationInitReq AdjustUltrafiltrationInitRequestData; +typedef Model:: MAdjustPatientConnectionConfirmReq AdjustPatientConnectionConfirmRequestData; typedef Model:: MAdjustStartTreatmentReq AdjustStartTreatmentRequestData;