Unfortunately we do not accept new members for free, Now Registration cost 30€, if you are interesting Send Email to [email protected]

Audi Virtual Cluster Sport Layout Solution - FREE !
19-01-2023, 16:52 PM, (This post was last modified: 19-01-2023, 17:09 PM by 7491159.)
Post: #26
RE: Audi Virtual Cluster Sport Layout Solution - FREE !
(19-01-2023, 16:42 PM)rehatflogs Wrote:  
(19-01-2023, 16:17 PM)7491159 Wrote:  
(19-01-2023, 12:38 PM)wawan.ru Wrote:  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

Compiling
Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

Check Synlax ,(
Remove the spaces in this line and retry to compile in VCP:

readedmem := ReadMemoryByAddr($03003C09,1,$14);

Code:
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.
Compiling

Compiler: [Error] (15:10): Unknown identifier 'readedmem'
Compiling failed

ok
I figured out where the error is

need
var
readedmem : string ;

(on your post was " em : string ; ")

Thanks man ! Now all ok "Compiling
Compiled succesfully"
Quote this message in a reply
[+] 1 user says Thank You to 7491159 for this post


Messages In This Thread
RE: Audi Virtual Cluster Sport Layout Solution - FREE ! - by 7491159 - 19-01-2023, 16:52 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
ZVW Vw polo johnson cluster after miliage correction have fault for chekcsum error.. radeff 4 106 Yesterday, 16:46 PM
Last Post: mkii
  2010 Ford F150 Instrument Cluster clonning koziol 1 32 16-05-2024, 13:43 PM
Last Post: talk2idris
ZTAudi Audi a4 b9 vc map and gauge nfarkass 0 45 14-05-2024, 22:35 PM
Last Post: nfarkass
XZBMW Cluster BMW Z3 eeprom 93S56 knx69 0 38 14-05-2024, 16:49 PM
Last Post: knx69
ZTAudi Audi virtual cockpit Km correction Martisvkk 0 86 13-05-2024, 17:47 PM
Last Post: Martisvkk
WKIA Kia soul 2018 GDI supervision cluster - dump or modification need reFORma 0 34 13-05-2024, 17:04 PM
Last Post: reFORma
ZTAudi (Solution) Audi Virtual Cockpit - Sport Layout Activation - GEN2 congo11 17 6,130 10-05-2024, 07:21 AM
Last Post: urgi
ZSeat Seat virtual cockpit recovery from failed flash jamesworts 1 83 08-05-2024, 07:41 AM
Last Post: spacewalker
  Bmw ID7 cluster ltujustas 0 85 05-05-2024, 07:49 AM
Last Post: ltujustas
  Default Volvo XC60 2016 TFT cluster died during X-Tool programming slevy70 2 159 04-05-2024, 22:07 PM
Last Post: pawel7924

Forum Jump:


Users browsing this thread:
1 Guest(s)

Return to TopReturn to Content