v12 two coils mode

This commit is contained in:
rusefi 2019-02-15 03:44:09 -05:00
parent 098a8b3148
commit c82af297e2
2 changed files with 7 additions and 0 deletions

View File

@ -403,6 +403,8 @@ case IM_ONE_COIL:
return "IM_ONE_COIL";
case IM_WASTED_SPARK:
return "IM_WASTED_SPARK";
case IM_TWO_COILS:
return "IM_TWO_COILS";
}
return NULL;
}

View File

@ -480,6 +480,11 @@ typedef enum {
IM_INDIVIDUAL_COILS = 1,
IM_WASTED_SPARK = 2,
/**
* some v12 engines line BMW M70 and M73 run two distributors, one for each bank of cylinders
*/
IM_TWO_COILS = 3,
Force_4_bytes_size_ignition_mode = ENUM_32_BITS,
} ignition_mode_e;