auto-sync
This commit is contained in:
parent
a3222993b8
commit
1493ca3333
|
@ -233,6 +233,7 @@ void setFordEscortGt(engine_configuration_s *engineConfiguration, board_configur
|
|||
setFrankenso_01_LCD(boardConfiguration);
|
||||
engineConfiguration->displacement = 1.839;
|
||||
engineConfiguration->algorithm = LM_MAF;
|
||||
boardConfiguration->tunerStudioSerialSpeed = 9600;
|
||||
|
||||
// boardConfiguration->triggerInputPins[0] = GPIOC_6; // 2G YEL/BLU
|
||||
// boardConfiguration->triggerInputPins[1] = GPIOA_5; // 2E White CKP
|
||||
|
@ -242,6 +243,8 @@ void setFordEscortGt(engine_configuration_s *engineConfiguration, board_configur
|
|||
boardConfiguration->triggerInputPins[1] = GPIO_UNASSIGNED;
|
||||
engineConfiguration->needSecondTriggerInput = false;
|
||||
|
||||
engineConfiguration->map.sensor.type = MT_DENSO183;
|
||||
|
||||
|
||||
/**
|
||||
* W53 Frankenso input #3 / PA0 / ADC_0
|
||||
|
|
|
@ -15,6 +15,8 @@ extern engine_configuration_s * engineConfiguration;
|
|||
* -6.64kPa at zero volts
|
||||
* 182.78kPa at 5 volts
|
||||
*
|
||||
* about 3 volts at 100kPa
|
||||
*
|
||||
* @returns kPa value
|
||||
*/
|
||||
static FastInterpolation denso183(0, -6.64, 5, 182.78);
|
||||
|
|
|
@ -260,5 +260,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 20150131;
|
||||
return 20150201;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue