auto-sync

This commit is contained in:
rusEfi 2015-05-03 19:10:14 -04:00
parent 91e6e9c808
commit d8467a5b00
3 changed files with 6 additions and 6 deletions

View File

@ -308,7 +308,7 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F) {
boardConfiguration->sensorChartMode = SC_OFF;
engineConfiguration->map.sensor.hwChannel = EFI_ADC_4;
engineConfiguration->baroSensor.hwChannel = EFI_ADC_4;
engineConfiguration->baroSensor.hwChannel = EFI_ADC_NONE;
engineConfiguration->specs.firingOrder = FO_1_THEN_3_THEN_4_THEN2;
engineConfiguration->crankingInjectionMode = IM_SIMULTANEOUS;
@ -358,7 +358,7 @@ void setDefaultConfiguration(DECLARE_ENGINE_PARAMETER_F) {
engineConfiguration->alternatorControlPFactor = 30;
engineConfiguration->vbattAdcChannel = EFI_ADC_4;
engineConfiguration->vbattAdcChannel = EFI_ADC_NONE;
engineConfiguration->cltAdcChannel = EFI_ADC_6;
engineConfiguration->iatAdcChannel = EFI_ADC_7;
engineConfiguration->mafAdcChannel = EFI_ADC_NONE;

View File

@ -156,17 +156,17 @@ static void fuelbench2(const char *delayStr, const char *indexStr, const char *
}
void fanBench(void) {
pinbench("0", "3000", "0", "1", &enginePins.fanRelay, boardConfiguration->fanPin);
pinbench("0", "3000", "100", "1", &enginePins.fanRelay, boardConfiguration->fanPin);
}
extern OutputPin checkEnginePin;
void milBench(void) {
pinbench("0", "3000", "0", "1", &checkEnginePin, boardConfiguration->malfunctionIndicatorPin);
pinbench("0", "3000", "100", "1", &checkEnginePin, boardConfiguration->malfunctionIndicatorPin);
}
void fuelPumpBench(void) {
pinbench("0", "3000", "0", "1", &enginePins.fuelPumpRelay, boardConfiguration->fuelPumpPin);
pinbench("0", "3000", "100", "1", &enginePins.fuelPumpRelay, boardConfiguration->fuelPumpPin);
}
// fuelbench 5 1000 2

View File

@ -290,5 +290,5 @@ int getRusEfiVersion(void) {
return 123; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] * 0 != 0)
return 3211; // this is here to make the compiler happy about the unused array
return 20150430;
return 20150503;
}