removing dead code - initialize() sets 'true' already
This commit is contained in:
parent
5170e3b16c
commit
1b1bd0065d
|
@ -30,8 +30,6 @@ void initializeMazdaMiataNaShape(TriggerWaveform *s) {
|
||||||
|
|
||||||
s->tdcPosition = 294;
|
s->tdcPosition = 294;
|
||||||
|
|
||||||
s->isSynchronizationNeeded = true;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* http://rusefi.com/forum/viewtopic.php?f=3&t=729&p=12983#p12983
|
* http://rusefi.com/forum/viewtopic.php?f=3&t=729&p=12983#p12983
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -51,7 +51,6 @@ void configureTriTach(TriggerWaveform * s) {
|
||||||
|
|
||||||
void configureFordST170(TriggerWaveform * s) {
|
void configureFordST170(TriggerWaveform * s) {
|
||||||
s->initialize(FOUR_STROKE_CAM_SENSOR);
|
s->initialize(FOUR_STROKE_CAM_SENSOR);
|
||||||
s->isSynchronizationNeeded = true;
|
|
||||||
int width = 10;
|
int width = 10;
|
||||||
|
|
||||||
int total = s->getCycleDuration() / 8;
|
int total = s->getCycleDuration() / 8;
|
||||||
|
|
|
@ -18,7 +18,6 @@ void initializeRoverK(TriggerWaveform *s) {
|
||||||
|
|
||||||
s->setTriggerSynchronizationGap(2.0);
|
s->setTriggerSynchronizationGap(2.0);
|
||||||
s->setThirdTriggerSynchronizationGap(2);
|
s->setThirdTriggerSynchronizationGap(2);
|
||||||
s->isSynchronizationNeeded = true;
|
|
||||||
|
|
||||||
float base = 0;
|
float base = 0;
|
||||||
|
|
||||||
|
|
|
@ -17,7 +17,6 @@ void initialize36_2_2_2(TriggerWaveform *s) {
|
||||||
float wide = 30 * 2;
|
float wide = 30 * 2;
|
||||||
float narrow = 10 * 2;
|
float narrow = 10 * 2;
|
||||||
|
|
||||||
s->isSynchronizationNeeded = true;
|
|
||||||
s->setTriggerSynchronizationGap(0.5);
|
s->setTriggerSynchronizationGap(0.5);
|
||||||
s->setSecondTriggerSynchronizationGap(1);
|
s->setSecondTriggerSynchronizationGap(1);
|
||||||
|
|
||||||
|
@ -118,8 +117,6 @@ static void initializeSubaru7_6(TriggerWaveform *s, bool withCrankWheel) {
|
||||||
s->setTriggerSynchronizationGap2(4.9, 9);
|
s->setTriggerSynchronizationGap2(4.9, 9);
|
||||||
s->setTriggerSynchronizationGap3(1, 0.6, 1.25);
|
s->setTriggerSynchronizationGap3(1, 0.6, 1.25);
|
||||||
|
|
||||||
s->isSynchronizationNeeded = true;
|
|
||||||
|
|
||||||
s->useOnlyPrimaryForSync = true;
|
s->useOnlyPrimaryForSync = true;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,9 +30,6 @@ void setSkodaFavorit(TriggerWaveform *s) {
|
||||||
void setVwConfiguration(TriggerWaveform *s) {
|
void setVwConfiguration(TriggerWaveform *s) {
|
||||||
s->initialize(FOUR_STROKE_CRANK_SENSOR);
|
s->initialize(FOUR_STROKE_CRANK_SENSOR);
|
||||||
|
|
||||||
s->isSynchronizationNeeded = true;
|
|
||||||
|
|
||||||
|
|
||||||
int totalTeethCount = 60;
|
int totalTeethCount = 60;
|
||||||
int skippedCount = 2;
|
int skippedCount = 2;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue