auto-sync

This commit is contained in:
rusEfi 2014-10-09 01:07:01 -05:00
parent 4a1f5d7403
commit b7286292ff
2 changed files with 4 additions and 1 deletions

View File

@ -283,6 +283,9 @@ void setDefaultConfiguration(engine_configuration_s *engineConfiguration, board_
for (int i = 0; i < JOYSTICK_PIN_COUNT; i++) {
boardConfiguration->joystickPins[i] = GPIO_NONE;
}
for (int i = 0; i < LE_COMMAND_COUNT; i++) {
boardConfiguration->le_formulas[i][0] = 0;
}
boardConfiguration->idleValvePin = GPIOE_2;
boardConfiguration->idleValvePinMode = OM_DEFAULT;

View File

@ -241,5 +241,5 @@ void firmwareError(const char *fmt, ...) {
}
int getRusEfiVersion(void) {
return 20141008;
return 20141009;
}