diff --git a/firmware/controllers/algo/engine_configuration_generated_structures.h b/firmware/controllers/algo/engine_configuration_generated_structures.h index 2c0f5e0cb6..483ad97121 100644 --- a/firmware/controllers/algo/engine_configuration_generated_structures.h +++ b/firmware/controllers/algo/engine_configuration_generated_structures.h @@ -1,4 +1,4 @@ -// this section was generated by config_definition.jar on Fri May 29 23:04:33 EDT 2015 +// this section was generated by config_definition.jar on Sat May 30 13:04:24 EDT 2015 // begin #include "rusefi_types.h" typedef struct { @@ -279,7 +279,7 @@ typedef struct { */ idle_hardware_s idle; /** - * value between 0 and 100 + * value between 0 and 100 used in Manual mode * offset 20 */ float idlePosition; @@ -1398,4 +1398,4 @@ typedef struct { } persistent_config_s; // end -// this section was generated by config_definition.jar on Fri May 29 23:04:33 EDT 2015 +// this section was generated by config_definition.jar on Sat May 30 13:04:24 EDT 2015 diff --git a/firmware/integration/rusefi_config.txt b/firmware/integration/rusefi_config.txt index 33a0774f38..23c3e4c895 100644 --- a/firmware/integration/rusefi_config.txt +++ b/firmware/integration/rusefi_config.txt @@ -310,7 +310,7 @@ struct_no_prefix board_configuration_s idle_hardware_s idle; - float idlePosition;value between 0 and 100;"%", 1, 0, 0, 100, 0 + float idlePosition;value between 0 and 100 used in Manual mode;"%", 1, 0, 0, 100, 0 brain_pin_e fuelPumpPin; pin_output_mode_e fuelPumpPinMode; @@ -486,6 +486,7 @@ bit cutSparkOnHardLimit bit hasFrequencyReportingMapSensor; adc_channel_e hipOutputChannel; +custom idle_mode_e 4 bits, U32, @OFFSET@, [0:0], "false", "true" idle_mode_e idleMode; bit isInjectionEnabled @@ -509,7 +510,7 @@ bit hasFrequencyReportingMapSensor; uint32_t engineChartSize;;"count", 1, 0, 0, 300, 0 - int targetIdleRpm; + int targetIdleRpm;;"RPM", 1, 0, 0, 7000, 0 adc_channel_e acSwitchAdc;A/C button input handled as analog input diff --git a/java_console/models/src/com/rusefi/core/Sensor.java b/java_console/models/src/com/rusefi/core/Sensor.java index a7feb09696..98a647fbb3 100644 --- a/java_console/models/src/com/rusefi/core/Sensor.java +++ b/java_console/models/src/com/rusefi/core/Sensor.java @@ -24,6 +24,7 @@ public enum Sensor { MAF("MAF", SensorCategory.SENSOR_INPUTS, "Volts", 4), MAFR("MAFR", SensorCategory.SENSOR_INPUTS, "kg/hr", 4), TPS("throttle", SensorCategory.SENSOR_INPUTS, "%", 100), + PPS("pedal", SensorCategory.SENSOR_INPUTS, "%", 100), VSS("Speed", SensorCategory.SENSOR_INPUTS, "kph", 100), ENGINE_LOAD("Engine Load", SensorCategory.SENSOR_INPUTS, "x", 300), diff --git a/java_console/models/src/com/rusefi/core/SensorCentral.java b/java_console/models/src/com/rusefi/core/SensorCentral.java index 2781cf22f4..ccb815c4f6 100644 --- a/java_console/models/src/com/rusefi/core/SensorCentral.java +++ b/java_console/models/src/com/rusefi/core/SensorCentral.java @@ -178,6 +178,7 @@ public class SensorCentral { addDoubleSensor("baro", Sensor.BARO, es); addDoubleSensor("clt", Sensor.CLT, es); addDoubleSensor("tp", Sensor.TPS, es); + addDoubleSensor("pps", Sensor.TPS, es); addDoubleSensor(Sensor.VSS, es); addDoubleSensor(Sensor.ENGINE_LOAD, es); diff --git a/java_console/ui/src/com/rusefi/Launcher.java b/java_console/ui/src/com/rusefi/Launcher.java index c355a98757..7ba36280d7 100644 --- a/java_console/ui/src/com/rusefi/Launcher.java +++ b/java_console/ui/src/com/rusefi/Launcher.java @@ -32,7 +32,7 @@ import static com.rusefi.ui.storage.PersistentConfiguration.getConfig; * @see com.rusefi.StartupFrame */ public class Launcher { - public static final int CONSOLE_VERSION = 20150529; + public static final int CONSOLE_VERSION = 20150530; public static final boolean SHOW_STIMULATOR = false; private static final String TAB_INDEX = "main_tab"; protected static final String PORT_KEY = "port"; diff --git a/java_console/ui/src/com/rusefi/ui/widgets/SensorGauge.java b/java_console/ui/src/com/rusefi/ui/widgets/SensorGauge.java index 454d7d635d..363b05b2c0 100644 --- a/java_console/ui/src/com/rusefi/ui/widgets/SensorGauge.java +++ b/java_console/ui/src/com/rusefi/ui/widgets/SensorGauge.java @@ -23,7 +23,6 @@ import java.util.Hashtable; */ public class SensorGauge { - public static Component createGauge(final Sensor sensor) { return createGauge(sensor, GaugeChangeListener.VOID); }