Short coding

Status
Not open for further replies.
   #1  

zip

Verified VCDS User
Verified
Joined
Aug 23, 2019
Messages
15
Reaction score
1
Location
Sweden
VCDS Serial number
C?ID=378361
How do I code a module that uses short code? I know what it looks like in long coding helper but how do I do if I want to code the same module in a car that does not use long coding helper? Does anyone understand what I mean? 🤣

All I want to do is code some simple modules to start with and learn 😊
 
   #2  

PetrolDave

Verified VCDS User
Verified
Joined
Dec 16, 2014
Messages
8,017
Reaction score
7,853
Location
Westbury, UK
VCDS Serial number
C?ID=1423
When you hover over the short coding VCDS will show popup help box with the coding details, read that and add up the options you want/need to calculate the correct coding value.

It's also worth looking at the Ross-Tech wiki page for the car/module.
 
   #3  

zip

Verified VCDS User
Verified
Joined
Aug 23, 2019
Messages
15
Reaction score
1
Location
Sweden
VCDS Serial number
C?ID=378361
When you hover over the short coding VCDS will show popup help box with the coding details, read that and add up the options you want/need to calculate the correct coding value.

It's also worth looking at the Ross-Tech wiki page for the car/module.

Okey, thank you :) Im realy bad when it Comes to bits and bytes. Can i ask you what digit is for bytes and bits? Yeah i know Google is my friend but asking you anyway :) Have a nice Day ✌️
 
   #4  

Mike@Gendan

VCDS Distributor
VCDS Distributor
Joined
Jun 24, 2014
Messages
867
Reaction score
1,081
Location
Swansea, UK
VCDS Serial number
C?ID=57030
Assuming you're still looking at the cluster:
http://wiki.ross-tech.com/wiki/index.php/Audi_A6_(4F)_Instrument_Cluster_(through_MY_2008)#Coding
Code:
????xxx: Options
+0001 = Quattro (Standard)
+0002 = w/o Driver Information System (DIS)
+0004 = Vehicle with Clutch (NO Automatic)
+0008 = Second Tire Size Pair
+0016 = Tire Pressure Monitoring
+0032 = Adaptive Air Suspension
+0064 = Advanced Frontlighting System (AFS)
+0128 = Adaptive Cruse Control (ACC)
+0256 = 70-Liter Fuel Tank (only Front-Wheel-Drive)
+2048 = Switch Option for Bord Computer Levels (MY 2006+)

xxxx?xx: Country
0 = Germany
1 = Rest of World (Left-Hand-Drive)
2 = USA
3 = Canada
4 = Great Britain
5 = Japan (Left-Hand-Drive)
6 = Arabian States
7 = Australia
8 = Rest of World (Right-Hand-Drive)
9 = Japan (Right-Hand-Drive)

xxxxx?x: Seatbelt Warning (3-6 = MY 2005+ only)
0 = No Seatbelt Warning
1 = Seatbelt Warning (EU-NCAP)
2 = Seatbelt Warning (NAR Old)
3 = Seatbelt Warning (NAR New)
4 = Seatbelt Warning (EU-NCAP incl. Passenger)
5 = Seatbelt warning (NAR Old incl. Passenger)
6 = Seatbelt Warning (NAR New incl. Passenger)

xxxxxx?: Illumination
0 = Needles OFF and Scales OFF (Term. 15 ON / Term. 58 OFF)
1 = Needles ON and Scales OFF (Term. 15 ON / Term. 58 OFF)
2 = Needles OFF and Scales ON (Term. 15 ON / Term. 58 OFF)
3 = Needles ON and Scales ON (Term. 15 ON / Term. 58 OFF)

...the ? refers to which digits of the coding the data applies to, so for example the first 4 digits are the options.
Code:
????xxx: Options

The + signifies you add the numbers together of all the systems fitted to the vehicle.
The numeric options increase exponentially, so whatever combination of options you choose will always lead to a unique number.

