auto-sync

This commit is contained in:
rusEfi 2014-09-29 17:02:56 -05:00
parent 94d3a7e501
commit 9692652ea0
3 changed files with 2 additions and 6 deletions

View File

@ -77,10 +77,6 @@ public class LinkManager {
connector.connect();
}
public static void stop() {
// connector.stop();
}
public static void send(String command) throws InterruptedException {
if (connector == null)
throw new NullPointerException("connector");

View File

@ -19,7 +19,7 @@ import javax.swing.*;
* @see WavePanel
*/
public class Launcher extends FrameHelper {
public static final int CONSOLE_VERSION = 20140914;
public static final int CONSOLE_VERSION = 20140929;
public static final boolean SHOW_STIMULATOR = true;
private final String port;

View File

@ -7,6 +7,6 @@ package com.rusefi.ui.widgets;
public class WaveInfoPanel extends BooleanFlagControlPanel {
public WaveInfoPanel(final int index) {
super("wave" + index, "active on low");
installCommand("wm " + index + " ");
installCommand("set_logic_input_mode " + index + " ");
}
}