This commit is contained in:
rusefi 2019-06-07 18:02:28 -04:00
parent 66903595b7
commit 4737bb3301
3 changed files with 6 additions and 0 deletions

View File

@ -785,6 +785,8 @@ case TEST_ISSUE_366_BOTH:
return "TEST_ISSUE_366_BOTH";
case TEST_ISSUE_366_RISE:
return "TEST_ISSUE_366_RISE";
case MICRO_RUS_EFI:
return "MICRO_RUS_EFI";
case TLE8888_BENCH_ENGINE:
return "TLE8888_BENCH_ENGINE";
case TOYOTA_2JZ_GTE_VVTi:

View File

@ -1158,6 +1158,7 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
if (engineType != MINIMAL_PINS
/* this is a bit nasty */
&& engineType != ETB_BENCH_ENGINE
&& engineType != MICRO_RUS_EFI
&& engineType != TLE8888_BENCH_ENGINE) {
setDefaultBoardConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
}
@ -1230,6 +1231,7 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
case ETB_BENCH_ENGINE:
setEtbTestConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
break;
case MICRO_RUS_EFI:
case TLE8888_BENCH_ENGINE:
setTle8888TestConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
break;

View File

@ -187,6 +187,8 @@ typedef enum {
TLE8888_BENCH_ENGINE = 59,
MICRO_RUS_EFI = 60,
/**
* this configuration has as few pins configured as possible
*/