parent
b69d846384
commit
51def75f8d
|
@ -9,4 +9,21 @@
|
|||
#include "trigger_ford.h"
|
||||
|
||||
void configureFordCoyote(TriggerWaveform *s) {
|
||||
s->initialize(FOUR_STROKE_CAM_SENSOR, SyncEdge::RiseOnly);
|
||||
|
||||
s->setTriggerSynchronizationGap(3);
|
||||
s->setSecondTriggerSynchronizationGap(0.5);
|
||||
|
||||
int narrowGap = 30;
|
||||
|
||||
s->addToothRiseFall(45);
|
||||
s->addToothRiseFall(90);
|
||||
|
||||
s->addToothRiseFall(180 - 30);
|
||||
s->addToothRiseFall(180);
|
||||
|
||||
s->addToothRiseFall(270 - 30);
|
||||
s->addToothRiseFall(270);
|
||||
|
||||
s->addToothRiseFall(360);
|
||||
}
|
||||
|
|
|
@ -632,8 +632,8 @@ void TriggerWaveform::initializeTriggerWaveform(operation_mode_e triggerOperatio
|
|||
initializeMitsubishi4gSymmetricalCrank(this);
|
||||
break;
|
||||
case TT_VVT_FORD_COYOTE:
|
||||
// todo configureFordCoyote(this);
|
||||
// break;
|
||||
configureFordCoyote(this);
|
||||
break;
|
||||
case TT_UNUSED_11:
|
||||
case TT_UNUSED_75:
|
||||
case TT_UNUSED_77:
|
||||
|
|
Loading…
Reference in New Issue