12 tooth crank issues fix #4943

This commit is contained in:
rusefillc 2023-01-09 15:48:49 -05:00
parent cba06a4335
commit 61ef70dac2
1 changed files with 8 additions and 3 deletions

View File

@ -159,9 +159,14 @@ void configure12ToothCrank(TriggerWaveform* s) {
s->shapeWithoutTdc = true;
// Sync after 3 good teeth
for (size_t i = 0; i < 3; i++) {
s->setTriggerSynchronizationGap3(i, 0.55f, 1.45f);
// Sync after 2 good teeth
for (size_t i = 0; i < 2; i++) {
/**
* https://github.com/rusefi/rusefi/issues/4943#issuecomment-1376289608
* gaps would be nice during running but horrible during running
* Hopefully we do not want variable gap logic yet?
*/
s->setTriggerSynchronizationGap3(i, 0.2f, 3.4f);
}
float width = 360 / 12;