auto-sync
This commit is contained in:
parent
f0679835d1
commit
f59c4c4dc6
|
@ -16,7 +16,7 @@
|
||||||
EXTERN_ENGINE;
|
EXTERN_ENGINE;
|
||||||
|
|
||||||
void setMitsubishiConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
void setMitsubishiConfiguration(DECLARE_ENGINE_PARAMETER_F) {
|
||||||
engineConfiguration->engineType = MITSU_4G93;
|
engineConfiguration->engineType = MITSU_4G93; // same trigger as 4G63?
|
||||||
|
|
||||||
engineConfiguration->trigger.type = TT_MITSU;
|
engineConfiguration->trigger.type = TT_MITSU;
|
||||||
|
|
||||||
|
|
|
@ -38,7 +38,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
|
||||||
* @see EngineSnifferPanel
|
* @see EngineSnifferPanel
|
||||||
*/
|
*/
|
||||||
public class Launcher {
|
public class Launcher {
|
||||||
public static final int CONSOLE_VERSION = 20161015;
|
public static final int CONSOLE_VERSION = 20161107;
|
||||||
public static final boolean SHOW_STIMULATOR = false;
|
public static final boolean SHOW_STIMULATOR = false;
|
||||||
private static final String TAB_INDEX = "main_tab";
|
private static final String TAB_INDEX = "main_tab";
|
||||||
protected static final String PORT_KEY = "port";
|
protected static final String PORT_KEY = "port";
|
||||||
|
|
|
@ -135,6 +135,7 @@ public class EngineSnifferPanel {
|
||||||
if (!LinkManager.isLogViewer()) {
|
if (!LinkManager.isLogViewer()) {
|
||||||
JPanel lowerButtons = new JPanel(new FlowLayout(FlowLayout.RIGHT, 5, 0));
|
JPanel lowerButtons = new JPanel(new FlowLayout(FlowLayout.RIGHT, 5, 0));
|
||||||
lowerButtons.add(new BitConfigField(Fields.ISENGINECHARTENABLED, "Collect Engine Data").getContent());
|
lowerButtons.add(new BitConfigField(Fields.ISENGINECHARTENABLED, "Collect Engine Data").getContent());
|
||||||
|
lowerButtons.add(new ConfigField(Fields.SENSORCHARTFREQUENCY, "Frequency").getContent());
|
||||||
lowerButtons.add(new ConfigField(Fields.ENGINECHARTSIZE, "Engine Sniffer size").getContent());
|
lowerButtons.add(new ConfigField(Fields.ENGINECHARTSIZE, "Engine Sniffer size").getContent());
|
||||||
bottomPanel.add(lowerButtons, BorderLayout.NORTH);
|
bottomPanel.add(lowerButtons, BorderLayout.NORTH);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue