auto-sync
This commit is contained in:
parent
044b4fe632
commit
af24ccae70
|
@ -316,6 +316,7 @@ void setDodgeNeonNGCEngineConfiguration(engine_configuration_s *engineConfigurat
|
|||
boardConfiguration->adcHwChannelEnabled[1] = ADC_SLOW;
|
||||
boardConfiguration->adcHwChannelEnabled[4] = ADC_SLOW;
|
||||
boardConfiguration->adcHwChannelEnabled[6] = ADC_FAST;
|
||||
boardConfiguration->adcHwChannelEnabled[10] = ADC_SLOW; // HIP9011
|
||||
boardConfiguration->adcHwChannelEnabled[11] = ADC_SLOW; // IAT
|
||||
boardConfiguration->adcHwChannelEnabled[12] = ADC_SLOW; // CLT
|
||||
boardConfiguration->adcHwChannelEnabled[13] = ADC_SLOW; // AFR
|
||||
|
@ -349,7 +350,7 @@ void setDodgeNeonNGCEngineConfiguration(engine_configuration_s *engineConfigurat
|
|||
engineConfiguration->map.sensor.sensorType = MT_DODGE_NEON_2003;
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
// setHip9011FrankensoPinout();
|
||||
setHip9011FrankensoPinout();
|
||||
#endif
|
||||
engineConfiguration->cylinderBore = 87.5;
|
||||
|
||||
|
|
|
@ -251,6 +251,7 @@ static void printAnalogChannelInfo(const char *name, adc_channel_e hwChannel) {
|
|||
}
|
||||
|
||||
static void printAnalogInfo(void) {
|
||||
printAnalogChannelInfo("hip9011", EFI_ADC_10);
|
||||
printAnalogChannelInfo("TPS", engineConfiguration->tpsAdcChannel);
|
||||
printAnalogChannelInfo("CLT", engineConfiguration->cltAdcChannel);
|
||||
if (engineConfiguration->hasIatSensor) {
|
||||
|
|
|
@ -164,7 +164,7 @@ void setHip9011FrankensoPinout(void) {
|
|||
* SPI on PB13/14/15
|
||||
*/
|
||||
boardConfiguration->isHip9011Enabled = true;
|
||||
boardConfiguration->hip9011CsPin = GPIOD_11;
|
||||
boardConfiguration->hip9011CsPin = GPIOD_0;
|
||||
boardConfiguration->hip9011IntHoldPin = GPIOB_11;
|
||||
boardConfiguration->is_enabled_spi_2 = true;
|
||||
}
|
||||
|
|
|
@ -264,5 +264,5 @@ int getRusEfiVersion(void) {
|
|||
return 1; // this is here to make the compiler happy about the unused array
|
||||
if (UNUSED_CCM_SIZE == 0)
|
||||
return 1; // this is here to make the compiler happy about the unused array
|
||||
return 20150104;
|
||||
return 20150105;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue