rusefi-1/unit_tests/tests/test_tacho.cpp

41 lines
1.4 KiB
C++
Raw Normal View History

#include "pch.h"
extern float getTachFreq(void);
extern float getTachDuty(void);
TEST(tachometer, testPulsePerRev) {
// This engine has a tach pin set - we need that
WITH_ENGINE_TEST_HELPER(FRANKENSO_MAZDA_MIATA_2003);
// We don't actually care about ign/inj at all, just tach
engineConfiguration->isInjectionEnabled = false;
engineConfiguration->isIgnitionEnabled = false;
// Configure tach pulse count
// 5 PPR, 25% duty
engineConfiguration->tachPulsePerRev = 4;
engineConfiguration->tachPulseDuractionMs = 0.5f;
engineConfiguration->tachPulseDurationAsDutyCycle = true;
// Set predictable trigger settings
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL;
engineConfiguration->trigger.customTotalToothCount = 8;
engineConfiguration->trigger.customSkippedToothCount = 0;
engineConfiguration->useOnlyRisingEdgeForTrigger = false;
engineConfiguration->ambiguousOperationMode = FOUR_STROKE_CAM_SENSOR;
eth.applyTriggerWaveform();
// get the engine running - 6 revolutions
eth.fireTriggerEvents(48);
// ensure engine speed
ASSERT_EQ(1500, GET_RPM()) << "RPM";
2021-07-03 07:37:03 -07:00
ASSERT_EQ(engine->triggerCentral.triggerState.getShaftSynchronized(), true);
// Poke the fast callback to update the tach
engine->periodicFastCallback(PASS_ENGINE_PARAMETER_SIGNATURE);
ASSERT_EQ(100, getTachFreq());
ASSERT_EQ(0.5, getTachDuty());
}