This commit is contained in:
rusEfi 2019-09-02 11:07:34 -04:00
parent 15a7c1a2e6
commit 1d057a8faa
2 changed files with 8 additions and 1 deletions

View File

@ -169,6 +169,11 @@ void setBoardConfigurationOverrides(void) {
setupTle8888(); setupTle8888();
setupEtb(); setupEtb();
// MRE has a special main relay control low side pin - rusEfi firmware is totally not involved with main relay control
// TLE8888 half bridges (pushpull, lowside, or high-low) IN12
// GPIOE_8: "35 - GP Out 1"
boardConfiguration->fuelPumpPin = GPIOE_8;
// "required" hardware is done - set some reasonable defaults // "required" hardware is done - set some reasonable defaults
setupDefaultSensorInputs(); setupDefaultSensorInputs();

View File

@ -504,10 +504,12 @@ void setMazdaMiata2003EngineConfigurationBoardTest(DECLARE_CONFIG_PARAMETER_SIGN
} }
/** /**
* Pretty OEM 2003 Miata with ETB * Pretty much OEM 2003 Miata with ETB
* set engine_type 13 * set engine_type 13
*/ */
void setMiataNB2_MRE(DECLARE_CONFIG_PARAMETER_SIGNATURE) { void setMiataNB2_MRE(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
// MRE has a special main relay control low side pin - rusEfi firmware is totally not involved with main relay control
// fuelPumpPin is inherited from boards/microrusefi/board_configuration.cpp
engineConfiguration->etb.pFactor = 12; // a bit lower p-factor seems to work better on TLE9201? MRE? engineConfiguration->etb.pFactor = 12; // a bit lower p-factor seems to work better on TLE9201? MRE?
engineConfiguration->etb.iFactor = 0; engineConfiguration->etb.iFactor = 0;