fractional tach pulse fix #7547

This commit is contained in:
Matthew Kennedy 2025-03-03 13:15:47 -05:00 committed by rusefillc
parent f3092dd30e
commit 038ba8a9d1
2 changed files with 8 additions and 7 deletions

View File

@ -32,6 +32,7 @@ Release template (copy/paste this for new release):
- SD card mode selection: do not wait for USB if vbatt voltage #7424
- SD card mass storage read access performance improvements
- migrate injector lag is now a table #7522
- Allow fractional tachometer pulse ratio for fine tachometer calibration
## February 2025 "Day 1075"

View File

@ -12,9 +12,9 @@
#include "tachometer.h"
static SimplePwm tachControl("tach");
static float tachFreq;
static float duty;
static SimplePwm tachControl("tach");
static float tachFreq;
static float duty;
#if EFI_UNIT_TEST
float getTachFreq() {
@ -35,10 +35,10 @@ void tachUpdate() {
}
// How many tach pulse periods do we have?
int periods = engineConfiguration->tachPulsePerRev;
float periods = engineConfiguration->tachPulsePerRev;
if (periods == 0 || periods > 10) {
firmwareError(ObdCode::CUSTOM_ERR_6709, "Invalid tachometer pulse per rev: %d", periods);
firmwareError(ObdCode::CUSTOM_ERR_6709, "Invalid tachometer pulse per rev: %.2f", periods);
return;
}
@ -46,7 +46,7 @@ void tachUpdate() {
float cycleTimeMs = 60000.0f / Sensor::getOrZero(SensorType::Rpm);
float periodTimeMs = cycleTimeMs / periods;
tachFreq = 1000.0f / periodTimeMs;
if (engineConfiguration->tachPulseDurationAsDutyCycle) {
// Simple case - duty explicitly set
duty = engineConfiguration->tachPulseDuractionMs;
@ -59,7 +59,7 @@ void tachUpdate() {
if (tachFreq < 1) {
tachFreq = NAN;
}
tachControl.setSimplePwmDutyCycle(duty);
tachControl.setFrequency(tachFreq);
}