auto-sync

This commit is contained in:
rusEfi 2016-01-09 22:01:40 -05:00
parent 78b44b9c36
commit 8a397d707a
14 changed files with 37 additions and 13 deletions

View File

@ -4,7 +4,7 @@ import static com.rusefi.AutoTest.*;
/**
* this test connects to real hardware via serial port
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
* 2/22/2015
*/
public class RealHwTest {

View File

@ -4,7 +4,7 @@ import java.util.Collection;
/**
* 1/5/2016
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*/
public class FuelAutoTune {
private static final int SIZE = 16;

View File

@ -8,7 +8,7 @@ import java.util.List;
/**
* 1/5/2016
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*/
public class FuelAutoTuneTest {

View File

@ -1,7 +1,7 @@
package com.rusefi;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
* 2/22/2015
*/
public class CmdLine {

View File

@ -26,7 +26,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* <p/>
* <p/>
* 12/25/12
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*
* @see StartupFrame
* @see EngineSnifferPanel
@ -44,6 +44,7 @@ public class Launcher {
private final TableEditorPane tableEditor = new TableEditorPane();
private final SettingsTab settingsTab = new SettingsTab();
private final LogDownloader logsManager = new LogDownloader();
private final FuelTunePane fuelTunePane = new FuelTunePane();
FrameHelper frame = new FrameHelper() {
@Override
@ -114,6 +115,8 @@ public class Launcher {
tabbedPane.add("Bench Test", new BenchTestPane().getContent());
if (!LinkManager.isLogViewer() && false) // todo: fix it & better name?
tabbedPane.add("Logs Manager", logsManager.getContent());
if (false)
tabbedPane.add("Fuel Tune", fuelTunePane.getContent());
if (!LinkManager.isLogViewerMode(port)) {
int selectedIndex = getConfig().getRoot().getIntProperty(TAB_INDEX, 2);
@ -144,6 +147,7 @@ public class Launcher {
tableEditor.showContent();
settingsTab.showContent();
logsManager.showContent();
fuelTunePane.showContent();
BinaryProtocolServer.start();
}
});

View File

@ -14,7 +14,7 @@ import java.io.File;
import static com.romraider.editor.ecu.ECUEditorManager.getECUEditor;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
* 3/6/2015
*/
public class RomRaiderWrapper {

View File

@ -19,7 +19,7 @@ import java.util.List;
* This utility produces images of trigger signals supported by rusEfi
*
* 06235/15
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*/
public class TriggerImage {

View File

@ -18,7 +18,7 @@ import java.lang.reflect.InvocationTargetException;
import java.util.concurrent.atomic.AtomicBoolean;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
* 3/7/2015
*/
public class UploadChanges {

View File

@ -4,7 +4,7 @@ import javax.swing.*;
import java.awt.event.ActionEvent;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*/
public class EraseChip extends ProcessStatusWindow {
private final JButton button = new JButton("Erase Chip");

View File

@ -6,7 +6,7 @@ import java.awt.event.ActionListener;
import java.io.*;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
* 2/4/15
*/
public class FirmwareFlasher extends ProcessStatusWindow {

View File

@ -8,7 +8,7 @@ import java.io.InputStream;
import java.io.InputStreamReader;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*/
public class ProcessStatusWindow {
public static boolean isWindows() {

View File

@ -21,7 +21,7 @@ import java.awt.image.BufferedImage;
import static com.rusefi.ui.util.LocalizedMessages.PAUSE;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
*/
public class FormulasPane {
private final JPanel content = new JPanel(new BorderLayout());

View File

@ -0,0 +1,20 @@
package com.rusefi.ui;
import javax.swing.*;
import java.awt.*;
/**
* (c) Andrey Belomutskiy 2013-2016
* 1/9/2016
*/
public class FuelTunePane {
private final JPanel content = new JPanel(new BorderLayout());
public void showContent() {
}
public Component getContent() {
return content;
}
}

View File

@ -9,7 +9,7 @@ import javax.swing.*;
import java.awt.*;
/**
* (c) Andrey Belomutskiy 2013-2015
* (c) Andrey Belomutskiy 2013-2016
* 3/7/2015
*/
public class StatusWindow {