Index: firmware/App/Controllers/DrainPump.c =================================================================== diff -u -r5719569ba64d430be7d554d69a865e08a15a5d4c -rb4f8e2229eb0a08cdce5fdd2e0a14ca25d792946 --- firmware/App/Controllers/DrainPump.c (.../DrainPump.c) (revision 5719569ba64d430be7d554d69a865e08a15a5d4c) +++ firmware/App/Controllers/DrainPump.c (.../DrainPump.c) (revision b4f8e2229eb0a08cdce5fdd2e0a14ca25d792946) @@ -8,7 +8,7 @@ * @file DrainPump.c * * @author (last) Dara Navaei -* @date (last) 11-Jan-2023 +* @date (last) 06-Mar-2023 * * @author (original) Sean * @date (original) 08-Apr-2020 @@ -944,17 +944,13 @@ { BOOL status = FALSE; - // Check if the requested drain pump RPM is within range - if ( ( value >= MIN_DRAIN_PUMP_RPM ) && ( value <= MAX_DRAIN_PUMP_RPM ) ) + // Check if the user is logged in + if ( TRUE == isTestingActivated() ) { - // Check if the user is logged in - if ( TRUE == isTestingActivated() ) - { - drainPumpMeasuredRPM.ovData = value; - drainPumpMeasuredRPM.override = OVERRIDE_KEY; - drainPumpMeasuredRPM.ovInitData = drainPumpMeasuredRPM.data; - status = TRUE; - } + drainPumpMeasuredRPM.ovData = value; + drainPumpMeasuredRPM.override = OVERRIDE_KEY; + drainPumpMeasuredRPM.ovInitData = drainPumpMeasuredRPM.data; + status = TRUE; } return status;