Index: firmware/App/Modes/ModeTreatment.c =================================================================== diff -u -rbd0ae373570f7f224bb9a6a4e86f805be77de192 -r8e08352e9e7d8749d8f093c6bc57e6dbc32605d5 --- firmware/App/Modes/ModeTreatment.c (.../ModeTreatment.c) (revision bd0ae373570f7f224bb9a6a4e86f805be77de192) +++ firmware/App/Modes/ModeTreatment.c (.../ModeTreatment.c) (revision 8e08352e9e7d8749d8f093c6bc57e6dbc32605d5) @@ -803,6 +803,7 @@ ( uFVolume <= MAX_UF_VOLUME_ML ) ) { result = TRUE; + sendTreatmentLogEventData( TREATMENT_DURATION_CHANGE_EVENT, ( presTreatmentTimeSecs / SEC_PER_MIN ), treatmentTime ); presMaxUFVolumeML = uFVolume; presTreatmentTimeSecs = treatmentTime * SEC_PER_MIN; setDialysisParams( presBloodFlowRate, presDialysateFlowRate, presMaxUFVolumeML, presUFRate ); @@ -1048,6 +1049,8 @@ ( dialVolume <= MAX_DIALYSATE_VOLUME_ML ) ) { result = TRUE; + sendTreatmentLogEventData( BLOOD_FLOW_RATE_CHANGE_EVENT, presBloodFlowRate, bloodRate ); + sendTreatmentLogEventData( DIALYSATE_FLOW_RATE_CHANGE_EVENT, presDialysateFlowRate, dialRate ); // Set to new rates presBloodFlowRate = bloodRate; presDialysateFlowRate = dialRate;