MRE
This commit is contained in:
parent
9292efadbe
commit
135ff2d50d
|
@ -785,6 +785,8 @@ case TEST_ISSUE_366_BOTH:
|
||||||
return "TEST_ISSUE_366_BOTH";
|
return "TEST_ISSUE_366_BOTH";
|
||||||
case TEST_ISSUE_366_RISE:
|
case TEST_ISSUE_366_RISE:
|
||||||
return "TEST_ISSUE_366_RISE";
|
return "TEST_ISSUE_366_RISE";
|
||||||
|
case MICRO_RUS_EFI:
|
||||||
|
return "MICRO_RUS_EFI";
|
||||||
case TLE8888_BENCH_ENGINE:
|
case TLE8888_BENCH_ENGINE:
|
||||||
return "TLE8888_BENCH_ENGINE";
|
return "TLE8888_BENCH_ENGINE";
|
||||||
case TOYOTA_2JZ_GTE_VVTi:
|
case TOYOTA_2JZ_GTE_VVTi:
|
||||||
|
|
|
@ -1158,6 +1158,7 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
||||||
if (engineType != MINIMAL_PINS
|
if (engineType != MINIMAL_PINS
|
||||||
/* this is a bit nasty */
|
/* this is a bit nasty */
|
||||||
&& engineType != ETB_BENCH_ENGINE
|
&& engineType != ETB_BENCH_ENGINE
|
||||||
|
&& engineType != MICRO_RUS_EFI
|
||||||
&& engineType != TLE8888_BENCH_ENGINE) {
|
&& engineType != TLE8888_BENCH_ENGINE) {
|
||||||
setDefaultBoardConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
setDefaultBoardConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||||
}
|
}
|
||||||
|
@ -1230,6 +1231,7 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
||||||
case ETB_BENCH_ENGINE:
|
case ETB_BENCH_ENGINE:
|
||||||
setEtbTestConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
|
setEtbTestConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||||
break;
|
break;
|
||||||
|
case MICRO_RUS_EFI:
|
||||||
case TLE8888_BENCH_ENGINE:
|
case TLE8888_BENCH_ENGINE:
|
||||||
setTle8888TestConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
|
setTle8888TestConfiguration(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||||
break;
|
break;
|
||||||
|
|
|
@ -187,6 +187,8 @@ typedef enum {
|
||||||
|
|
||||||
TLE8888_BENCH_ENGINE = 59,
|
TLE8888_BENCH_ENGINE = 59,
|
||||||
|
|
||||||
|
MICRO_RUS_EFI = 60,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* this configuration has as few pins configured as possible
|
* this configuration has as few pins configured as possible
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue