Index: firmware/App/Controllers/UVReactors.c =================================================================== diff -u -r72d5322b45c985773d9f6734ae27aa69b1c886fe -r81872acd6f2ce222c6b9a9b93f65b7cd3665f28f --- firmware/App/Controllers/UVReactors.c (.../UVReactors.c) (revision 72d5322b45c985773d9f6734ae27aa69b1c886fe) +++ firmware/App/Controllers/UVReactors.c (.../UVReactors.c) (revision 81872acd6f2ce222c6b9a9b93f65b7cd3665f28f) @@ -374,7 +374,7 @@ if ( TURN_ON == reactorsStatus[ reactor ].switchState ) { // Check if the flow is below minimum - reactorsStatus[ reactor ].isFlowBelowMin = ( getMeasuredROFlowRateLPM() < MIN_RO_FLOWRATE_LPM ? TRUE : FALSE ); + reactorsStatus[ reactor ].isFlowBelowMin = ( getMeasuredROFlowRateLPM() < MIN_RO_FLOWRATE_UV_LPM ? TRUE : FALSE ); // If the flow is no longer below minimum and the reactor is requested to be on, turn it back on if ( FALSE == reactorsStatus[ reactor ].isFlowBelowMin ) @@ -418,7 +418,7 @@ } // Check if the flow is below minimum - BOOL isFlowBelowMin = ( getMeasuredROFlowRateLPM() < MIN_RO_FLOWRATE_LPM ? TRUE : FALSE ); + BOOL isFlowBelowMin = ( getMeasuredROFlowRateLPM() < MIN_RO_FLOWRATE_UV_LPM ? TRUE : FALSE ); if ( TRUE == isFlowBelowMin ) {