logging of live data structs was: data points, we are moving away from debug mode #3614

This commit is contained in:
rusefillc 2023-01-14 22:57:14 -05:00
parent c989b750ff
commit a5e7e3e13c
2 changed files with 2 additions and 2 deletions

View File

@ -103,7 +103,7 @@ uint16_t rpmAcceleration;dRPM;"RPM/s",1, 0, 0, 5, 2
int16_t autoscale tpsAccelFuel;@@GAUGE_NAME_FUEL_TPS_EXTRA@@;"ms",{1/@@PACK_MULT_MS@@}, 0, 0, 0, 3
! Ignition
int16_t autoscale ignitionAdvance;@@GAUGE_NAME_TIMING_ADVANCE@@;"deg",{1/@@PACK_MULT_ANGLE@@}, 0, 0, 0, 1
uint16_t autoscale unusedDwellWasHere
uint16_t unusedDwellWasHere
uint16_t autoscale coilDutyCycle;@@GAUGE_NAME_DWELL_DUTY@@;"%",{1/@@PACK_MULT_PERCENT@@}, 0, 0, 0, 0
! Idle & ETB

View File

@ -340,7 +340,7 @@ public class ConfigFieldImpl implements ConfigField {
return null;
}
if (tsInfo == null)
throw new IllegalArgumentException("tsInfo expected with autoscale");
throw new IllegalArgumentException("tsInfo expected with autoscale: " + this);
String[] tokens = getTokens();
if (tokens.length < 2)
throw new IllegalArgumentException("Second comma-separated token expected in [" + tsInfo + "] for " + name);