auto-sync
This commit is contained in:
parent
8f1ae70491
commit
3295b7de5f
|
@ -18,6 +18,7 @@ void setLadaKalina(DECLARE_ENGINE_PARAMETER_F) {
|
|||
setCustomEngineConfiguration(PASS_ENGINE_PARAMETER_F);
|
||||
|
||||
setOperationMode(engineConfiguration, FOUR_STROKE_CRANK_SENSOR);
|
||||
engineConfiguration->trigger.type = TT_60_2_VW;
|
||||
|
||||
|
||||
// starter relay solenoid
|
||||
|
|
|
@ -884,7 +884,7 @@ void resetConfigurationExt(Logging * logger, engine_type_e engineType DECLARE_EN
|
|||
applyNonPersistentConfiguration(logger PASS_ENGINE_PARAMETER);
|
||||
// todo: eliminate triggerShape.operationMode?
|
||||
if (engineConfiguration->operationMode != engine->triggerShape.getOperationMode())
|
||||
firmwareError("operationMode mismatch");
|
||||
firmwareError("operationMode/trigger mismatch");
|
||||
|
||||
#if EFI_TUNER_STUDIO
|
||||
syncTunerStudioCopy();
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package com.rusefi.config;
|
||||
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sat Mar 12 17:59:43 EST 2016
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Mar 20 15:05:16 EDT 2016
|
||||
public class Fields {
|
||||
public static final int LE_COMMAND_LENGTH = 200;
|
||||
public static final int TS_FILE_VERSION = 20160122;
|
||||
public static final int TS_FILE_VERSION = 20160312;
|
||||
public static final int WARMUP_TARGET_AFR_SIZE = 4;
|
||||
public static final int MAP_ANGLE_SIZE = 8;
|
||||
public static final int MAP_WINDOW_SIZE = 8;
|
||||
|
|
|
@ -36,7 +36,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
|||
* @see EngineSnifferPanel
|
||||
*/
|
||||
public class Launcher {
|
||||
public static final int CONSOLE_VERSION = 20160303;
|
||||
public static final int CONSOLE_VERSION = 20160321;
|
||||
public static final boolean SHOW_STIMULATOR = false;
|
||||
private static final String TAB_INDEX = "main_tab";
|
||||
protected static final String PORT_KEY = "port";
|
||||
|
|
|
@ -57,6 +57,8 @@ public class IniFileModel {
|
|||
private void finishDialog() {
|
||||
if (fields.isEmpty())
|
||||
return;
|
||||
if (dialogUiName == null)
|
||||
throw new NullPointerException("dialogUiName for" + fields);
|
||||
dialogs.put(dialogUiName, new DialogModel(dialogId, dialogUiName, fields));
|
||||
|
||||
dialogId = null;
|
||||
|
|
Loading…
Reference in New Issue