auto-sync
This commit is contained in:
parent
38c1d49730
commit
7f91da6e4e
|
@ -120,12 +120,13 @@ void setMazdaMiata2003EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||||
boardConfiguration->vvtCamSensorUseRise = true;
|
boardConfiguration->vvtCamSensorUseRise = true;
|
||||||
engineConfiguration->vvtOffset = -70;
|
engineConfiguration->vvtOffset = -70;
|
||||||
|
|
||||||
// engineConfiguration->auxPidPins[0] = GPIOE_3; // VVT solenoid control
|
engineConfiguration->activateAuxPid1 = true; // todo: remove this field?
|
||||||
|
engineConfiguration->auxPidPins[0] = GPIOE_3; // VVT solenoid control
|
||||||
// /**
|
// /**
|
||||||
// * set_fsio_setting 0 0.55
|
// * set_fsio_setting 0 0.55
|
||||||
// */
|
// */
|
||||||
boardConfiguration->fsio_setting[0] = 0.0;
|
boardConfiguration->fsio_setting[0] = 0.0;
|
||||||
setFsioExt(0, GPIOE_3, "0 fsio_setting", 400 PASS_ENGINE_PARAMETER);
|
// setFsioExt(0, GPIOE_3, "0 fsio_setting", 400 PASS_ENGINE_PARAMETER);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -199,6 +200,7 @@ void setMazdaMiata2003EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||||
engineConfiguration->injector.flow = 265;
|
engineConfiguration->injector.flow = 265;
|
||||||
|
|
||||||
boardConfiguration->malfunctionIndicatorPin = GPIOD_9;
|
boardConfiguration->malfunctionIndicatorPin = GPIOD_9;
|
||||||
|
// boardConfiguration->malfunctionIndicatorPinMode = OM_INVERTED;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -57,7 +57,10 @@ void setHardwareUsTimer(int32_t timeUs) {
|
||||||
if (timeUs < 2)
|
if (timeUs < 2)
|
||||||
timeUs = 2; // for some reason '1' does not really work
|
timeUs = 2; // for some reason '1' does not really work
|
||||||
efiAssertVoid(timeUs > 0, "not positive timeUs");
|
efiAssertVoid(timeUs > 0, "not positive timeUs");
|
||||||
efiAssertVoid(timeUs < 10 * US_PER_SECOND, "setHardwareUsTimer() too large");
|
if (timeUs >= 10 * US_PER_SECOND) {
|
||||||
|
firmwareError(OBD_PCM_Processor_Fault, "setHardwareUsTimer() too long: %d", timeUs);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (GPTDEVICE.state == GPT_ONESHOT)
|
if (GPTDEVICE.state == GPT_ONESHOT)
|
||||||
gptStopTimerI(&GPTDEVICE);
|
gptStopTimerI(&GPTDEVICE);
|
||||||
|
|
Loading…
Reference in New Issue