Index: firmware/App/Controllers/ConductivitySensors.c =================================================================== diff -u -r2a791a59f7336f63b07e310446435af0b16969a5 -r25f84aa570157389ad37374580a872f0b620a5a3 --- firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 2a791a59f7336f63b07e310446435af0b16969a5) +++ firmware/App/Controllers/ConductivitySensors.c (.../ConductivitySensors.c) (revision 25f84aa570157389ad37374580a872f0b620a5a3) @@ -400,7 +400,7 @@ F32 conductivity = ( (F32)( fgpaRead ) / COND_SENSOR_DECIMAL_CONVERSION ); F32 compensatedCond = calcCompensatedConductivity( conductivity, temperature ); - printf("%s- temp: %f, conductivity: %f, compCond: %f\n", __func__, temperature, conductivity, compensatedCond); +// printf("%s- temp: %f, conductivity: %f, compCond: %f\n", __func__, temperature, conductivity, compensatedCond); readCount[ sensorId ] = fpgaReadCount; internalErrorCount[ sensorId ] = 0; Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r2a791a59f7336f63b07e310446435af0b16969a5 -r25f84aa570157389ad37374580a872f0b620a5a3 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 2a791a59f7336f63b07e310446435af0b16969a5) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 25f84aa570157389ad37374580a872f0b620a5a3) @@ -408,7 +408,7 @@ BOOL isFlowOutOfUpperRange = ( isFlowOutOfRange && ( currentFlow > targetFlow ) ? TRUE : FALSE ); BOOL isFlowOutOfLowerRange = ( isFlowOutOfRange && ( currentFlow < targetFlow ) ? TRUE : FALSE ); -;; printf("%s- isFlowOutOfUpperRange: %d, %f, %f\n", __func__, isFlowOutOfUpperRange, currentFlow, targetFlow); // wjb +// printf("%s- isFlowOutOfUpperRange: %d, %f, %f\n", __func__, isFlowOutOfUpperRange, currentFlow, targetFlow); // wjb checkPersistentAlarm( ALARM_ID_FLOW_RATE_OUT_OF_UPPER_RANGE, isFlowOutOfUpperRange, currentFlow, targetFlow ); checkPersistentAlarm( ALARM_ID_FLOW_RATE_OUT_OF_LOWER_RANGE, isFlowOutOfLowerRange, currentFlow, targetFlow );