Index: firmware/App/Modes/ModePostTreat.c =================================================================== diff -u -r4791365c0d8aa1cb8717b001ed9cf3fd0a9433d7 -r92c04526739f32e904fe258bd622aa08734ce343 --- firmware/App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 4791365c0d8aa1cb8717b001ed9cf3fd0a9433d7) +++ firmware/App/Modes/ModePostTreat.c (.../ModePostTreat.c) (revision 92c04526739f32e904fe258bd622aa08734ce343) @@ -328,8 +328,14 @@ *************************************************************************/ static HD_POST_TREATMENT_STATE_T handlePostTreatmentVerifyState( void ) { +#ifndef SKIP_EMPTY_RES_CHECK BOOL const isReservoirOneEmpty = fabs( getReservoirWeightLargeFilter( DG_RESERVOIR_1 ) ) <= LOAD_CELL_VOLUME_NOISE_TOLERANCE_GRAMS; BOOL const isReservoirTwoEmpty = fabs( getReservoirWeightLargeFilter( DG_RESERVOIR_2 ) ) <= LOAD_CELL_VOLUME_NOISE_TOLERANCE_GRAMS; +#else + BOOL const isReservoirOneEmpty = TRUE; + BOOL const isReservoirTwoEmpty = TRUE; +#endif + #ifndef SKIP_CARTRIDGE_REMOVAL BOOL isCartridgeRemoved = isCartridgeUnloaded(); #else