Tooth logger to use engineSnifferRpmThreshold #3161

use configurable limit
This commit is contained in:
rusefillc 2021-08-15 13:59:18 -04:00
parent c18ea4a439
commit f74e63fa34
2 changed files with 4 additions and 1 deletions

View File

@ -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
- Nissan 4 cylinder QR trigger wheel #3118
### Fixed
- Composite Logger uses same engineSnifferRpmThreshold setting as engine sniffer #3161
## Removed
- TS file read feature #3004

View File

@ -113,7 +113,7 @@ void LogTriggerTooth(trigger_event_e tooth, efitick_t timestamp DECLARE_ENGINE_P
}
// Don't log at significant engine speed
if (engine->rpmCalculator.getRpm() > 4000) {
if (engine->rpmCalculator.getRpm() > CONFIG(engineSnifferRpmThreshold)) {
return;
}