UPA USB sample script wanted - Page 75
Register
Page 75 of 87 FirstFirst ... 2565707172737475767778798085 ... LastLast
Results 1,111 to 1,125 of 1305
  1. #1111
    DK Veteran
    reproteq's Avatar
    Join Date
    Oct 2009
    Location
    en algún lugar de España
    Posts
    998
    Thanks Thanks Given 
    451
    Thanks Thanks Received 
    264
    Thanked in
    171 Posts

    Default

    Attachment 592509I am working in a full soft for upa
    here image of desktop
    when i finish i can share here.
    thanksAttachment 592508


    sorry i duplicate post for is error.

  2. The Following User Says Thank You to reproteq For This Useful Post:

    rybenz (9th April, 2019)

  3. #1112
    DK Veteran
    reproteq's Avatar
    Join Date
    Oct 2009
    Location
    en algún lugar de España
    Posts
    998
    Thanks Thanks Given 
    451
    Thanks Thanks Received 
    264
    Thanked in
    171 Posts

    Default

    Mi aportation code uds for immooff msa15 edc15v

    Program Prog1;


    ///////////vars/////////////////////
    var code_1,code_2,code_3,code_4,code_5,DataArray,DataR eaded: string;
    spstr1,spstr2, offstr1, offstr2, offstr3, offstr4, offstr5 : ansistring;
    ////////////////////////////////////


    //////////////////////////////////////////////////////////////////////////////
    ///////////////////////////// function ReadData //////////////////////////////
    Procedure ReadData;


    begin
    //////vars///////
    spstr1 := ' ';
    spstr2 := ' ';
    offstr1 := '0x53';
    offstr2 := '0x65';
    offstr3 := '0x67';
    offstr4 := '0x82';
    offstr5 := '0x96';




    if not ReadDevice then
    begin
    MsgBox( 'Read Error', 'Error', MB_OK );
    end
    else begin
    DataArray:= offstr1 + spstr1 + inttohex(GetByteHexEdit($53),2)+ spstr2 +
    offstr2 + spstr1 + inttohex(GetByteHexEdit($65),2)+ spstr2 +
    offstr3 + spstr1 + inttohex(GetByteHexEdit($67),2)+ spstr2 +
    offstr4 + spstr1 + inttohex(GetByteHexEdit($82),2)+ spstr2 +
    offstr5 + spstr1 + inttohex(GetByteHexEdit($96),2);

    MsgBox( DataArray, 'DataReaded', MB_OK or MB_ICONINFORMATION );

    //AddSaveFileAction( 'SAVEFILEREAD', 'IMMO_VAG_MSA15-EDC15', 'C:\Users\w7\Desktop\ReadFile_IMMO_VAG_MSA15-EDC15.bin' );

    end;
    end;


    ///////////////////////////////////////////////////////////////////////////
    ///////////////////////////function IMMOOFF ///////////////////////////////
    procedure ImmoOFF;


    //////vars///////
    var data1,data2,data3,data4,data5,value1,value2,value3 ,value4,value5 : integer;
    /////

    begin ////////////////////////readerror ////////////////////////


    if not ReadDevice then begin
    MsgBox( 'Read Error', 'Error', MB_OK );
    end

    else begin ////////////////////////setmodify ////////////////////////


    SetProgramModifiedOnly( true );
    if MsgBox( 'Erase Immo Data?', 'Confirm', MB_YESNO ) = IDYES then begin

    ///set value1 ////
    data1 := $53;
    value1 := $60;
    SetByteHexEdit(data1 , value1);


    ///set value2 ////
    data2 := $65;
    value2 := $60;
    SetByteHexEdit(data2 , value2);


    ///set value3 ////
    data3 := $67;
    value3 := $60;
    SetByteHexEdit(data3 , value3);


    ///set value4 ////
    data4 := $82;
    value4 := $60;
    SetByteHexEdit(data4 , value4);


    ///set value5 ////
    data5 := $96;
    value5 := $60;
    SetByteHexEdit(data5, value5);


    RefreshHexEdit;
    end;
    end;
    end;






    begin
    AddDeviceGroup( '_REPROTEQ:SCRIPT_', 'SELECT DEVICE CAR' );
    AddDevice( 'IMMO_VAG_MSA15-EDC15', '24C02 ', '_REPROTEQ:SCRIPT_', '24C02');

    AddAction( 'Read_Data', 'ReadData', 'IMMO_VAG_MSA15-EDC15' );
    AddAction( 'Immo_OFF', 'ImmoOFF', 'IMMO_VAG_MSA15-EDC15' );

    // AddOpenFileAction( 'BOX Top Side', 'IMMO_VAG_MSA15-EDC15', 'VW2.jpg' );
    //AddOpenFileAction( 'PCBoard Top Side', 'IMMO_VAG_MSA15-EDC15', 'VW1.jpg' );
    //AddOpenFileAction( 'Connections', 'IMMO_VAG_MSA15-EDC15', 'VW3.jpg' );

    AddMsg('Script (REPROTEQ_IMMO_VAG_MSA15-EDC15.uds) Installed OK! Reproteq'#169'');
    SetProductInfo( 'REPROTEQ_IMMO_VAG_MSA15-EDC15', 'Script'#$D' Reproteq '#169'');
    end.

  4. The Following User Says Thank You to reproteq For This Useful Post:

    PaoloDigital (19th March, 2019)

  5. #1113
    Top Poster
    Join Date
    Nov 2012
    Posts
    160
    Thanks Thanks Given 
    120
    Thanks Thanks Received 
    34
    Thanked in
    26 Posts

    Default

    Hi
    I wanted script for benz dash w212 2013-, w205, w447. I will pay.

  6. #1114
    Banned

    Join Date
    Jan 2010
    Location
    Trstenik - Thun
    Posts
    1,235
    Thanks Thanks Given 
    225
    Thanks Thanks Received 
    707
    Thanked in
    447 Posts

    Default

    // AddOpenFileAction( 'BOX Top Side', 'IMMO_VAG_MSA15-EDC15', 'VW2.jpg' );
    //AddOpenFileAction( 'PCBoard Top Side', 'IMMO_VAG_MSA15-EDC15', 'VW1.jpg' );
    //AddOpenFileAction( 'Connections', 'IMMO_VAG_MSA15-EDC15', 'VW3.jpg' );

    do you have VW2.jpag,VW1.jpg,VW3.jpg also?

    also other part of script with screen ?

  7. #1115
    DK Veteran
    reproteq's Avatar
    Join Date
    Oct 2009
    Location
    en algún lugar de España
    Posts
    998
    Thanks Thanks Given 
    451
    Thanks Thanks Received 
    264
    Thanked in
    171 Posts

    Default

    this code is commented because not use this images.
    but if you want can uncomment and add images of ecu and eeprom.

    this is a simple script

  8. #1116
    Banned

    Join Date
    Jan 2010
    Location
    Trstenik - Thun
    Posts
    1,235
    Thanks Thanks Given 
    225
    Thanks Thanks Received 
    707
    Thanked in
    447 Posts

    Default

    Yes i see that but ,

    You have few mistakes in this script



    Sent from my iPhone using Tapatalk
    Last edited by mikroel; 4th February, 2019 at 02:33 PM.

  9. #1117
    Member hectorcairo's Avatar
    Join Date
    Aug 2011
    Posts
    96
    Thanks Thanks Given 
    17
    Thanks Thanks Received 
    30
    Thanked in
    20 Posts

    Default

    Hello good day, maybe a script that goes well, for Body FIAT 326?

    regards

  10. #1118
    Top Poster +

    Join Date
    Apr 2019
    Posts
    219
    Thanks Thanks Given 
    137
    Thanks Thanks Received 
    77
    Thanked in
    35 Posts

    Default

    Hello all friends...
    Does anybody can make immo off script for denso, fujitsu, mitsubishi Ecu please?.
    Thank you.

  11. #1119
    DK Veteran
    turbocip's Avatar
    Join Date
    Oct 2009
    Posts
    326
    Thanks Thanks Given 
    48
    Thanks Thanks Received 
    50
    Thanked in
    28 Posts

    Default

    Can i use this scripts at this thread with UPA UUSP?
    Thanks in advance

  12. #1120
    DK Veteran
    Panathaole's Avatar
    Join Date
    Oct 2017
    Location
    HELLAS - E.U.
    Posts
    3,091
    Thanks Thanks Given 
    678
    Thanks Thanks Received 
    785
    Thanked in
    642 Posts

    Default

    Hello.
    I read an ecu iaw 5nf,(eeprom on board) but when writing, a part of the memory Is not write, I managed to write in this area after many attempts, eeprom is not from the ecu it is one st95160, the programmer is written normally the chip.... But upa doesn't, do you know something about it?

  13. #1121
    Junior Member
    Join Date
    Oct 2018
    Posts
    33
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    hello i need a script for dash of FIAT SCUDO 2014 with 95020 eprom.
    thanks

  14. #1122
    DK Veteran
    catalinosonesti's Avatar
    Join Date
    Mar 2019
    Location
    east nord pole
    Posts
    2,432
    Thanks Thanks Given 
    3,892
    Thanks Thanks Received 
    4,505
    Thanked in
    1,482 Posts

    Default

    Hy.can somone help with calculator hex for full Ford kuga 2011 mcu 9s12xh256 because i can read but in my carprog no calculator for this mcu .thank

  15. #1123
    Member

    Join Date
    May 2017
    Location
    Belarus
    Posts
    52
    Thanks Thanks Given 
    2
    Thanks Thanks Received 
    21
    Thanked in
    18 Posts

  16. #1124
    Member
    Join Date
    Jan 2016
    Posts
    60
    Thanks Thanks Given 
    18
    Thanks Thanks Received 
    2
    Thanked in
    2 Posts

    Default

    hey guys, anyone have spc560P50 please?

  17. #1125
    Top Poster +

    Join Date
    Apr 2019
    Posts
    219
    Thanks Thanks Given 
    137
    Thanks Thanks Received 
    77
    Thanked in
    35 Posts

    Default

    Hello..
    Can r/w Fujitsu Mcu MB91F with Upa V1.3 clone?
    Thanks.
    Last edited by rybenz; 17th July, 2019 at 04:57 PM.

 

 

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
This website uses cookies
We use cookies to store session information to facilitate remembering your login information, to allow you to save website preferences, to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners.