mirror of https://github.com/rusefi/rusefi-1.git
auto-sync
This commit is contained in:
parent
7b0d5e6104
commit
5ffa43211e
|
@ -261,7 +261,7 @@ void setFordEscortGt(DECLARE_ENGINE_PARAMETER_F) {
|
|||
// boardConfiguration->triggerInputPins[0] = GPIOA_5; // 2E White CKP
|
||||
// boardConfiguration->triggerInputPins[1] = GPIO_UNASSIGNED;
|
||||
|
||||
// in case of SOHC distributor we only have one signal
|
||||
// in case of DOHC distributor we have two signals
|
||||
boardConfiguration->triggerInputPins[0] = GPIOC_6;
|
||||
boardConfiguration->triggerInputPins[1] = GPIOA_5; // 2E White CKP
|
||||
|
||||
|
@ -275,8 +275,12 @@ void setFordEscortGt(DECLARE_ENGINE_PARAMETER_F) {
|
|||
engineConfiguration->map.sensor.type = MT_DENSO183;
|
||||
engineConfiguration->map.sensor.hwChannel = EFI_ADC_4;
|
||||
|
||||
setEgoSensor(ES_BPSX_D1 PASS_ENGINE_PARAMETER);
|
||||
engineConfiguration->afr.hwChannel = EFI_ADC_2;
|
||||
setEgoSensor(ES_Innovate_MTX_L PASS_ENGINE_PARAMETER);
|
||||
engineConfiguration->afr.hwChannel = EFI_ADC_2; // Frankenso analog #5
|
||||
|
||||
// set_idle_position 35
|
||||
boardConfiguration->manIdlePosition = 35;
|
||||
|
||||
|
||||
|
||||
// set_global_trigger_offset_angle -40
|
||||
|
|
|
@ -363,22 +363,37 @@ typedef enum {
|
|||
Force_4b_spi_device = ENUM_32_BITS,
|
||||
} spi_device_e;
|
||||
|
||||
/**
|
||||
* Frankenso analog #1 PC2 ADC12
|
||||
* Frankenso analog #2 PC1 ADC11
|
||||
* Frankenso analog #3 PA0 ADC0
|
||||
* Frankenso analog #4 PC3 ADC13
|
||||
* Frankenso analog #5 PA2 ADC2
|
||||
* Frankenso analog #6 PA1 ADC1
|
||||
* Frankenso analog #7 PA4 ADC4
|
||||
* Frankenso analog #8 PA3 ADC3
|
||||
* Frankenso analog #9 PA7 ADC7
|
||||
* Frankenso analog #10 PA6 ADC6
|
||||
* Frankenso analog #11 PC5 ADC15
|
||||
* Frankenso analog #12 PC4 ADC14
|
||||
*/
|
||||
|
||||
typedef enum {
|
||||
EFI_ADC_0 = 0,
|
||||
EFI_ADC_1 = 1,
|
||||
EFI_ADC_2 = 2,
|
||||
EFI_ADC_3 = 3,
|
||||
EFI_ADC_4 = 4,
|
||||
EFI_ADC_5 = 5,
|
||||
EFI_ADC_6 = 6,
|
||||
EFI_ADC_7 = 7,
|
||||
EFI_ADC_0 = 0, // PA0
|
||||
EFI_ADC_1 = 1, // PA1
|
||||
EFI_ADC_2 = 2, // PA2
|
||||
EFI_ADC_3 = 3, // PA3
|
||||
EFI_ADC_4 = 4, // PA4
|
||||
EFI_ADC_5 = 5, // PA5
|
||||
EFI_ADC_6 = 6, // PA6
|
||||
EFI_ADC_7 = 7, // PA7
|
||||
EFI_ADC_8 = 8,
|
||||
EFI_ADC_9 = 9,
|
||||
EFI_ADC_10 = 10,
|
||||
EFI_ADC_11 = 11,
|
||||
EFI_ADC_12 = 12,
|
||||
EFI_ADC_13 = 13,
|
||||
EFI_ADC_14 = 14,
|
||||
EFI_ADC_11 = 11, // PC11
|
||||
EFI_ADC_12 = 12, // PC12
|
||||
EFI_ADC_13 = 13, // PC13
|
||||
EFI_ADC_14 = 14, // PC14
|
||||
EFI_ADC_15 = 15,
|
||||
|
||||
EFI_ADC_NONE = 16,
|
||||
|
@ -391,6 +406,7 @@ typedef enum {
|
|||
ES_BPSX_D1 = 0,
|
||||
/**
|
||||
* same as innovate LC2
|
||||
* 0v->7.35afr, 5v->22.39
|
||||
*/
|
||||
ES_Innovate_MTX_L = 1, ES_14Point7_Free = 2,
|
||||
|
||||
|
|
Loading…
Reference in New Issue