Nissan 4 cylinder QR trigger wheel #3118
This commit is contained in:
parent
a2d18fa0b7
commit
167f2dbba0
|
@ -29,6 +29,7 @@ All notable user-facing or behavior-altering changes will be documented in this
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
- RUSEFI MSD now contains bundle-specific URL #2848
|
- RUSEFI MSD now contains bundle-specific URL #2848
|
||||||
|
- Nissan 4 cylinder QR trigger wheel #3118
|
||||||
|
|
||||||
## Removed
|
## Removed
|
||||||
- TS file read feature #3004
|
- TS file read feature #3004
|
||||||
|
|
|
@ -145,6 +145,10 @@ void initializeNissanVQ35crank(TriggerWaveform *s) {
|
||||||
|
|
||||||
void initializeNissanQR25crank(TriggerWaveform *s) {
|
void initializeNissanQR25crank(TriggerWaveform *s) {
|
||||||
s->initialize(FOUR_STROKE_SYMMETRICAL_CRANK_SENSOR);
|
s->initialize(FOUR_STROKE_SYMMETRICAL_CRANK_SENSOR);
|
||||||
|
s->setTriggerSynchronizationGap(0.33);
|
||||||
|
s->setSecondTriggerSynchronizationGap(3);
|
||||||
|
|
||||||
|
s->tdcPosition = 675;
|
||||||
|
|
||||||
float currentAngle = 20;
|
float currentAngle = 20;
|
||||||
for (int i = 0;i < 16;i++) {
|
for (int i = 0;i < 16;i++) {
|
||||||
|
|
|
@ -553,6 +553,9 @@ void TriggerWaveform::initializeTriggerWaveform(operation_mode_e ambiguousOperat
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case TT_NISSAN_QR25:
|
case TT_NISSAN_QR25:
|
||||||
|
initializeNissanQR25crank(this);
|
||||||
|
break;
|
||||||
|
|
||||||
case TT_NISSAN_VQ30:
|
case TT_NISSAN_VQ30:
|
||||||
initializeNissanVQ30cam(this);
|
initializeNissanVQ30cam(this);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue