From 0ea6c9a41b6662be4ea6f58c5307b51e67f57232 Mon Sep 17 00:00:00 2001 From: rusefi Date: Sat, 21 Dec 2019 13:33:26 -0500 Subject: [PATCH] bugfix - MAP was broken in console due to wrong offset --- java_console/models/src/com/rusefi/core/Sensor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java_console/models/src/com/rusefi/core/Sensor.java b/java_console/models/src/com/rusefi/core/Sensor.java index 5a46bf422c..99737d20c8 100644 --- a/java_console/models/src/com/rusefi/core/Sensor.java +++ b/java_console/models/src/com/rusefi/core/Sensor.java @@ -37,7 +37,7 @@ public enum Sensor { // air flow/mass measurement MAF("MAF", SensorCategory.SENSOR_INPUTS, FieldType.UINT16, 26, 0.001, BackgroundColor.MUD, 0, 5, "Volts"), - MAP("MAP", SensorCategory.SENSOR_INPUTS, FieldType.UINT16, 28, 1.0 / MAGIC_30_PACKING_MULT, BackgroundColor.MUD, 20, 300, "kPa"), + MAP("MAP", SensorCategory.SENSOR_INPUTS, FieldType.UINT16, 30, 1.0 / MAGIC_30_PACKING_MULT, BackgroundColor.MUD, 20, 300, "kPa"), AFR("A/F ratio", SensorCategory.SENSOR_INPUTS, FieldType.UINT16, /*offset */ 34, 0.001, BackgroundColor.MUD, 10, 20, "afr"),