Index: firmware/App/Controllers/BloodFlow.c =================================================================== diff -u -rea24d974f95d6d304746120d61774c196d0fc589 -r2c85a6499b030fa3021cd5d8567af9dbc01bf552 --- firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision ea24d974f95d6d304746120d61774c196d0fc589) +++ firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 2c85a6499b030fa3021cd5d8567af9dbc01bf552) @@ -84,7 +84,6 @@ static const U32 BP_MAX_ROTOR_SPEED_ERROR_PERSIST = ((1 * MS_PER_SECOND) / TASK_PRIORITY_INTERVAL); #define BP_MAX_CURR_WHEN_STOPPED_MA 150.0 ///< Motor controller current should not exceed this when pump should be stopped -#define BP_MIN_CURR_WHEN_RUNNING_MA 150.0 ///< Motor controller current should always exceed this when pump should be running #define BP_MAX_CURR_WHEN_RUNNING_MA 2000.0 ///< Motor controller current should not exceed this when pump should be running #define BP_MAX_CURR_ERROR_DURATION_MS 2000 ///< Motor controller current errors persisting beyond this duration will trigger an alarm @@ -1217,7 +1216,7 @@ else { bpCurr = fabs( getMeasuredBloodPumpMCCurrent() ); - if ( ( bpCurr < BP_MIN_CURR_WHEN_RUNNING_MA ) || ( bpCurr > BP_MAX_CURR_WHEN_RUNNING_MA ) ) + if ( bpCurr > BP_MAX_CURR_WHEN_RUNNING_MA ) { bpCurrErrorDurationCtr += TASK_PRIORITY_INTERVAL; if ( bpCurrErrorDurationCtr > BP_MAX_CURR_ERROR_DURATION_MS )