making migration seamless on useRunningMathForCranking
This commit is contained in:
parent
d722146e1e
commit
1c4dfcab6e
|
@ -333,7 +333,7 @@ bit absoluteFuelPressure;+If your fuel regulator does not have vacuum line
|
|||
bit launchControlEnabled;
|
||||
bit rollingLaunchEnabled;
|
||||
bit antiLagEnabled;
|
||||
bit useFixedMsForCranking,Fixed,Fuel Map;
|
||||
bit useRunningMathForCranking,Fixed,Fuel Map;
|
||||
bit issue_294_25;
|
||||
bit issue_294_26;
|
||||
bit issue_294_27;
|
||||
|
|
|
@ -2350,8 +2350,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = crankingFuel, "Fuel"
|
||||
field = "Injection mode", crankingInjectionMode
|
||||
field = "!Value '1' is currently recommended"
|
||||
field = "Fuel Source For Cranking", cranking_baseFuel, {useFixedMsForCranking == 1}
|
||||
field = "Base fuel pulse width", cranking_baseFuel
|
||||
field = "Fuel Source For Cranking", useRunningMathForCranking
|
||||
field = "Base fuel pulse width", cranking_baseFuel, {useRunningMathForCranking == 0}
|
||||
|
||||
dialog = crankingIAC, "IAC"
|
||||
field = "Cranking IAC position", crankingIACposition
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config.generated;
|
||||
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration\rusefi_config.txt Sat Feb 15 19:16:46 EST 2020
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on integration\rusefi_config.txt Sun Feb 16 16:11:34 EST 2020
|
||||
|
||||
// by class com.rusefi.output.FileJavaFieldsConsumer
|
||||
import com.rusefi.config.*;
|
||||
|
@ -1421,7 +1421,6 @@ public class Fields {
|
|||
public static final int useConstantDwellDuringCranking_offset = 1464;
|
||||
public static final int useETBforIdleControl_offset = 744;
|
||||
public static final int useFixedBaroCorrFromMap_offset = 1476;
|
||||
public static final int useFixedMsForCranking_offset = 76;
|
||||
public static final int useFSIO10ForServo3_offset = 1464;
|
||||
public static final int useFSIO11ForServo4_offset = 1464;
|
||||
public static final int useFSIO12ForIdleOffset_offset = 1464;
|
||||
|
@ -1443,6 +1442,7 @@ public class Fields {
|
|||
public static final int useLinearIatSensor_offset = 1464;
|
||||
public static final int useNoiselessTriggerDecoder_offset = 744;
|
||||
public static final int useOnlyRisingEdgeForTrigger_offset = 1476;
|
||||
public static final int useRunningMathForCranking_offset = 76;
|
||||
public static final int useSeparateAdvanceForCranking_offset = 1476;
|
||||
public static final int useSeparateAdvanceForIdle_offset = 1476;
|
||||
public static final int useSeparateVeForIdle_offset = 1476;
|
||||
|
@ -1505,7 +1505,7 @@ public class Fields {
|
|||
public static final Field LAUNCHCONTROLENABLED = Field.create("LAUNCHCONTROLENABLED", 76, FieldType.BIT, 20);
|
||||
public static final Field ROLLINGLAUNCHENABLED = Field.create("ROLLINGLAUNCHENABLED", 76, FieldType.BIT, 21);
|
||||
public static final Field ANTILAGENABLED = Field.create("ANTILAGENABLED", 76, FieldType.BIT, 22);
|
||||
public static final Field USEFIXEDMSFORCRANKING = Field.create("USEFIXEDMSFORCRANKING", 76, FieldType.BIT, 23);
|
||||
public static final Field USERUNNINGMATHFORCRANKING = Field.create("USERUNNINGMATHFORCRANKING", 76, FieldType.BIT, 23);
|
||||
public static final Field ISSUE_294_25 = Field.create("ISSUE_294_25", 76, FieldType.BIT, 24);
|
||||
public static final Field ISSUE_294_26 = Field.create("ISSUE_294_26", 76, FieldType.BIT, 25);
|
||||
public static final Field ISSUE_294_27 = Field.create("ISSUE_294_27", 76, FieldType.BIT, 26);
|
||||
|
@ -2413,7 +2413,7 @@ public class Fields {
|
|||
LAUNCHCONTROLENABLED,
|
||||
ROLLINGLAUNCHENABLED,
|
||||
ANTILAGENABLED,
|
||||
USEFIXEDMSFORCRANKING,
|
||||
USERUNNINGMATHFORCRANKING,
|
||||
ISSUE_294_25,
|
||||
ISSUE_294_26,
|
||||
ISSUE_294_27,
|
||||
|
|
Loading…
Reference in New Issue