Please advise.
On the dashboard gear display, parking is shown as 9, reverse as 10, and neutral as 11.
Could you kindly explain how to change this display in an easy-to-understand manner?
Gears 1 through 7 are displayed perfectly.
The ECU is a LINK G4X, and the 7-speed DCT uses CANTCU.
The modes are Generic Dash 2 and linkecusyort.xml.
I am a beginner regarding CAN.
In link_ecu_short.xml file there is a line:
<value targetId="200" offset="0" length="1"></value> <!-- Gear -->
Replace it with
<value targetId="200" offset="0" length="1" enum="9:P,10:R,11:N"></value> <!-- Gear -->
Looks great, good job.
I’ve been thinking for a long time to make a prototype of steering wheel display that stays horizontal regardless of the steering wheel angle. Realistically you could only use the center 1:1 portion of the screen for the gauges, but it could be a fun project for simulators for example.
1 Like
this is how i have it pull all gears the number is the bit value and that makes it display the gear.
bit value = 11 then gear 7th.
<value name="Shifterposition" startbit="40" bitcount="4" rangeMin="0" rangeMax="12" enum="0:P,1:N,2:R,4:P,5:1,6:2,7:3,8:4,9:5,10:6,11:7,12:8,#:Error"/> <!-- Gear -->
2 Likes
