Detected gear is ok, but current gear is 0 fix #6986
renaming to "TCU: Current Gear" and hiding
This commit is contained in:
parent
9ade4ade6e
commit
c9318621a0
|
@ -2157,11 +2157,6 @@ end_struct
|
|||
#define GAUGE_NAME_VVT_TARGET_B2I "VVT: bank 2 intake target"
|
||||
#define GAUGE_NAME_VVT_TARGET_B2E "VVT: bank 2 exhaust target"
|
||||
|
||||
#define GAUGE_NAME_DESIRED_GEAR "Desired Gear"
|
||||
#define GAUGE_NAME_CURRENT_GEAR "Current Gear"
|
||||
#define GAUGE_NAME_ISS "Input Shaft Speed"
|
||||
#define GAUGE_NAME_TC_RATIO "Torque Converter Ratio"
|
||||
|
||||
#define GAUGE_NAME_VVS "Vehicle Speed"
|
||||
#define GAUGE_NAME_GEAR_RATIO "Gearbox Ratio"
|
||||
#define GAUGE_NAME_DETECTED_GEAR "Detected Gear"
|
||||
|
@ -2388,6 +2383,7 @@ end_struct
|
|||
#define ts_show_onboard_accelerometer false
|
||||
#define ts_show_vvt_output true
|
||||
#define show_vvt_output_pin true
|
||||
#define show_tcu_gauges false
|
||||
#define ts_show_intake_vvt_direction true
|
||||
! LAME! todo make this way less lame
|
||||
#define ts_show_cylinder_2 true
|
||||
|
|
|
@ -67,7 +67,7 @@
|
|||
#define GAUGE_NAME_VVT_TARGET_B2E "VVT: bank 2 exhaust target"
|
||||
|
||||
#define GAUGE_NAME_DESIRED_GEAR "TCU: Desired Gear"
|
||||
#define GAUGE_NAME_CURRENT_GEAR "Current Gear"
|
||||
#define GAUGE_NAME_CURRENT_GEAR "TCU: Current Gear"
|
||||
#define GAUGE_NAME_ISS "TCU: Input Shaft Speed"
|
||||
#define GAUGE_NAME_TC_RATIO "TCU: Torque Converter Ratio"
|
||||
|
||||
|
|
|
@ -1710,12 +1710,12 @@ gaugeCategory = Sensors - Raw
|
|||
issEdgeCounterGauge = issEdgeCounter, "Raw ISS", "counter", 0, 5, 0, 0, 5, 5, 0, 0
|
||||
|
||||
gaugeCategory = Transmission
|
||||
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
|
||||
desiredGearGauge = tcuDesiredGear, @@GAUGE_NAME_DESIRED_GEAR@@, "gear", -1, 10, -1, -1, 10, 10, 0, 0@@if_show_tcu_gauges
|
||||
currentGearGauge = tcuCurrentGear, @@GAUGE_NAME_CURRENT_GEAR@@, "gear", -1, 10, -1, -1, 10, 10, 0, 0@@if_show_tcu_gauges
|
||||
detectedGearGauge = detectedGear, @@GAUGE_NAME_DETECTED_GEAR@@, "gear", 0, @@TCU_GEAR_COUNT@@, 0, 0, @@TCU_GEAR_COUNT@@, @@TCU_GEAR_COUNT@@, 0, 0
|
||||
speedToRpmRatioGauge = speedToRpmRatio, @@GAUGE_NAME_GEAR_RATIO@@, "", 0, 100, 0, 0, 100, 100, 4, 4
|
||||
ISSGauge = ISSValue, @@GAUGE_NAME_ISS@@, "RPM", 0, {rpmHardLimit + 2000}, 200, {cranking_rpm}, {rpmHardLimit - 500}, {rpmHardLimit}, 0, 0
|
||||
tcRatioGauge = tcRatio, @@GAUGE_NAME_TC_RATIO@@, "", 0, 100, 0, 0, 100, 100, 4, 4
|
||||
ISSGauge = ISSValue, @@GAUGE_NAME_ISS@@, "RPM", 0, {rpmHardLimit + 2000}, 200, {cranking_rpm}, {rpmHardLimit - 500}, {rpmHardLimit}, 0, 0@@if_show_tcu_gauges
|
||||
tcRatioGauge = tcRatio, @@GAUGE_NAME_TC_RATIO@@, "", 0, 100, 0, 0, 100, 100, 4, 4@@if_show_tcu_gauges
|
||||
shiftTimeGauge = lastShiftTime, "Last Shift Time", "S", 0, 2, 0, 0, 2, 2, 4, 4
|
||||
idealEngineTorqueGauge = idealEngineTorque, "idealEngineTorque", "", 0, 100, 0, 0, 100, 100, 4, 4
|
||||
pressureControlGauge = pressureControlDuty, "EPC Duty Cycle", "%", 0, 100, 0, 0, 100, 100, 0, 0
|
||||
|
|
Loading…
Reference in New Issue