Index: firmware/App/Controllers/BalancingChamber.c =================================================================== diff -u -re197cedaa4eb13953c70bf490c81217fff5e21fc -r8e51a0b2c665b26f2a48430c10717762c427e583 --- firmware/App/Controllers/BalancingChamber.c (.../BalancingChamber.c) (revision e197cedaa4eb13953c70bf490c81217fff5e21fc) +++ firmware/App/Controllers/BalancingChamber.c (.../BalancingChamber.c) (revision 8e51a0b2c665b26f2a48430c10717762c427e583) @@ -801,7 +801,7 @@ // Check fresh and spent dialysate pressure back in range to indicate fill complete. if ( getTestConfigStatus( TEST_CONFIG_DD_DISABLE_BC_PRESSURE_ALARMS ) != TRUE ) { - if ( TRUE == isFreshDialysatePressureInRange && TRUE == isSpentDialysatePressureInRange ) + if ( ( TRUE == isFreshDialysatePressureInRange ) && ( TRUE == isSpentDialysatePressureInRange ) ) { if ( ++balChamberFillCompleteStablePressureCounter >= BAL_CHAMBER_FILL_COMPLETE_MS ) { Index: firmware/App/Modes/ModePreGenDialysate.c =================================================================== diff -u -r1da16242c18221f8d368b9b024bf3628a3ed782c -r8e51a0b2c665b26f2a48430c10717762c427e583 --- firmware/App/Modes/ModePreGenDialysate.c (.../ModePreGenDialysate.c) (revision 1da16242c18221f8d368b9b024bf3628a3ed782c) +++ firmware/App/Modes/ModePreGenDialysate.c (.../ModePreGenDialysate.c) (revision 8e51a0b2c665b26f2a48430c10717762c427e583) @@ -280,7 +280,7 @@ { state = DD_PRE_GEN_DIALYSATE_WAIT_FOR_GEND; } - // alarm if not completed within 1 minutes + // TODO: Alarm if it is not completed within 1.5 minutes } else {