From 850c98acaa1b920c4f367fd9f6863aa5f0e64d37 Mon Sep 17 00:00:00 2001 From: rusEfi Date: Mon, 24 Apr 2017 22:43:29 -0400 Subject: [PATCH] dizzybench --- firmware/controllers/injector_central.cpp | 2 +- java_console/ui/src/com/rusefi/BenchTestPane.java | 13 ++++++++++++- java_console/ui/src/com/rusefi/Launcher.java | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/firmware/controllers/injector_central.cpp b/firmware/controllers/injector_central.cpp index e5890a77fd..392a64fed8 100644 --- a/firmware/controllers/injector_central.cpp +++ b/firmware/controllers/injector_central.cpp @@ -316,7 +316,7 @@ void initInjectorCentral(Logging *sharedLogger) { addConsoleAction("fuelpumpbench", fuelPumpBench); addConsoleActionS("fuelpumpbench2", fuelPumpBenchExt); addConsoleAction("fanbench", fanBench); - addConsoleAction("dizzybench", dizzyBench); + addConsoleAction("dizzybench", dizzyBench); // this is useful for tach output testing addConsoleAction("milbench", milBench); addConsoleActionSSS("fuelbench", fuelbench); diff --git a/java_console/ui/src/com/rusefi/BenchTestPane.java b/java_console/ui/src/com/rusefi/BenchTestPane.java index 39eb76c700..6e43ae56d9 100644 --- a/java_console/ui/src/com/rusefi/BenchTestPane.java +++ b/java_console/ui/src/com/rusefi/BenchTestPane.java @@ -23,6 +23,7 @@ public class BenchTestPane { content.add(createInjectorTest()); content.add(createMILTest()); content.add(createIdleTest()); + content.add(createDizzyTest()); content.add(new MessagesView().messagesScroll); } @@ -37,7 +38,7 @@ public class BenchTestPane { } private Component createIdleTest() { - BenchTestPanel panel = new BenchTestPanel("Idle Valve", ("idle_valve.png")) { + BenchTestPanel panel = new BenchTestPanel("Idle Valve", "idle_valve.png") { @NotNull protected String getCommand() { return "idlebench"; @@ -46,6 +47,16 @@ public class BenchTestPane { return panel.getContent(); } + private Component createDizzyTest() { + BenchTestPanel panel = new BenchTestPanel("Dizzy", "todo_image.png") { + @NotNull + protected String getCommand() { + return "dizzybench"; + } + }; + return panel.getContent(); + } + private Component createFanTest() { BenchTestPanel panel = new BenchTestPanel("Radiator Fan", "radiator_fan.jpg") { @NotNull diff --git a/java_console/ui/src/com/rusefi/Launcher.java b/java_console/ui/src/com/rusefi/Launcher.java index 64dd11ab5c..ac9b7d6d09 100644 --- a/java_console/ui/src/com/rusefi/Launcher.java +++ b/java_console/ui/src/com/rusefi/Launcher.java @@ -44,7 +44,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig; * @see EngineSnifferPanel */ public class Launcher { - public static final int CONSOLE_VERSION = 20170324; + public static final int CONSOLE_VERSION = 20170424; public static final boolean SHOW_STIMULATOR = false; private static final String TAB_INDEX = "main_tab"; protected static final String PORT_KEY = "port";