ETB_BENCH_ENGINE
This commit is contained in:
parent
479115423b
commit
78c87195c8
|
@ -258,5 +258,12 @@ void setFrankensoBoardTestConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
|
||||
}
|
||||
|
||||
void setEtbTestConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
setCustomEngineConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
boardConfiguration->ignitionPins[0] = GPIO_UNASSIGNED;
|
||||
boardConfiguration->ignitionPins[1] = GPIO_UNASSIGNED;
|
||||
boardConfiguration->ignitionPins[2] = GPIO_UNASSIGNED;
|
||||
boardConfiguration->ignitionPins[3] = GPIO_UNASSIGNED;
|
||||
}
|
||||
#endif /* CONFIG_ENGINES_CUSTOM_ENGINE_CPP_ */
|
||||
|
|
|
@ -15,5 +15,6 @@ void disableLCD(board_configuration_s *boardConfiguration);
|
|||
void runSchedulingPrecisionTestIfNeeded(void);
|
||||
void setMinimalPinsEngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
void setFrankensoBoardTestConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
void setEtbTestConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
#endif /* CONFIG_ENGINES_CUSTOM_ENGINE_H_ */
|
||||
|
|
|
@ -91,6 +91,8 @@ case MIATA_NA6_MAP:
|
|||
return "MIATA_NA6_MAP";
|
||||
case MIATA_NA6_VAF:
|
||||
return "MIATA_NA6_VAF";
|
||||
case ETB_BENCH_ENGINE:
|
||||
return "ETB_BENCH_ENGINE";
|
||||
case MINIMAL_PINS:
|
||||
return "MINIMAL_PINS";
|
||||
case MINI_COOPER_R50:
|
||||
|
|
|
@ -1178,6 +1178,9 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
|||
case MIATA_NA6_VAF:
|
||||
setMiataNA6_VAF_Configuration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
break;
|
||||
case ETB_BENCH_ENGINE:
|
||||
setEtbTestConfiguration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
break;
|
||||
case MAZDA_MIATA_NA8:
|
||||
setMazdaMiataNA8Configuration(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
break;
|
||||
|
|
|
@ -178,6 +178,8 @@ typedef enum {
|
|||
// see also MIATA_NA6_MAP = 41
|
||||
MIATA_NA6_VAF = 57,
|
||||
|
||||
ETB_BENCH_ENGINE = 58,
|
||||
|
||||
/**
|
||||
* this configuration has as few pins configured as possible
|
||||
*/
|
||||
|
|
|
@ -26,6 +26,9 @@
|
|||
*
|
||||
* Relevant console commands:
|
||||
*
|
||||
* ETB_BENCH_ENGINE
|
||||
* set engine_type 58
|
||||
*
|
||||
* enable verbose_etb
|
||||
* disable verbose_etb
|
||||
* ethinfo
|
||||
|
|
|
@ -778,5 +778,5 @@ int getRusEfiVersion(void) {
|
|||
if (initBootloader() != 0)
|
||||
return 123;
|
||||
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */
|
||||
return 20190223;
|
||||
return 20190226;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue