Index: firmware/App/Controllers/BloodFlow.h =================================================================== diff -u -r20d0c02f453b6dae1884fb1b5ba542053852ffc1 -r3e6a9b6c56cb9c18ad364133c8acfb3016ae4234 --- firmware/App/Controllers/BloodFlow.h (.../BloodFlow.h) (revision 20d0c02f453b6dae1884fb1b5ba542053852ffc1) +++ firmware/App/Controllers/BloodFlow.h (.../BloodFlow.h) (revision 3e6a9b6c56cb9c18ad364133c8acfb3016ae4234) @@ -33,7 +33,7 @@ #define MAX_SET_BLOOD_FLOW_RATE 500 ///< Maximum blood flow rate (in mL/min). #define MIN_SET_BLOOD_FLOW_RATE 100 ///< Minimum blood flow rate (in mL/min). -#define SALINE_BOLUS_FLOW_RATE 150 ///< Saline bolus flow rate (in mL/min). +#define SALINE_BOLUS_FLOW_RATE 250 ///< Saline bolus flow rate (in mL/min). #define VOLUME_PER_BP_MOTOR_REV_ML 0.216F ///< Theoretical volume (mL) of blood/saline volume per motor revolution. #define BP_HALL_EDGE_COUNTS_PER_REV 48 ///< Number of hall sensor edge counts per motor revolution. Index: firmware/App/Modes/TreatmentEnd.c =================================================================== diff -u -r736cc5b56cc9c784ab1d8fc8687a73d190c35759 -r3e6a9b6c56cb9c18ad364133c8acfb3016ae4234 --- firmware/App/Modes/TreatmentEnd.c (.../TreatmentEnd.c) (revision 736cc5b56cc9c784ab1d8fc8687a73d190c35759) +++ firmware/App/Modes/TreatmentEnd.c (.../TreatmentEnd.c) (revision 3e6a9b6c56cb9c18ad364133c8acfb3016ae4234) @@ -149,7 +149,7 @@ setValvePosition( VBA, VALVE_POSITION_B_OPEN ); setValvePosition( VBV, VALVE_POSITION_B_OPEN ); // Start blood pump at Tx End slow flow rate - setBloodPumpTargetFlowRate( TX_END_BP_FLOW_RATE_ML_MIN, MOTOR_DIR_FORWARD, PUMP_CONTROL_MODE_CLOSED_LOOP ); + setBloodPumpTargetFlowRate( getTreatmentParameterU32( TREATMENT_PARAM_BLOOD_FLOW ), MOTOR_DIR_FORWARD, PUMP_CONTROL_MODE_CLOSED_LOOP ); bloodSittingTimerCtr = 0; // Continue air trap leveling control startAirTrapControl();