Index: firmware/App/Services/StateServices/FluidBolus.c =================================================================== diff -u -r8345f0415ce34f2f47afcbf613a00216769f51c6 -rb30f390acbd6c972d4ecea536b875a409a2c8e77 --- firmware/App/Services/StateServices/FluidBolus.c (.../FluidBolus.c) (revision 8345f0415ce34f2f47afcbf613a00216769f51c6) +++ firmware/App/Services/StateServices/FluidBolus.c (.../FluidBolus.c) (revision b30f390acbd6c972d4ecea536b875a409a2c8e77) @@ -337,7 +337,7 @@ * saline bag is empty. For substitution medium, aborts if dialysate is no * longer good to deliver. Completes the bolus when the target volume is * reached or an abort is requested. - * @details \b Alarms: ALARM_ID_TD_EMPTY_SALINE_BAG if saline bag is empty or + * @details \b Alarms: ALARM_ID_TD_SALINE_BAG_VOLUME_LOW_ALARM if saline bag is empty or * saline line is clamped. * @details \b Inputs: bolusFluidVolumeDelivered_mL, fluidBolusAbortRequested, * currentFluidBolusMedium @@ -356,7 +356,7 @@ // Check for empty saline bag per arterial line pressure if ( TRUE == isSalineBagEmpty() ) { - SET_ALARM_WITH_1_F32_DATA( ALARM_ID_TD_EMPTY_SALINE_BAG, getFilteredArterialPressure() ); + SET_ALARM_WITH_1_F32_DATA( ALARM_ID_TD_SALINE_BAG_VOLUME_LOW_ALARM, getFilteredArterialPressure() ); state = FLUID_BOLUS_IDLE_STATE; } }