auto-sync
This commit is contained in:
parent
89eb92c366
commit
249c847642
|
@ -164,10 +164,6 @@ static ALWAYS_INLINE void handleFuelInjectionEvent(int injEventIndex, InjectionE
|
||||||
scheduleMsg(logger, "handleFuel engineCycleDuration=%f", engineCycleDuration);
|
scheduleMsg(logger, "handleFuel engineCycleDuration=%f", engineCycleDuration);
|
||||||
#endif /* FUEL_MATH_EXTREME_LOGGING */
|
#endif /* FUEL_MATH_EXTREME_LOGGING */
|
||||||
|
|
||||||
if (engine->isCylinderCleanupMode) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
floatus_t injectionStartDelayUs = ENGINE(rpmCalculator.oneDegreeUs) * event->injectionStart.angleOffset;
|
floatus_t injectionStartDelayUs = ENGINE(rpmCalculator.oneDegreeUs) * event->injectionStart.angleOffset;
|
||||||
|
|
||||||
#if EFI_DEFAILED_LOGGING || defined(__DOXYGEN__)
|
#if EFI_DEFAILED_LOGGING || defined(__DOXYGEN__)
|
||||||
|
@ -253,6 +249,10 @@ static ALWAYS_INLINE void handleFuel(const bool limitedFuel, uint32_t trgEventIn
|
||||||
if (!isInjectionEnabled(engineConfiguration) || limitedFuel) {
|
if (!isInjectionEnabled(engineConfiguration) || limitedFuel) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
if (engine->isCylinderCleanupMode) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Ignition events are defined by addFuelEvents() according to selected
|
* Ignition events are defined by addFuelEvents() according to selected
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
// This file was generated by Version2Header
|
// This file was generated by Version2Header
|
||||||
// Thu Sep 15 10:49:19 EDT 2016
|
// Tue Sep 20 23:15:42 EDT 2016
|
||||||
#ifndef VCS_VERSION
|
#ifndef VCS_VERSION
|
||||||
#define VCS_VERSION "10618"
|
#define VCS_VERSION "10630"
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue