Index: firmware/App/Controllers/LoadCell.c =================================================================== diff -u -r5109bb981cab2025fcb9de33e303d046085efa18 -rb77808c306061c4ee874ddb6608a7da803d26ee4 --- firmware/App/Controllers/LoadCell.c (.../LoadCell.c) (revision 5109bb981cab2025fcb9de33e303d046085efa18) +++ firmware/App/Controllers/LoadCell.c (.../LoadCell.c) (revision b77808c306061c4ee874ddb6608a7da803d26ee4) @@ -359,7 +359,8 @@ { // For the first tare, the weight of the reservoir should be considered // The current weight of the load cell should not be greater than the weight of the reservoir + the extra weight - F32 deltaWeight = fabs( weight - EMPTY_RESERVOIR_WEIGHT_GRAMS ); + F32 deltaWeight = fabs( weight - EMPTY_RESERVOIR_WEIGHT_GRAMS ); + isWeightOutOfRange = ( deltaWeight > MAX_ALLOWED_EXTRA_WEIGHT_BEFORE_FIRST_TARE_GRAMS ? TRUE : FALSE ); } else