auto-sync

This commit is contained in:
rusEfi 2016-06-12 10:01:41 -04:00
parent 15212e40bd
commit f8f5ce4a08
3 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,8 @@ void setToyota_jzs147EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
engineConfiguration->crankingInjectionMode = IM_BATCH;
engineConfiguration->injectionMode = IM_BATCH;
engineConfiguration->twoWireBatchInjection = true;
boardConfiguration->triggerInputPins[0] = GPIOA_5;
boardConfiguration->triggerInputPins[1] = GPIOC_6;
boardConfiguration->ignitionPins[0] = GPIOE_14;

View File

@ -25,6 +25,7 @@ void configureFordAspireTriggerShape(TriggerShape * s) {
s->addEvent(x + 360 + y, T_SECONDARY, TV_RISE);
s->addEvent(x + 540, T_SECONDARY, TV_FALL);
s->addEvent(720, T_PRIMARY, TV_FALL);
s->useOnlyPrimaryForSync = true;
}
void initializeMitsubishi4g18(TriggerShape *s) {

View File

@ -43,4 +43,5 @@ void initialize36_2_2_2(TriggerShape *s) {
s->addEvent(720 - wide / 2, T_PRIMARY, TV_RISE);
s->addEvent(720, T_PRIMARY, TV_FALL);
s->useOnlyPrimaryForSync = true;
}