This commit is contained in:
rusefi 2017-11-06 10:25:06 -05:00
parent e5a4f56533
commit 7dd16b474a
1 changed files with 12 additions and 1 deletions

View File

@ -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;