sorry not real work

This commit is contained in:
rusefi 2018-10-12 15:03:21 -04:00
parent dfd6a1e98a
commit df0ae75d94
28 changed files with 29 additions and 29 deletions

View File

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

View File

@ -5,7 +5,7 @@ import com.rusefi.config.Fields;
/** /**
* Air/Fuel ratio data point * Air/Fuel ratio data point
* *
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 2/23/2016. * 2/23/2016.
*/ */
public class AfrDataPoint { public class AfrDataPoint {

View File

@ -3,7 +3,7 @@ package com.rusefi.autotune;
import java.util.Collection; import java.util.Collection;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 2/18/2016. * 2/18/2016.
*/ */
public interface FuelAutoLogic { public interface FuelAutoLogic {

View File

@ -8,7 +8,7 @@ import static com.rusefi.config.Fields.FUEL_RPM_COUNT;
/** /**
* 1/5/2016 * 1/5/2016
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public enum FuelAutoTune implements FuelAutoLogic { public enum FuelAutoTune implements FuelAutoLogic {
INSTANCE; INSTANCE;

View File

@ -3,7 +3,7 @@ package com.rusefi.autotune;
import java.util.Collection; import java.util.Collection;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 2/18/2016. * 2/18/2016.
*/ */
public enum FuelAutoTune2 implements FuelAutoLogic { public enum FuelAutoTune2 implements FuelAutoLogic {

View File

@ -3,7 +3,7 @@ package com.rusefi.autotune;
import java.util.Arrays; import java.util.Arrays;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 2/18/2016. * 2/18/2016.
*/ */
public class MathUtil { public class MathUtil {

View File

@ -1,7 +1,7 @@
package com.rusefi.autotune; package com.rusefi.autotune;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 2/23/2016. * 2/23/2016.
*/ */
public class Result { public class Result {

View File

@ -12,7 +12,7 @@ import static com.rusefi.autotune.test.FuelAutoTuneTest.createVeTable;
/** /**
* 2/23/2016 * 2/23/2016
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class FuelAutoTune2Test { public class FuelAutoTune2Test {

View File

@ -11,7 +11,7 @@ import static org.junit.Assert.assertEquals;
/** /**
* 1/5/2016 * 1/5/2016
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class FuelAutoTuneTest { public class FuelAutoTuneTest {
private static final double EPS = 0.00001; private static final double EPS = 0.00001;

View File

@ -10,7 +10,7 @@ public class Main {
public static void main(String[] args) { public static void main(String[] args) {
System.out.println("OpenSR5 - load/program tune via serial port utility"); System.out.println("OpenSR5 - load/program tune via serial port utility");
System.out.println(" (c) 2017 Andrey Belomutskiy"); System.out.println(" (c) Andrey Belomutskiy 2013-2018");
System.out.println(" https://github.com/rusefi/opensr5_flash"); System.out.println(" https://github.com/rusefi/opensr5_flash");
System.out.flush(); System.out.flush();

View File

@ -3,7 +3,7 @@ package com.rusefi;
import com.rusefi.io.LinkManager; import com.rusefi.io.LinkManager;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 2/22/2015 * 2/22/2015
*/ */
public class CmdLine { public class CmdLine {

View File

@ -8,7 +8,7 @@ import java.util.List;
/** /**
* http://rusefi.com/wiki/index.php?title=Manual:Flexible_Logic * http://rusefi.com/wiki/index.php?title=Manual:Flexible_Logic
* <p/> * <p/>
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 1/19/2017 * 1/19/2017
*/ */
public class CompileTool { public class CompileTool {

View File

@ -39,7 +39,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* <p/> * <p/>
* <p/> * <p/>
* 12/25/12 * 12/25/12
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* *
* @see StartupFrame * @see StartupFrame
* @see EngineSnifferPanel * @see EngineSnifferPanel

View File

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

View File

@ -14,7 +14,7 @@ import java.io.IOException;
import java.io.Writer; import java.io.Writer;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 4/15/2016. * 4/15/2016.
*/ */
public class SensorLogger { public class SensorLogger {

View File

@ -20,7 +20,7 @@ import java.util.List;
/** /**
* Date: 12/21/13 * Date: 12/21/13
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class SensorSnifferPane { public class SensorSnifferPane {
private static final String HELP_URL = "http://rusefi.com/wiki/index.php?title=Manual:DevConsole#Analog_Chart"; private static final String HELP_URL = "http://rusefi.com/wiki/index.php?title=Manual:DevConsole#Analog_Chart";

View File

@ -39,7 +39,7 @@ public class StartupFrame {
// todo: figure out a better way to work with absolute path // todo: figure out a better way to work with absolute path
private static final String APPICON = "appicon.png"; private static final String APPICON = "appicon.png";
private static final String LOGO = "logo.gif"; private static final String LOGO = "logo.gif";
private static final String LINK_TEXT = "rusEfi (c) 2012-2017"; public static final String LINK_TEXT = "rusEfi (c) 2012-2018";
private static final String URI = "http://rusefi.com/?java_console"; private static final String URI = "http://rusefi.com/?java_console";
private static final String VCP_DRIVER_TEXT = "vcp driver"; private static final String VCP_DRIVER_TEXT = "vcp driver";
private static final String VCP_DRIVER_URI = "http://www.st.com/st-web-ui/static/active/en/st_prod_software_internet/resource/technical/software/driver/stsw-stm32102.zip"; private static final String VCP_DRIVER_URI = "http://www.st.com/st-web-ui/static/active/en/st_prod_software_internet/resource/technical/software/driver/stsw-stm32102.zip";

View File

@ -19,13 +19,13 @@ import java.util.List;
* This utility produces images of trigger signals supported by rusEfi * This utility produces images of trigger signals supported by rusEfi
* *
* 06/23/15 * 06/23/15
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class TriggerImage { public class TriggerImage {
private static final String TRIGGERTYPE = "TRIGGERTYPE"; private static final String TRIGGERTYPE = "TRIGGERTYPE";
private static final String OUTPUT_FOLDER = "triggers"; private static final String OUTPUT_FOLDER = "triggers";
private static final String INPUT_FILE_NAME = "triggers.txt"; private static final String INPUT_FILE_NAME = "triggers.txt";
private static final String TOP_MESSAGE = "(c) rusEfi 2013-2017"; private static final String TOP_MESSAGE = StartupFrame.LINK_TEXT;
private static final String DEFAULT_WORK_FOLDER = ".." + File.separator + "unit_tests"; private static final String DEFAULT_WORK_FOLDER = ".." + File.separator + "unit_tests";
/** /**
* number of extra frames * number of extra frames

View File

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

View File

@ -6,7 +6,7 @@ import javax.swing.*;
import java.awt.event.ActionEvent; import java.awt.event.ActionEvent;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class EraseChip extends ProcessStatusWindow { public class EraseChip extends ProcessStatusWindow {
private static final String FLASH_SIZE = "0x0100000"; private static final String FLASH_SIZE = "0x0100000";

View File

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

View File

@ -5,7 +5,7 @@ import com.rusefi.ui.StatusWindow;
import java.io.*; import java.io.*;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class ProcessStatusWindow { public class ProcessStatusWindow {

View File

@ -22,7 +22,7 @@ import java.awt.event.ActionListener;
import java.awt.image.BufferedImage; import java.awt.image.BufferedImage;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class FormulasPane { public class FormulasPane {
private static final String NL = "\r\n \\\\ "; private static final String NL = "\r\n \\\\ ";

View File

@ -32,7 +32,7 @@ import java.util.Date;
import java.util.List; import java.util.List;
/** /**
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* 1/9/2016 * 1/9/2016
* *
* @see FuelAutoTune * @see FuelAutoTune

View File

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

View File

@ -30,7 +30,7 @@ import java.util.List;
* <p/> * <p/>
* <p/> * <p/>
* Date: 6/23/13 * Date: 6/23/13
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
* *
* @see EngineSnifferStatusPanel status bar * @see EngineSnifferStatusPanel status bar
* @see com.rusefi.ui.test.WavePanelSandbox * @see com.rusefi.ui.test.WavePanelSandbox

View File

@ -16,7 +16,7 @@ import java.util.Map;
* <p/> * <p/>
* <p/> * <p/>
* Date: 12/26/13 * Date: 12/26/13
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
public class EngineSnifferStatusPanel { public class EngineSnifferStatusPanel {
public final JPanel infoPanel = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0)); public final JPanel infoPanel = new JPanel(new FlowLayout(FlowLayout.LEFT, 0, 0));

View File

@ -11,7 +11,7 @@ import java.awt.event.KeyEvent;
/** /**
* 7/7/13 * 7/7/13
* (c) Andrey Belomutskiy 2013-2017 * (c) Andrey Belomutskiy 2013-2018
*/ */
class ZoomControl extends JPanel { class ZoomControl extends JPanel {
private double value; private double value;