Register
Page 501 of 846 FirstFirst ... 401451491496497498499500501502503504505506511551601 ... LastLast
Results 7,501 to 7,515 of 12679
  1. #7501
    Newbie
    Join Date
    Dec 2018
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    4
    Thanked in
    1 Post

    Default

    Quote Originally Posted by Laique View Post
    Hi guys!
    Glad that i found this topic

    I'm looking for an upgrade to 18.2 or maybe 18.9. (This cable works now with 17.1.3.)

    There are few things i dont know and hope you can help me.

    Here is my cable that came to me last week.

    Attachment 583250

    VAGCOM_HWTYPE tells me its:
    FW Version: 1.96
    HW Version: 0x46

    Files that i've found in this thread seem to have the same FW version.

    Attachment 583251

    What should i do now?
    Do i still have follow the FirmWare upgrade procedure or do i just have to install the newer VCDS, then crack it with VCDS_Loader, and then update the cable using VCDS?


    thx
    Seriously NOBODY ?!

  2. #7502
    Junior Member
    Join Date
    May 2018
    Posts
    25
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    1
    Thanked in
    1 Post

    Default

    Quote Originally Posted by hid3 View Post
    Not pin 1 of FTDI but rather pin 25, I believe. Check the chip orientation!

    The EEWrite tool reflashes it to the same HW as it was flashed before. It's impossible to flash it to different one because of different bootloader size/different fuse bits.
    In order to reflash from 0x46 to 0x44 you will need to do that using AVR programmer (e.g. USBASP)
    No it's definitely pin 1 next to the dot...looked at schematic and that's pin 1.

    Not going to bother with re flashing with AVR programmer if it's working let it be.

  3. #7503
    Junior Member
    Join Date
    May 2018
    Posts
    25
    Thanks Thanks Given 
    4
    Thanks Thanks Received 
    1
    Thanked in
    1 Post

    Default

    Quote Originally Posted by eliteland786 View Post
    No it's definitely pin 1 next to the dot...looked at schematic and that's pin 1.

    Not going to bother with re flashing with AVR programmer if it's working let it be.
    Pin 1 is TXD and pin 25 is ground...AGND.

  4. #7504
    Junior Member
    Join Date
    Dec 2016
    Location
    Vilnius, Lithuania
    Posts
    35
    Thanks Thanks Given 
    9
    Thanks Thanks Received 
    59
    Thanked in
    13 Posts

    Cool

    Some progress, made - developed Arduino Mega based bruteforce interface with GAL slot and tested with GAL from working 0x44 cable, chip works fine after such manipulations
    20181230_032105.jpg

    Wrote simple program to toggle each pin and check remaining pins state:
    Code:
    void setup() {
      Serial.begin(115200);
      //Main loop 
      for(int i = 22; i<=39; i++){
        //Pin configuration loop
        for(int j = 22; j<=39; j++){
          if(i == j){
            //Set togg'able pin as output
            pinMode(j, OUTPUT);
          }else{
            //All other pins as input (high impedance)
            pinMode(j, INPUT);
          }
        }
    
        //Toggle output high
        digitalWrite(i, HIGH);
        for(int j = 22; j<=39; j++){
          //Skip checking togg'able pin from reading
          if(j == i) continue;
          //Check if input is high
          if(digitalRead(j) == HIGH){
            //Print values to UART
            Serial.print(i);
            Serial.print(" ");
            Serial.println(j);
          }
        }
        //Toggle pin back
        digitalWrite(i, LOW);
      }
     
    }
    TODO: implement code for each combination toggle; Karnaugh map minimizer for logic generation.

    Results:
    OUTPUT PIN 1-(10 skipped, GND)-19 INPUT PIN 1-(10 skipped, GND)-19
    1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
    0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
    0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1
    0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1 1 1 1
    0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1 1 1
    0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1 1
    0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1 1
    0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1 1
    0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1 1
    0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1 1
    0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1 1
    0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1 1
    0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1 1
    0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1 1
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1 1
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 - 1 1
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 - 1
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 -


    As it seems things get tricky, as it seems from datasheet, GAL can be configured as clocked, and registered modes:
    sshot-2018-12-30-03-53-10-1.jpg

    So for further investigation I need someone who can tell about known 0x44 configuration (additionally to C3H8 logic), as well as create .JED file with known logic to check if bruteforcer works fine.

    Cheers

  5. The Following 2 Users Say Thank You to Elektrik1 For This Useful Post:

    pablobrsp (2nd January, 2019), seal777 (6th September, 2019)

  6. #7505
    Top Poster

    Join Date
    Mar 2018
    Posts
    174
    Thanks Thanks Given 
    42
    Thanks Thanks Received 
    139
    Thanked in
    64 Posts

    Default


    The algorithm of work and programming CUPL of FPGA is well described in this article. https://justmoose.ru/?p=17

    Laique
    Please read the info file in the kolimer folder, as well as several pages of the forum and you will find the answers.
    Please read the info file in the colimer folder, as well as several pages of the forum and you will find the answers.
    Last edited by Roma77; 30th December, 2018 at 09:15 AM.

  7. #7506
    Newbie
    Join Date
    Dec 2018
    Posts
    1
    Thanks Thanks Given 
    1
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts

    Default

    Hello @LL,

    can someone reupload the newest loader for \/CDS 18.9.0 (DRV) German and the firmware files please ?

    Thank you in advance.

    Best regards

    schmiddie1982

    Gesendet von meinem F8331 mit Tapatalk

  8. #7507
    DK Veteran

    Join Date
    May 2010
    Location
    EU
    Posts
    380
    Thanks Thanks Given 
    218
    Thanks Thanks Received 
    188
    Thanked in
    126 Posts

    Default

    Quote Originally Posted by Laique View Post
    What should i do now?
    Do i still have follow the FirmWare upgrade procedure or do i just have to install the newer VCDS, then crack it with VCDS_Loader, and then update the cable using VCDS?
    Run VAGCOM_HWType.exe to see if you have locked bootloader, then VAGCOM_EEWriteLang.exe if it's not locked and you don't know how old vcds version was used for it, use loader, and then update firmware after port test.

    Quote Originally Posted by schmiddie1982 View Post
    can someone reupload the newest loader for \/CDS 18.9.0 (DRV) German and the firmware files please ?
    Check last post from Kolimer, there are still some loader links active.
    Last edited by kaalis; 30th December, 2018 at 12:15 PM.

  9. The Following User Says Thank You to kaalis For This Useful Post:

    schmiddie1982 (30th December, 2018)

  10. #7508
    Newbie
    Join Date
    Dec 2018
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    4
    Thanked in
    1 Post

    Default

    Quote Originally Posted by kaalis View Post
    Run VAGCOM_HWType.exe to see if you have locked bootloader, then VAGCOM_EEWriteLang.exe if it's not locked and you don't know how old vcds version was used for it, use loader, and then update firmware after port test.

    Check last post from Kolimer, there are still some loader links active.
    thx. for the answear man!

    49029629_2036877646534703_4153387633277403136_n.jpg
    This is all what VAGCOM_HWType.exe is telling me. How do i know if the bootloader is locked ? The cable works with 17.1.3 now.

  11. #7509
    DK Veteran

    Join Date
    May 2010
    Location
    EU
    Posts
    380
    Thanks Thanks Given 
    218
    Thanks Thanks Received 
    188
    Thanked in
    126 Posts

    Default

    That exe is not from 7.2 loader.
    Anyway you can try eewrite and it will tell if it's not in bootloader mode or flash it succesfully.

    Don't forget to plug it in obd2 port while flashing.

  12. #7510
    Newbie
    Join Date
    Dec 2018
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    4
    Thanked in
    1 Post

    Default

    Quote Originally Posted by kaalis View Post
    That exe is not from 7.2 loader.
    Anyway you can try eewrite and it will tell if it's not in bootloader mode or flash it succesfully.

    Don't forget to plug it in obd2 port while flashing.
    THANKS A LOT!

    The VAGCOM_HWType.exe from 7.2 shows the bootloader is enabled! i will start with VCDS 18.2.0 ENG.
    Is the 18.9.0 stable 100% ?

  13. #7511
    DK Veteran

    Join Date
    May 2010
    Location
    EU
    Posts
    380
    Thanks Thanks Given 
    218
    Thanks Thanks Received 
    188
    Thanked in
    126 Posts

    Default

    Latest not very, but you can report your findings in this topic.

  14. #7512
    DK Veteran

    Join Date
    Dec 2015
    Location
    Italy
    Posts
    401
    Thanks Thanks Given 
    216
    Thanks Thanks Received 
    240
    Thanked in
    81 Posts

    Default

    Hi, is possible to repair this cable?
    Attached Images Attached Images

  15. #7513
    DK Veteran
    Join Date
    Feb 2013
    Posts
    392
    Thanks Thanks Given 
    73
    Thanks Thanks Received 
    94
    Thanked in
    77 Posts

    Default

    Yes, you can. But first you need "kill" STC, see how in info.pdf from Kolimer zip.

    L.e.
    You may need to use usbasp programmer, I do not think will work by usb, but you can try...

  16. #7514
    DK Veteran

    Join Date
    May 2010
    Posts
    634
    Thanks Thanks Given 
    140
    Thanks Thanks Received 
    195
    Thanked in
    123 Posts

    Default

    Quote Originally Posted by Elektrik1 View Post
    hid3, they are, you can see it in screenshots and my reverse engineered schematics, I have 3 of such cables
    About your schematic i don't see K-line and L-line Rx. K-line and L-line are bidirectional.
    If that transistor with emiter "in air" i assimilate as a diode, can be Rx. And go on 17 and 19 pins of GAL. Thet mean that pins are IN, not OUT.
    Look as a correct schematic for a 44HW, not transistors but correct and can see the Rx (K/L lines)
    Attached Files Attached Files
    Last edited by liviudiaconu; 30th December, 2018 at 09:25 PM.

  17. #7515
    Newbie
    Join Date
    Dec 2018
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    4
    Thanked in
    1 Post

    Default

    Got the 18.2.0!!! It's ALIVE!

    @KOLIMER! WHEREVER YOU ARE, GOD BLESS YOU.

    Small tribute for you man!
    48375864_991209821084315_3612454867626360832_n.jpg
    Last edited by Laique; 30th December, 2018 at 11:23 PM.

  18. The Following 4 Users Say Thank You to Laique For This Useful Post:

    amstel7 (28th August, 2019), Col19 (23rd January, 2019), Elektrik1 (31st December, 2018), Tib82 (1st January, 2019)

 

 

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.