auto-sync

This commit is contained in:
rusEfi 2016-06-14 02:01:37 -04:00
parent 1e205ac8b9
commit 318cc84987
3 changed files with 4 additions and 0 deletions

View File

@ -69,4 +69,5 @@ void configureMiniCooperTriggerShape(TriggerShape *s) {
* With just one tooth on camshaft synchronization is not needed * With just one tooth on camshaft synchronization is not needed
*/ */
s->isSynchronizationNeeded = false; s->isSynchronizationNeeded = false;
s->useOnlyPrimaryForSync = true;
} }

View File

@ -23,6 +23,7 @@ void initDodgeRam(TriggerShape *s DECLARE_ENGINE_PARAMETER_S) {
720); 720);
s->addEvent(720, T_PRIMARY, TV_FALL); s->addEvent(720, T_PRIMARY, TV_FALL);
s->useOnlyPrimaryForSync = true;
} }
void configureNeon2003TriggerShape(TriggerShape *s DECLARE_ENGINE_PARAMETER_S) { void configureNeon2003TriggerShape(TriggerShape *s DECLARE_ENGINE_PARAMETER_S) {
@ -371,5 +372,6 @@ void configureNeon1995TriggerShape(TriggerShape *s DECLARE_ENGINE_PARAMETER_S) {
s->addEvent(base + 497, T_SECONDARY, TV_FALL); s->addEvent(base + 497, T_SECONDARY, TV_FALL);
s->addEvent(base + 560, T_PRIMARY, TV_RISE); // width = s->addEvent(base + 560, T_PRIMARY, TV_RISE); // width =
s->useOnlyPrimaryForSync = true;
} }

View File

@ -51,4 +51,5 @@ void initializeMitsubishi4g18(TriggerShape *s) {
s->addEvent(720.0 - secondaryWidth, T_SECONDARY, TV_RISE); s->addEvent(720.0 - secondaryWidth, T_SECONDARY, TV_RISE);
s->addEvent(720.0, T_SECONDARY, TV_FALL); s->addEvent(720.0, T_SECONDARY, TV_FALL);
s->useOnlyPrimaryForSync = true;
} }