Index: firmware/App/Controllers/LoadCell.c =================================================================== diff -u -r34ae229d1508df89630f4dc5fbe9291d135f0686 -r702f24539279765e906d1c2764253e65ef2638a1 --- firmware/App/Controllers/LoadCell.c (.../LoadCell.c) (revision 34ae229d1508df89630f4dc5fbe9291d135f0686) +++ firmware/App/Controllers/LoadCell.c (.../LoadCell.c) (revision 702f24539279765e906d1c2764253e65ef2638a1) @@ -228,7 +228,7 @@ // Since there is a single alarm value for all 4 load cells the persistence check must be // executed if ANY of the load cell values are out of range. Only when all of the load // cells are in range should the persistence for the alarm be cleared. - weight = getLoadCellWeight( ( LOAD_CELL_ID_T) sensorId ); + weight = getLoadCellWeight( ( LOAD_CELL_ID_T) sensorId ); if ( ( weight < LOAD_CELL_MIN_ALLOWED_WEIGHT_GRAMS ) || ( weight > LOAD_CELL_MAX_ALLOWED_WEIGHT_GRAMS ) ) { isLoadCellOutOfRange = TRUE; @@ -371,7 +371,7 @@ { // Add old auto calibration offset to get back to actual weight value loadcells[ loadCellID ].autoCalOffset = ( loadcells[ loadCellID ].smallFilteredWeight.data + loadcells[ loadCellID ].autoCalOffset ); - hasLoadCellBeenTared[ loadCellID ] = TRUE; + hasLoadCellBeenTared[ loadCellID ] = TRUE; } else {