instant MAP into console

This commit is contained in:
rusefillc 2021-11-30 14:34:17 -05:00
parent 102020562c
commit 36c0662685
3 changed files with 5 additions and 1 deletions

View File

@ -152,6 +152,9 @@ public enum Sensor {
accelerationRoll(GAUGE_NAME_ACCEL_ROLL, SensorCategory.SENSOR_INPUTS, FieldType.INT16, 310, 1.0 / PACK_MULT_PERCENT, -30, 30, "deg/s"),
accelerationYaw(GAUGE_NAME_ACCEL_YAW, SensorCategory.SENSOR_INPUTS, FieldType.INT16, 312, 1.0 / PACK_MULT_PERCENT, -30, 30, "deg/s"),
instantMAP("Instant " + GAUGE_NAME_MAP, SensorCategory.SENSOR_INPUTS, FieldType.UINT16, 514, 1.0 / PACK_MULT_PRESSURE, 20, 300, "kPa"),
// Synthetic (console only) channels
ETB_CONTROL_QUALITY("ETB metric", SensorCategory.SNIFFING, "", 100),
;

View File

@ -6,7 +6,7 @@ import java.net.URL;
import java.util.concurrent.atomic.AtomicReference;
public class rusEFIVersion {
public static final int CONSOLE_VERSION = 20211125;
public static final int CONSOLE_VERSION = 20211130;
public static AtomicReference<String> firmwareVersion = new AtomicReference<>("N/A");
public static long classBuildTimeMillis() {

View File

@ -25,6 +25,7 @@ public class SensorLogger {
Sensor.IAT,
Sensor.MAF,
Sensor.MAP,
Sensor.instantMAP,
Sensor.Lambda,
Sensor.PPS,