This commit is contained in:
rusefi 2020-04-03 00:19:04 -04:00
parent a228870915
commit fd02a6dc8c
2 changed files with 10 additions and 1 deletions

View File

@ -107,6 +107,15 @@ void setEngineBMW_M73_microRusEfi(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
CONFIG(enableVerboseCanTx) = true; CONFIG(enableVerboseCanTx) = true;
#endif /* EFI_CANBUS_SLAVE */ #endif /* EFI_CANBUS_SLAVE */
// this large engine seems to crank at around only 150 RPM? And happily idle at 400RPM?
engineConfiguration->cranking.rpm = 280;
CONFIG(crankingTimingAngle) = 15;
// I am too lazy to add MAP sensor
engineConfiguration->fuelAlgorithm = LM_ALPHA_N;
// set cranking_fuel 15 // set cranking_fuel 15
engineConfiguration->cranking.baseFuel = 15; engineConfiguration->cranking.baseFuel = 15;

View File

@ -705,6 +705,6 @@ int getRusEfiVersion(void) {
if (initBootloader() != 0) if (initBootloader() != 0)
return 123; return 123;
#endif /* EFI_BOOTLOADER_INCLUDE_CODE */ #endif /* EFI_BOOTLOADER_INCLUDE_CODE */
return 20200402; return 20200403;
} }
#endif /* EFI_UNIT_TEST */ #endif /* EFI_UNIT_TEST */