[EPIC] [Feature Request] Transmission Control #1454
This commit is contained in:
parent
2bd5f135d6
commit
3635bac90a
|
@ -698,3 +698,8 @@ void setMiataNB2_MRE_MAF(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
|||
|
||||
engineConfiguration->fuelAlgorithm = LM_REAL_MAF;
|
||||
}
|
||||
|
||||
void setMiataNB2_Proteus_TCU(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -40,3 +40,10 @@ void setMiataNB2_MRE_MAP(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
|||
* set engine_type 15
|
||||
*/
|
||||
void setMiataNB2_MRE_MAF(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
||||
|
||||
/**
|
||||
* https://github.com/rusefi/rusefi/wiki/Mazda-Miata-2001
|
||||
* set engine_type 1
|
||||
*/
|
||||
void setMiataNB2_Proteus_TCU(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
||||
|
||||
|
|
|
@ -1164,6 +1164,9 @@ void resetConfigurationExt(Logging * logger, configuration_callback_t boardCallb
|
|||
// all basic settings are already set in prepareVoidConfiguration(), no need to set anything here
|
||||
// nothing to do - we do it all in setBoardConfigurationOverrides
|
||||
break;
|
||||
case MIATA_PROTEUS_TCU:
|
||||
setMiataNB2_Proteus_TCU(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
break;
|
||||
case MRE_BOARD_OLD_TEST:
|
||||
mreBoardOldTest(PASS_CONFIG_PARAMETER_SIGNATURE);
|
||||
break;
|
||||
|
|
|
@ -153,14 +153,8 @@ const char* getConfigurationName(engine_type_e engineType) {
|
|||
return "BMWe34";
|
||||
case VW_ABA:
|
||||
return "VW_ABA";
|
||||
case DODGE_STRATUS:
|
||||
return "DODGE_STRATUS";
|
||||
case SACHS:
|
||||
return "SACHS";
|
||||
case DAIHATSU:
|
||||
return "DAIHATSU";
|
||||
case SUZUKI_VITARA:
|
||||
return "SUZUKI_VITARA";
|
||||
case CAMARO_4:
|
||||
return "CAMARO_4";
|
||||
case CHEVY_C20_1973:
|
||||
|
|
Loading…
Reference in New Issue