CarTechnoloGY
Audi Virtual Cluster Sport Layout Solution - FREE ! - Printable Version

+- CarTechnoloGY (https://cartechnology.co.uk)
+-- Forum: All About IMMO/ECU , ChiPTuninG , Dashboard , Locksmith , AirbaG , Carradio (https://cartechnology.co.uk/forumdisplay.php?fid=3)
+--- Forum: DASHBOARD (https://cartechnology.co.uk/forumdisplay.php?fid=10)
+--- Thread: Audi Virtual Cluster Sport Layout Solution - FREE ! (/showthread.php?tid=73998)

Pages: 1 2 3 4 5


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - eip - 19-01-2023

Ist a4 b9 cluster.
Yes have try fw Update, delete dtc etc. Still vc fault.


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - 7491159 - 19-01-2023

(19-01-2023, 09:58 AM)eip Wrote:  Ist a4 b9 cluster.
Yes have try fw Update, delete dtc etc. Still vc fault.

Have you tried to adapt through Odis S?


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - Versus - 19-01-2023

(19-01-2023, 09:54 AM)rehatflogs Wrote:  
(19-01-2023, 09:15 AM)eip Wrote:  After upload script cluster have B20096 DTC :/

What car and year did you try on?

Have you cleared the errors?

Really odd as other users have reported success with this script.

Old activation solution is with this error. Dashboard work, but you can't erase "Internal Control Module Memory Check Sum Error".


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - kaiserstumm - 19-01-2023

The script just changes the session to developer, inserts the code for changing the session (20103) and enters new code and reboots the VC after that, so no error should appear.


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - 7491159 - 19-01-2023

There is an option to lay out a decoded method that could be done manually by controlling all the steps


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - Versus - 19-01-2023

(19-01-2023, 10:02 AM)kaiserstumm Wrote:  The script just changes the session to developer, inserts the code for changing the session (20103) and enters new code and reboots the VC after that, so no error should appear.

This script change dashboard eeprom value.


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - kaiserstumm - 19-01-2023

Can you post old and new value?


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - rehatflogs - 19-01-2023

UPDATE

Added ODIS-E Python script to first post, or can run the following commands manually:

For Odis Engineering we do the following

1. Transfer the session to the developer mode (Developer mode)

2. Enter login 20103

3. Go to Special Function -> Hex Service and send a command
for RS
3D 14 03 00 3C 09 01 03
for S
3D 14 03 00 3C 09 01 01

Note: Not tested by me yet!


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - wawan.ru - 19-01-2023

VCP_Script data:


em : string ;
begin
ConnectToEcuUDS('17');
if IsConnectedToEcu then
begin
Writeln('Connected');
Writeln(GetECUNo);
//change diag session to developer
ChangeDiagSessionRaw('4F');
//Programming date F199
WriteDataByIDRaw(61849,'201102');
//Tester fingerprint F198
WriteDataByIDRaw(61848,'0181C8F6002E');
if DoLogin(20103) then Writeln('Login OK') else Writeln('Login failed');
WriteMemoryByAddr($03003C09,'01',$14);
readedmem := ReadMemoryByAddr($03003C09,1,$14);
Writeln(readedmem);
Writeln('EEPROM update success');
ECUReset;
end
else
begin
Writeln('Cant connect to cluster!!');
end;
CloseCommunication;
end


RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - rehatflogs - 19-01-2023

Thanks, have added script to first post