Index: firmware/App/Services/TxParams.h =================================================================== diff -u -re23b34695d4b67bbce65248f97fc346d3acb7aa6 -rf75b9170fa213d0a9cc5fd1bff660e21800be080 --- firmware/App/Services/TxParams.h (.../TxParams.h) (revision e23b34695d4b67bbce65248f97fc346d3acb7aa6) +++ firmware/App/Services/TxParams.h (.../TxParams.h) (revision f75b9170fa213d0a9cc5fd1bff660e21800be080) @@ -98,8 +98,8 @@ BOOL accepted; ///< Accepted/Rejected U32 rejectionReason; ///< Rejection reason if not accepted. U32 duration; ///< Treatment duration in minutes. - F32 ufVolumeGoal; ///< UF volume goal in mL. - F32 ufRate; ///< UF rate in mL/min. + F32 ufVolumeGoal; ///< UF volume goal in L. + F32 ufRate; ///< UF rate in L/hr. } DURATION_VALIDATE_RESPONSE_PAYLOAD_T; /// Payload record structure for bolus volume change request. @@ -138,23 +138,23 @@ /// Payload record structure for UF volume validate request. typedef struct { - F32 ufVolume; ///< Requested UF volume in mL. + F32 ufVolume; ///< Requested UF volume in L. } UF_VOLUME_VALIDATE_REQUEST_PAYLOAD_T; /// Payload record structure for UF volume confirm request. typedef struct { - F32 ufVolume; ///< Confirmed UF volume in mL. + F32 ufVolume; ///< Confirmed UF volume in L. } UF_VOLUME_CONFIRM_REQUEST_PAYLOAD_T; /// Payload record structure for UF change response. typedef struct { BOOL accepted; ///< Accepted/Rejected U32 rejectionReason; ///< Rejection reason if not accepted. - F32 ufVolumeGoal; ///< UF Volume in mL. + F32 ufVolumeGoal; ///< UF Volume in L. U32 duration; ///< new Treatment duration in minutes. - F32 ufRate; ///< new UF rate in mL/min. + F32 ufRate; ///< new UF rate in L/hr. } UF_VOLUME_RESPONSE_PAYLOAD_T; /// Payload record structure for blood / dialysate rate change response.