Skip to content

Commit

Permalink
An option to disable semi-random ignition fix rusefi#4151
Browse files Browse the repository at this point in the history
  • Loading branch information
rusefillc committed May 8, 2022
1 parent 88a6b34 commit 7ca3295
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions firmware/controllers/engine_cycle/main_trigger_callback.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,10 @@ bool noFiringUntilVvtSync(vvt_mode_e vvtMode) {
if (vvtMode == VVT_MAP_V_TWIN_ANOTHER) {
return true;
}
if (engineConfiguration->isPhaseSyncRequiredForIgnition) {
// in rare cases engines do not like random sequential mode
return true;
}

// Symmetrical crank modes require cam sync before firing
// non-symmetrical cranks can use faster spin-up mode (firing in wasted/batch before VVT sync)
Expand Down

0 comments on commit 7ca3295

Please sign in to comment.