ETB mule pins

This commit is contained in:
rusEfi 2018-11-30 00:37:32 -05:00
parent caf8ebcfcd
commit 58e97d3c93
5 changed files with 9 additions and 4 deletions

View File

@ -103,7 +103,7 @@ void setCustomEngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
* Frankenso analog #11 PC5 ADC15
* Frankenso analog #12 PC4 ADC14 VBatt
*/
engineConfiguration->tpsAdcChannel = EFI_ADC_2;
engineConfiguration->tpsAdcChannel = EFI_ADC_2; // PA2
engineConfiguration->map.sensor.hwChannel = EFI_ADC_0;

View File

@ -123,7 +123,7 @@ void setFordEscortGt(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
engineConfiguration->map.sensor.hwChannel = EFI_ADC_4;
setEgoSensor(ES_Innovate_MTX_L PASS_ENGINE_PARAMETER_SUFFIX);
engineConfiguration->afr.hwChannel = EFI_ADC_2; // Frankenso analog #5
engineConfiguration->afr.hwChannel = EFI_ADC_2; // Frankenso analog #5 // PA2
// set_idle_position 10
boardConfiguration->manIdlePosition = 10;

View File

@ -293,7 +293,7 @@ static void setMiata1994_common(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
commonFrankensoAnalogInputs(engineConfiguration);
engineConfiguration->tpsAdcChannel = EFI_ADC_2;
engineConfiguration->tpsAdcChannel = EFI_ADC_2; // PA2
engineConfiguration->map.sensor.hwChannel = EFI_ADC_4;
engineConfiguration->mafAdcChannel = EFI_ADC_0;
engineConfiguration->clt.adcChannel = EFI_ADC_12;

View File

@ -44,7 +44,7 @@ void setMazdaMiataNb1EngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
engineConfiguration->mafAdcChannel = EFI_ADC_1;
engineConfiguration->clt.adcChannel = EFI_ADC_11;
engineConfiguration->iat.adcChannel = EFI_ADC_13;
engineConfiguration->afr.hwChannel = EFI_ADC_2;
engineConfiguration->afr.hwChannel = EFI_ADC_2; // PA2
boardConfiguration->idle.solenoidPin = GPIOE_0;
boardConfiguration->idle.solenoidPinMode = OM_DEFAULT;

View File

@ -320,6 +320,11 @@ void setMazdaMiata2003EngineConfiguration(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
boardConfiguration->etbControlPin1 = GPIOC_7;
// default TPS is engineConfiguration->tpsAdcChannel = EFI_ADC_2;
// it becomes pedal sensor on test mule
//engineConfiguration->pedalPositionAdcChannel = EFI_ADC_2; // PA2
// engineConfiguration->tpsAdcChannel = EFI_ADC_13; // PC3
// set_whole_ve_map 80
memcpy(config->veRpmBins, ve18vvtRpmBins, sizeof(ve18vvtRpmBins));