2021-08-03 19:05:01 -07:00
|
|
|
#include "pch.h"
|
2020-04-02 12:20:04 -07:00
|
|
|
|
|
|
|
extern float getTachFreq(void);
|
|
|
|
extern float getTachDuty(void);
|
|
|
|
|
|
|
|
TEST(tachometer, testPulsePerRev) {
|
|
|
|
// This engine has a tach pin set - we need that
|
2021-11-16 13:52:11 -08:00
|
|
|
EngineTestHelper eth(FRANKENSO_MAZDA_MIATA_2003);
|
2020-04-02 12:20:04 -07:00
|
|
|
|
|
|
|
// 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
|
2020-12-24 18:20:24 -08:00
|
|
|
engineConfiguration->trigger.type = TT_TOOTHED_WHEEL;
|
2020-04-02 12:20:04 -07:00
|
|
|
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);
|
|
|
|
|
2020-12-24 18:20:24 -08:00
|
|
|
// ensure engine speed
|
2020-04-02 12:20:04 -07:00
|
|
|
ASSERT_EQ(1500, GET_RPM()) << "RPM";
|
2021-07-03 07:37:03 -07:00
|
|
|
ASSERT_EQ(engine->triggerCentral.triggerState.getShaftSynchronized(), true);
|
2020-12-24 18:20:24 -08:00
|
|
|
|
|
|
|
// Poke the fast callback to update the tach
|
2021-11-16 01:15:29 -08:00
|
|
|
engine->periodicFastCallback();
|
2020-12-24 18:20:24 -08:00
|
|
|
|
|
|
|
ASSERT_EQ(100, getTachFreq());
|
|
|
|
ASSERT_EQ(0.5, getTachDuty());
|
2020-04-02 12:20:04 -07:00
|
|
|
}
|