dizzybench
This commit is contained in:
parent
e1af4e6ec6
commit
850c98acaa
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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";
|
||||
|
|
Loading…
Reference in New Issue