This commit is contained in:
rusefi 2017-11-06 10:25:06 -05:00
parent 815d69cc6c
commit 69d01eb11e
1 changed files with 12 additions and 1 deletions

View File

@ -419,8 +419,19 @@ typedef enum {
Force_4b_ignition_mode = ENUM_32_BITS,
} ignition_mode_e;
/**
* @see getNumberOfInjections
*/
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,
} injection_mode_e;