auto-sync

This commit is contained in:
rusEfi 2015-01-15 10:05:30 -06:00
parent fc23c9292a
commit 8e4890bff2
3 changed files with 6 additions and 2 deletions

View File

@ -377,6 +377,8 @@ void setDefaultConfiguration(engine_configuration_s *engineConfiguration, board_
for (int i = 0; i < LE_COMMAND_COUNT; i++) {
boardConfiguration->fsioPins[i] = GPIO_UNASSIGNED;
boardConfiguration->le_formulas[i][0] = 0;
engineConfiguration->fsioInpus[i] = GPIO_UNASSIGNED;
engineConfiguration->fsioInpusMode[i] = PI_DEFAULT;
}
for (int i = 0; i < JOYSTICK_PIN_COUNT; i++) {
boardConfiguration->joystickPins[i] = GPIO_UNASSIGNED;

View File

@ -613,7 +613,9 @@ typedef struct {
brain_pin_e clutchUpPin;
pin_input_mode_e clutchUpPinMode;
float hipThreshold;
int unused3[181];
brain_pin_e fsioInpus[LE_COMMAND_COUNT];
pin_input_mode_e fsioInpusMode[LE_COMMAND_COUNT];
int unused3[149];
le_formula_t timingMultiplier;
le_formula_t timingAdditive;

View File

@ -262,5 +262,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 20150114;
return 20150115;
}