lowering lowest RPM threshold
This commit is contained in:
parent
ace2cadd05
commit
1a356b8b68
|
@ -81,7 +81,7 @@ bool RpmCalculator::isRunning(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||||
* note that the result of this subtraction could be negative, that would happen if
|
* note that the result of this subtraction could be negative, that would happen if
|
||||||
* we have a trigger event between the time we've invoked 'getTimeNow' and here
|
* we have a trigger event between the time we've invoked 'getTimeNow' and here
|
||||||
*/
|
*/
|
||||||
bool result = nowNt - lastRpmEventTimeNt < US2NT(US_PER_SECOND_LL); // Anything below 60 rpm is not running
|
bool result = nowNt - lastRpmEventTimeNt < US2NT(2 * US_PER_SECOND_LL); // Anything below 60 rpm is not running
|
||||||
if (!result) {
|
if (!result) {
|
||||||
notRunnintNow = nowNt;
|
notRunnintNow = nowNt;
|
||||||
notRunningPrev = lastRpmEventTimeNt;
|
notRunningPrev = lastRpmEventTimeNt;
|
||||||
|
|
Loading…
Reference in New Issue