diff --git a/firmware/integration/rusefi_config.txt b/firmware/integration/rusefi_config.txt index 4e2f4af797..b6fd055a60 100644 --- a/firmware/integration/rusefi_config.txt +++ b/firmware/integration/rusefi_config.txt @@ -1765,6 +1765,9 @@ end_struct #define GAUGE_NAME_VVT_B2I "VVT: bank 2 intake" #define GAUGE_NAME_VVT_B2E "VVT: bank 2 exhaust" +#define GAUGE_NAME_DESIRED_GEAR "Desired Gear" +#define GAUGE_NAME_CURRENT_GEAR "Current Gear" + #define GAUGE_NAME_TIMING_ADVANCE "timing" #define GAUGE_NAME_VVS "Vehicle Speed" #define GAUGE_NAME_VBAT "VBatt" diff --git a/firmware/tunerstudio/rusefi.input b/firmware/tunerstudio/rusefi.input index cec69bffe8..0bde8055a1 100644 --- a/firmware/tunerstudio/rusefi.input +++ b/firmware/tunerstudio/rusefi.input @@ -1112,8 +1112,8 @@ gaugeCategory = Sensors - Raw rawHighFuelPressureGauge = rawHighFuelPressure,"Raw fuel pressure (high) voltage","V", 0, 5, 0, 0, 5, 5, 3, 0 gaugeCategory = Transmission - desiredGearGauge = tcuDesiredGear, "Desired", "gear", -1, 10, -1, -1, 10, 10, 0, 0 - currentGearGauge = tcuCurrentGear, "Current", "gear", -1, 10, -1, -1, 10, 10, 0, 0 + desiredGearGauge = tcuDesiredGear, @@GAUGE_NAME_DESIRED_GEAR@@, "gear", -1, 10, -1, -1, 10, 10, 0, 0 + currentGearGauge = tcuCurrentGear, @@GAUGE_NAME_CURRENT_GEAR@@, "gear", -1, 10, -1, -1, 10, 10, 0, 0 gaugeCategory = Knock knock1Gauge = knock1, "Knock Cyl 1", "dBv", -60, 10, -60, -60, 10, 10, 0, 0 @@ -1366,8 +1366,8 @@ gaugeCategory = DynoView entry = etbTarget, "ETB Target", float, "%.3f" ; Transmission - entry = tcuDesiredGear, "Desired Gear", int, "%d" - entry = tcuCurrentGear, "Current Gear", int, "%d" + entry = tcuDesiredGear, @@GAUGE_NAME_DESIRED_GEAR@@, int, "%d" + entry = tcuCurrentGear, @@GAUGE_NAME_CURRENT_GEAR@@, int, "%d" entry = knock1, "Knock 1", int, "%d" entry = knock2, "Knock 2", int, "%d"