Extra gap ratios for custom trigger wheels fix #4375
these lines are now part of shared method
This commit is contained in:
parent
f7303a740a
commit
0424dd6f0e
|
@ -644,14 +644,14 @@ void TriggerWaveform::initializeTriggerWaveform(operation_mode_e triggerOperatio
|
||||||
|
|
||||||
case TT_TOOTHED_WHEEL_32_2:
|
case TT_TOOTHED_WHEEL_32_2:
|
||||||
setToothedWheelConfiguration(this, 32, 2, triggerOperationMode);
|
setToothedWheelConfiguration(this, 32, 2, triggerOperationMode);
|
||||||
// todo: add this second/third into 'setToothedWheelConfiguration' as long as we have enough tooth?
|
// todo: why is this 32/2 asking for third gap while 60/2 is happy with just two gaps?
|
||||||
setSecondTriggerSynchronizationGap(1); // this gap is not required to synch on perfect signal but is needed to handle to reject cranking transition noise
|
// method above sets second gap, here we add third
|
||||||
|
// this third gap is not required to sync on perfect signal but is needed to handle to reject cranking transition noise
|
||||||
setThirdTriggerSynchronizationGap(1);
|
setThirdTriggerSynchronizationGap(1);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TT_TOOTHED_WHEEL_60_2:
|
case TT_TOOTHED_WHEEL_60_2:
|
||||||
setToothedWheelConfiguration(this, 60, 2, triggerOperationMode);
|
setToothedWheelConfiguration(this, 60, 2, triggerOperationMode);
|
||||||
setSecondTriggerSynchronizationGap(1); // this gap is not required to synch on perfect signal but is needed to handle to reject cranking transition noise
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TT_TOOTHED_WHEEL_36_2:
|
case TT_TOOTHED_WHEEL_36_2:
|
||||||
|
|
Loading…
Reference in New Issue