CLT stops working when using 2-0 custom trigger wheel #1171
This commit is contained in:
parent
0a7356cf39
commit
a33d479683
|
@ -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);
|
||||
|
||||
|
||||
|
|
|
@ -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");
|
||||
|
||||
|
|
Loading…
Reference in New Issue