From 69d01eb11e1eb5e1ca5a63d703660971a58df74e Mon Sep 17 00:00:00 2001 From: rusefi Date: Mon, 6 Nov 2017 10:25:06 -0500 Subject: [PATCH] #487 --- firmware/controllers/algo/rusefi_enums.h | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/firmware/controllers/algo/rusefi_enums.h b/firmware/controllers/algo/rusefi_enums.h index 3de5f790a2..9569daffe6 100644 --- a/firmware/controllers/algo/rusefi_enums.h +++ b/firmware/controllers/algo/rusefi_enums.h @@ -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;