fome-fw/firmware/controllers/trigger/decoders/trigger_vw.cpp

48 lines
1.4 KiB
C++
Raw Normal View History

2018-08-25 17:05:17 -07:00
/*
* @file trigger_vw.cpp
*
* @date Aug 25, 2018
2020-01-13 18:57:43 -08:00
* @author Andrey Belomutskiy, (c) 2012-2020
2018-08-25 17:05:17 -07:00
*/
#include "pch.h"
2018-08-25 17:05:17 -07:00
#include "trigger_vw.h"
#include "trigger_universal.h"
void setSkodaFavorit(TriggerWaveform *s) {
s->initialize(FOUR_STROKE_CRANK_SENSOR);
2021-07-16 21:53:23 -07:00
s->addEvent360(46, T_PRIMARY, TV_RISE);
s->addEvent360(177, T_PRIMARY, TV_FALL);
2021-07-16 21:53:23 -07:00
s->addEvent360(180, T_PRIMARY, TV_RISE);
s->addEvent360(183, T_PRIMARY, TV_FALL);
2021-07-16 21:53:23 -07:00
s->addEvent360(226, T_PRIMARY, TV_RISE);
s->addEvent360(360, T_PRIMARY, TV_FALL);
s->tdcPosition = 180 - 46;
s->setTriggerSynchronizationGap(3.91);
}
void setVwConfiguration(TriggerWaveform *s) {
s->initialize(FOUR_STROKE_CRANK_SENSOR);
2018-08-25 17:05:17 -07:00
int totalTeethCount = 60;
int skippedCount = 2;
2019-01-01 11:05:11 -08:00
float engineCycle = FOUR_STROKE_ENGINE_CYCLE;
2018-08-25 17:05:17 -07:00
float toothWidth = 0.5;
addSkippedToothTriggerEvents(T_PRIMARY, s, 60, 2, toothWidth, 0, engineCycle,
2018-12-25 16:42:27 -08:00
NO_LEFT_FILTER, 690);
2018-08-25 17:05:17 -07:00
float angleDown = engineCycle / totalTeethCount * (totalTeethCount - skippedCount - 1 + (1 - toothWidth) );
2019-05-02 15:05:33 -07:00
s->addEventClamped(0 + angleDown + 12, T_PRIMARY, TV_RISE, NO_LEFT_FILTER, NO_RIGHT_FILTER);
s->addEventClamped(0 + engineCycle, T_PRIMARY, TV_FALL, NO_LEFT_FILTER, NO_RIGHT_FILTER);
2018-08-25 17:05:17 -07:00
s->setTriggerSynchronizationGap2(1.6, 4);
2021-06-27 09:31:03 -07:00
s->setSecondTriggerSynchronizationGap(1); // this gap is not required to synch on perfect signal but is needed to handle to reject cranking transition noise
s->setThirdTriggerSynchronizationGap(1);
2018-08-25 17:05:17 -07:00
}