Index: firmware/App/Services/StateServices/FluidBolus.c =================================================================== diff -u -r9d80274d4f31715890d519f5f9fbe445c4614046 -r95c81a7d81fa3e6534bcf2e35e1d9b1eba26e372 --- firmware/App/Services/StateServices/FluidBolus.c (.../FluidBolus.c) (revision 9d80274d4f31715890d519f5f9fbe445c4614046) +++ firmware/App/Services/StateServices/FluidBolus.c (.../FluidBolus.c) (revision 95c81a7d81fa3e6534bcf2e35e1d9b1eba26e372) @@ -8,7 +8,7 @@ * @file FluidBolus.c * * @author (last) Praneeth Bunne -* @date (last) 02-Jul-2026 +* @date (last) 04-Aug-2026 * * @author (original) Praneeth Bunne * @date (original) 04-Jun-2026 @@ -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; } }