From a5e7e3e13cceea78d0723097c1559800ab4523ea Mon Sep 17 00:00:00 2001 From: rusefillc Date: Sat, 14 Jan 2023 22:57:14 -0500 Subject: [PATCH] logging of live data structs was: data points, we are moving away from debug mode #3614 --- firmware/console/binary/output_channels.txt | 2 +- .../src/main/java/com/rusefi/ConfigFieldImpl.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/firmware/console/binary/output_channels.txt b/firmware/console/binary/output_channels.txt index d5d8693fea..08521b0da1 100644 --- a/firmware/console/binary/output_channels.txt +++ b/firmware/console/binary/output_channels.txt @@ -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 diff --git a/java_tools/configuration_definition/src/main/java/com/rusefi/ConfigFieldImpl.java b/java_tools/configuration_definition/src/main/java/com/rusefi/ConfigFieldImpl.java index 5d2049036e..7f79fb4ba3 100644 --- a/java_tools/configuration_definition/src/main/java/com/rusefi/ConfigFieldImpl.java +++ b/java_tools/configuration_definition/src/main/java/com/rusefi/ConfigFieldImpl.java @@ -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);