So if you had Quattro, a clutch and ACC for example, the coding for the first 4 digits would be 0001 + 0004 + 0128 = 0133
Code:
+0001 = Quattro (Standard)
+0004 = Vehicle with Clutch (NO Automatic)
+0128 = Adaptive Cruse Control (ACC)

The other digits are just integer options, so if your car is a Swedish left hand drive model, digit 5 would be 1, etc.
Code:
xxxx?xx: Country
1 = Rest of World (Left-Hand-Drive)
 
  • Like
Reactions: Uwe
   #5  

zip

Verified VCDS User
Verified
Joined
Aug 23, 2019
Messages
15
Reaction score
1
Location
Sweden
VCDS Serial number
C?ID=378361
Assuming you're still looking at the cluster:
http://wiki.ross-tech.com/wiki/index.php/Audi_A6_(4F)_Instrument_Cluster_(through_MY_2008)#Coding
Code:
????xxx: Options
+0001 = Quattro (Standard)
+0002 = w/o Driver Information System (DIS)
+0004 = Vehicle with Clutch (NO Automatic)
+0008 = Second Tire Size Pair
+0016 = Tire Pressure Monitoring
+0032 = Adaptive Air Suspension
+0064 = Advanced Frontlighting System (AFS)
+0128 = Adaptive Cruse Control (ACC)
+0256 = 70-Liter Fuel Tank (only Front-Wheel-Drive)
+2048 = Switch Option for Bord Computer Levels (MY 2006+)

xxxx?xx: Country
0 = Germany
1 = Rest of World (Left-Hand-Drive)
2 = USA
3 = Canada
4 = Great Britain
5 = Japan (Left-Hand-Drive)
6 = Arabian States
7 = Australia
8 = Rest of World (Right-Hand-Drive)
9 = Japan (Right-Hand-Drive)

xxxxx?x: Seatbelt Warning (3-6 = MY 2005+ only)
0 = No Seatbelt Warning
1 = Seatbelt Warning (EU-NCAP)
2 = Seatbelt Warning (NAR Old)
3 = Seatbelt Warning (NAR New)
4 = Seatbelt Warning (EU-NCAP incl. Passenger)
5 = Seatbelt warning (NAR Old incl. Passenger)
6 = Seatbelt Warning (NAR New incl. Passenger)

xxxxxx?: Illumination
0 = Needles OFF and Scales OFF (Term. 15 ON / Term. 58 OFF)
1 = Needles ON and Scales OFF (Term. 15 ON / Term. 58 OFF)
2 = Needles OFF and Scales ON (Term. 15 ON / Term. 58 OFF)
3 = Needles ON and Scales ON (Term. 15 ON / Term. 58 OFF)

...the ? refers to which digits of the coding the data applies to, so for example the first 4 digits are the options.
Code:
????xxx: Options

The + signifies you add the numbers together of all the systems fitted to the vehicle.
The numeric options increase exponentially, so whatever combination of options you choose will always lead to a unique number.

So if you had Quattro, a clutch and ACC for example, the coding for the first 4 digits would be 0001 + 0004 + 0128 = 0133
Code:
+0001 = Quattro (Standard)
+0004 = Vehicle with Clutch (NO Automatic)
+0128 = Adaptive Cruse Control (ACC)

The other digits are just integer options, so if your car is a Swedish left hand drive model, digit 5 would be 1, etc.
Code:
xxxx?xx: Country
1 = Rest of World (Left-Hand-Drive)


Thanks so much for the help :) I really appreciate it.

But one thing I haven't figured out is, if I look at guides that use long coding helper, can I still change them when my car has short coding on those modules?
 
   #6  

Mike@Gendan

VCDS Distributor
VCDS Distributor
Joined
Jun 24, 2014
Messages
867
Reaction score
1,081
Location
Swansea, UK
VCDS Serial number
C?ID=57030
Guides that involve the long coding helper are only relevant for modules which use long coding.

They won't work on a module with short coding.
 
Status
Not open for further replies.
Back
Top