fixing console runtime :(

This commit is contained in:
rusefi 2020-04-10 15:31:54 -04:00
parent 6a94a58796
commit 3acc5e5ba5
4 changed files with 7 additions and 3 deletions

View File

@ -49,7 +49,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig;
* @see EngineSnifferPanel
*/
public class Launcher {
public static final int CONSOLE_VERSION = 20200328;
public static final int CONSOLE_VERSION = 20200410;
public static final String INI_FILE_PATH = System.getProperty("ini_file_path", "..");
public static final String INPUT_FILES_PATH = System.getProperty("input_files_path", "..");
public static final String TOOLS_PATH = System.getProperty("tools_path", ".");

View File

@ -3,6 +3,7 @@ package com.rusefi.ldmp.generated;
import com.rusefi.ldmp.*;
public class ElectronicThrottleMeta {
/* todo: restore this functionality
public static final Request[] CONTENT = new Request[]{
new IfRequest("Engine", "hasEtbPedalPositionSensor",
new Request[]{
@ -41,4 +42,5 @@ public class ElectronicThrottleMeta {
new TextRequest("No_Pedal_Sensor"),
}),
};
*/
}

View File

@ -59,7 +59,8 @@ public class EtbCommandsPanel {
content.add(mockPpsPanel);
content.add(LiveDocPanel.createPanel("ETB", ElectronicThrottleMeta.CONTENT));
// todo: restore this functionality
// content.add(LiveDocPanel.createPanel("ETB", ElectronicThrottleMeta.CONTENT));
content.add(new EnumConfigField(Fields.DEBUGMODE, "Debug Mode").getContent());

View File

@ -223,7 +223,8 @@ public class LiveDocPanel {
liveDocs.add(createPanel("Idle", IdleThreadMeta.CONTENT), CONSTRAINTS);
liveDocs.add(createPanel("ETB", ElectronicThrottleMeta.CONTENT), CONSTRAINTS);
// todo: restore this functionality
// liveDocs.add(createPanel("ETB", ElectronicThrottleMeta.CONTENT), CONSTRAINTS);
return liveDocs;
}