This commit is contained in:
parent
e5a4f56533
commit
7dd16b474a
|
@ -419,8 +419,19 @@ typedef enum {
|
||||||
Force_4b_ignition_mode = ENUM_32_BITS,
|
Force_4b_ignition_mode = ENUM_32_BITS,
|
||||||
} ignition_mode_e;
|
} ignition_mode_e;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see getNumberOfInjections
|
||||||
|
*/
|
||||||
typedef enum {
|
typedef enum {
|
||||||
IM_SIMULTANEOUS = 0, IM_SEQUENTIAL = 1, IM_BATCH = 2,
|
IM_SIMULTANEOUS = 0,
|
||||||
|
/**
|
||||||
|
* each cylinder has it's own injector, each injector is wired separately
|
||||||
|
*/
|
||||||
|
IM_SEQUENTIAL = 1,
|
||||||
|
/**
|
||||||
|
* each cylinder has it's own injector but these injectors work in pairs. Injectors could be wired in pairs or separately.
|
||||||
|
*/
|
||||||
|
IM_BATCH = 2,
|
||||||
|
|
||||||
Force_4b_injection_mode = ENUM_32_BITS,
|
Force_4b_injection_mode = ENUM_32_BITS,
|
||||||
} injection_mode_e;
|
} injection_mode_e;
|
||||||
|
|
Loading…
Reference in New Issue