auto-sync

This commit is contained in:
rusEfi 2015-03-25 08:04:55 -05:00
parent 30a422453f
commit ddd2715577
3 changed files with 8 additions and 1 deletions

View File

@ -75,4 +75,7 @@ void setMazda626EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
setFsio(engineConfiguration, 0, GPIOE_6, "1");
#endif
engineConfiguration->externalKnockSenseAdc = EFI_ADC_4;
}

View File

@ -313,6 +313,10 @@ static void printAnalogInfo(void) {
if (engineConfiguration->hasBaroSensor) {
printAnalogChannelInfo("BARO", engineConfiguration->baroSensor.hwChannel);
}
if (engineConfiguration->externalKnockSenseAdc != EFI_ADC_NONE) {
printAnalogChannelInfo("extKno", engineConfiguration->externalKnockSenseAdc);
}
printAnalogChannelInfo("A/C sw", engineConfiguration->acSwitchAdc);
printAnalogChannelInfo("HIP9011", engineConfiguration->hipOutputChannel);
printAnalogChannelInfoExt("Vbatt", engineConfiguration->vbattAdcChannel, getVBatt(engineConfiguration));

View File

@ -276,5 +276,5 @@ int getRusEfiVersion(void) {
return 1; // this is here to make the compiler happy about the unused array
if (UNUSED_CCM_SIZE[0] == 0)
return 1; // this is here to make the compiler happy about the unused array
return 20150324;
return 20150325;
}