mirror of
https://github.com/stevenhowes/MX5-Arduino.git
synced 2026-05-26 15:53:40 +01:00
Calculate as if doing sequential ignition but process as wasted spark. Makes injection easier as it can share the same sequencing.
This commit is contained in:
@@ -31,8 +31,8 @@ byte cas_sync_fail_log = 0; // We need to output t
|
||||
// Cylinder sequencing
|
||||
byte cylinder_tdc = 0; // Most recent cylinder to hit TDC
|
||||
byte cylinder_next_fire = 0; // Next cylinder due a spark
|
||||
//byte cylinder_next_inject = 0; // Next cylinder due fuel
|
||||
byte cylinder_next[] = {0,2,1,2,1}; // Can be 0,3,1,4,2 if we ever go sequential
|
||||
byte cylinder_next_inject = 0; // Next cylinder due fuel
|
||||
byte cylinder_next_seq[] = {0,3,1,4,2}; // Sequential
|
||||
|
||||
// Ignition
|
||||
const int coil_dwell = 4000; // 4 read from scope on factory ECU
|
||||
|
||||
Reference in New Issue
Block a user