Index: firmware/App/Monitors/Conductivity.c =================================================================== diff -u -r84b30e2da7c4374d06ef068d3cb2b5c0c4fabccd -rf4a7ca238b4d8fa7ee756ec4dc813c3d0ffa7f84 --- firmware/App/Monitors/Conductivity.c (.../Conductivity.c) (revision 84b30e2da7c4374d06ef068d3cb2b5c0c4fabccd) +++ firmware/App/Monitors/Conductivity.c (.../Conductivity.c) (revision f4a7ca238b4d8fa7ee756ec4dc813c3d0ffa7f84) @@ -7,8 +7,8 @@ * * @file Conductivity.c * -* @author (last) Sameer Kalliadan Poyil -* @date (last) 16-Apr-2026 +* @author (last) Vinayakam Mani +* @date (last) 28-May-2026 * * @author (original) Vinayakam Mani * @date (original) 13-Sep-2024 @@ -277,6 +277,7 @@ // Apply sample to filter if we know it's fresh, v2/v3 only. V1's will always update filter regardless of freshness. if ( TRUE == freshData ) { + freshData = FALSE; // TODO - calibrate if ( filteredConductivityReadings[ sensor ].conductivityReadingsCount >= SIZE_OF_COND_ROLLING_AVG ) { @@ -364,6 +365,7 @@ // Apply sample to filter if we know it's fresh, v2/v3 only. V1's will always update filter regardless of freshness. if ( TRUE == freshData ) { + freshData = FALSE; // TODO - calibrate if ( filteredConductivityTemperatureReadings[sensor].conductivityTempReadingsCount >= SIZE_OF_COND_TEMP_ROLLING_AVG ) {