auto-sync
This commit is contained in:
parent
c8cffa39dc
commit
e0d1912d72
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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";
|
||||
|
|
|
@ -23,7 +23,6 @@ import java.util.Hashtable;
|
|||
*/
|
||||
|
||||
public class SensorGauge {
|
||||
|
||||
public static Component createGauge(final Sensor sensor) {
|
||||
return createGauge(sensor, GaugeChangeListener.VOID);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue