v12 two coils mode
This commit is contained in:
parent
50d4546af4
commit
068bac893b
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue