auto-sync

This commit is contained in:
rusEfi 2014-11-26 21:03:18 -06:00
parent 5a88efef19
commit 57ece4b7d8
4 changed files with 8 additions and 0 deletions

View File

@ -312,6 +312,8 @@ void setMiata1994_s(engine_configuration_s *engineConfiguration, board_configura
boardConfiguration->triggerSimulatorPins[2] = GPIO_UNASSIGNED;
engineConfiguration->acSwitchAdc = EFI_ADC_1; // PA1, W50 on Frankenso
/**
* This board has PE0 & PE1 mosfets rewires to PD3 and PD5
*/

View File

@ -525,6 +525,8 @@ case IE_NO_ERROR:
}
const char *getAdc_channel_e(adc_channel_e value){
switch(value) {
case EFI_ADC_NONE:
return "EFI_ADC_NONE";
case EFI_ADC_14:
return "EFI_ADC_14";
case EFI_ADC_13:

View File

@ -300,6 +300,8 @@ void setDefaultConfiguration(engine_configuration_s *engineConfiguration, board_
boardConfiguration->acRelayPin = GPIO_UNASSIGNED;
boardConfiguration->acRelayPinMode = OM_DEFAULT;
engineConfiguration->acSwitchAdc = EFI_ADC_NONE;
#if EFI_PROD_CODE
engineConfiguration->digitalChartSize = 300;
#else

View File

@ -333,6 +333,8 @@ typedef enum {
EFI_ADC_14 = 14,
EFI_ADC_15 = 15,
EFI_ADC_NONE = 888,
EFI_ADC_ERROR = 999,
Force_4b_cranking_adc_channel = ENUM_SIZE_HACK,