mirror of https://github.com/FOME-Tech/fome-fw.git
auto-sync
This commit is contained in:
parent
ab0e676d6e
commit
14f68f024a
|
@ -453,7 +453,10 @@ void configureNeon1995TriggerShape(TriggerShape *s DECLARE_ENGINE_PARAMETER_S) {
|
|||
|
||||
void initJeep18_2_2_2(TriggerShape *s DECLARE_ENGINE_PARAMETER_S) {
|
||||
s->initialize(FOUR_STROKE_CAM_SENSOR, true);
|
||||
s->isSynchronizationNeeded = false;
|
||||
s->isSynchronizationNeeded = true;
|
||||
s->setTriggerSynchronizationGap(1);
|
||||
s->useOnlyPrimaryForSync = true;
|
||||
s->tdcPosition = 581;
|
||||
|
||||
float off = 212;
|
||||
|
||||
|
|
|
@ -397,12 +397,12 @@ void triggerInfo(void) {
|
|||
|
||||
TriggerShape *ts = &engine->triggerShape;
|
||||
|
||||
scheduleMsg(logger, "Template %s (%d) trigger %s (%d) useRiseEdge=%s onlyFront=%s gapBothDirections=%s useOnlyFirstChannel=%s",
|
||||
scheduleMsg(logger, "Template %s (%d) trigger %s (%d) useRiseEdge=%s onlyFront=%s gapBothDirections=%s useOnlyFirstChannel=%s tdcOffset=%d",
|
||||
getConfigurationName(engineConfiguration->engineType), engineConfiguration->engineType,
|
||||
getTrigger_type_e(engineConfiguration->trigger.type), engineConfiguration->trigger.type,
|
||||
boolToString(TRIGGER_SHAPE(useRiseEdge)), boolToString(engineConfiguration->useOnlyRisingEdgeForTrigger),
|
||||
boolToString(TRIGGER_SHAPE(gapBothDirections)),
|
||||
boolToString(engineConfiguration->trigger.useOnlyFirstChannel));
|
||||
boolToString(engineConfiguration->trigger.useOnlyFirstChannel), ENGINE(triggerShape.tdcPosition));
|
||||
|
||||
if (engineConfiguration->trigger.type == TT_TOOTHED_WHEEL) {
|
||||
scheduleMsg(logger, "total %d/skipped %d", engineConfiguration->trigger.customTotalToothCount,
|
||||
|
|
Loading…
Reference in New Issue