civic trigger issue

This commit is contained in:
rusefi 2017-03-01 19:41:17 -05:00
parent 6e2a27fa50
commit 945db7e41e
3 changed files with 16 additions and 1 deletions

View File

@ -126,6 +126,9 @@ case VW_ABA:
return "VW_ABA";
case DODGE_STRATUS:
return "DODGE_STRATUS";
case TEST_CIVIC_4_0_BOTH:
case TEST_CIVIC_4_0_RISE:
return "civictest";
}
return NULL;
}

View File

@ -914,6 +914,8 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
case MIATA_NA_1_6:
setMiataNA_1_6_Configuration(PASS_ENGINE_PARAMETER_F);
break;
case TEST_CIVIC_4_0_RISE:
case TEST_CIVIC_4_0_BOTH:
case HONDA_ACCORD_CD_TWO_WIRES:
setHondaAccordConfiguration1_24(PASS_ENGINE_PARAMETER_F);
break;

View File

@ -142,7 +142,17 @@ typedef enum {
FRANKENSO_QA_ENGINE = 49,
ET_UNUSED = 50,
/**
* this is about unit-testing skipped wheel trigger
*/
TEST_CIVIC_4_0_BOTH = 50,
/**
* this is about unit-testing skipped wheel trigger
*/
TEST_CIVIC_4_0_RISE = 51,
ET_UNUSED = 52,
Force_4b_engine_type = ENUM_32_BITS,
} engine_type_e;