pin conflict in MRE test config

This commit is contained in:
rusEfi 2019-10-10 13:32:07 -04:00
parent 62577c47da
commit dfef5748b9
2 changed files with 5 additions and 1 deletions

View File

@ -450,6 +450,10 @@ void mreBoardTest(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
boardConfiguration->ignitionPins[7] = GPIO_UNASSIGNED;
boardConfiguration->fuelPumpPin = GPIO_UNASSIGNED;
boardConfiguration->idle.solenoidPin = GPIO_UNASSIGNED;
boardConfiguration->fanPin = GPIO_UNASSIGNED;
// fuel pump is useful to test power on/off scenario
// boardConfiguration->fuelPumpPin = TLE8888_PIN_22;

View File

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