CLT stops working when using 2-0 custom trigger wheel #1171

This commit is contained in:
rusefi 2020-03-06 01:31:04 -05:00
parent 0a7356cf39
commit a33d479683
2 changed files with 10 additions and 1 deletions

View File

@ -39,7 +39,7 @@ void initializeSkippedToothTriggerWaveformExt(TriggerWaveform *s, int totalTeeth
s->initialize(operationMode);
s->setTriggerSynchronizationGap(skippedCount + 1);
s->shapeWithoutTdc = (totalTeethCount > 2) && (skippedCount == 0);
s->shapeWithoutTdc = (totalTeethCount > 1) && (skippedCount == 0);
s->isSynchronizationNeeded = (totalTeethCount > 2) && (skippedCount != 0);

View File

@ -45,6 +45,15 @@ static int getTriggerZeroEventIndex(engine_type_e engineType) {
PASS_CONFIG_PARAMETER_SUFFIX);
}
TEST(misc, testSkipped2_0) {
WITH_ENGINE_TEST_HELPER(TEST_ENGINE);
// for this test we need a trigger with isSynchronizationNeeded=true
engineConfiguration->trigger.customTotalToothCount = 2;
engineConfiguration->trigger.customSkippedToothCount = 0;
eth.setTriggerType(TT_TOOTHED_WHEEL PASS_ENGINE_PARAMETER_SUFFIX);
ASSERT_EQ( 0, GET_RPM()) << "testNoStartUpWarnings RPM";
}
static void testDodgeNeonDecoder(void) {
printf("*************************************************** testDodgeNeonDecoder95\r\n");