auto-sync
This commit is contained in:
parent
30a422453f
commit
ddd2715577
|
@ -75,4 +75,7 @@ void setMazda626EngineConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
|||
setFsio(engineConfiguration, 0, GPIOE_6, "1");
|
||||
#endif
|
||||
|
||||
engineConfiguration->externalKnockSenseAdc = EFI_ADC_4;
|
||||
|
||||
|
||||
}
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue