Tooth logger to use engineSnifferRpmThreshold #3161
use configurable limit
This commit is contained in:
parent
c18ea4a439
commit
f74e63fa34
|
@ -31,6 +31,9 @@ All notable user-facing or behavior-altering changes will be documented in this
|
||||||
- RUSEFI MSD now contains bundle-specific URL #2848
|
- RUSEFI MSD now contains bundle-specific URL #2848
|
||||||
- Nissan 4 cylinder QR trigger wheel #3118
|
- Nissan 4 cylinder QR trigger wheel #3118
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Composite Logger uses same engineSnifferRpmThreshold setting as engine sniffer #3161
|
||||||
|
|
||||||
## Removed
|
## Removed
|
||||||
- TS file read feature #3004
|
- TS file read feature #3004
|
||||||
|
|
||||||
|
|
|
@ -113,7 +113,7 @@ void LogTriggerTooth(trigger_event_e tooth, efitick_t timestamp DECLARE_ENGINE_P
|
||||||
}
|
}
|
||||||
|
|
||||||
// Don't log at significant engine speed
|
// Don't log at significant engine speed
|
||||||
if (engine->rpmCalculator.getRpm() > 4000) {
|
if (engine->rpmCalculator.getRpm() > CONFIG(engineSnifferRpmThreshold)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue