
Originally Posted by
badrax
Anyone have access to linux that could list out the descriptors for the cable that support updates
First find the device by using "lsusb". You should see a device with the VIP:PID 0483:a0cb.
Next run "sudo usbhid-dump -e descriptor -a 2:41" and replace with your bus and device id
ex.
lsusb -> Bus 002 Device 041: ID 0483:a0cb STMicroelectronics
sudo usbhid-dump -e descriptor -a 002:041
06 00 FF 09 01 A1 01 85 01 09 08 15 00 26 FF 00
75 08 95 3F 91 00 85 02 09 09 15 00 26 FF 00 75
08 95 3F 81 00 C0 09 02 29 00 01 01 00 A0 FA 09
04 00 00 02 03 00 00 00 09 21 11 01 00 01 22 26
00 07 05 81 03 40 00 0A 07 05 01 03 40 00 0A 00
55 8E 01 08 5F 8E 01 08 8B 8E 01 08 69 8E 01 08
9F 8E 01 08 C1 8E 01 08 E3 8E 01 08 12 01 00 02
00 00 00 40 83 04 CB A0 00 02 01 02 03 01 0A 06
00 02 00 00 00 40 01 00 04 03 09 04 01 00 00 00
67 8F 01 08 69 8F 01 08 7B 8F 01 08 83 8F 01 08
8B 8F
And see if your output is the same as I get on both the 415 cable and on the 405 (non upgradable)
I have received mine from this URL : « 2020 Newest VCDS HEX V2 Interface VAGCOM 20.4.2 VAG COM 20.4 FOR VW AUDI Skoda Seat VCDS 20.4 English German STM32F405 ARM Chip ».
I have not used the interface for the moment, so, maybe the output is not accurate...
Code:
bigbob@bigbob-UX31A:~$ sudo usbhid-dump -e descriptor -a $(lsusb | grep STMicroelectronics | awk '{print $2":"$4}' | awk -F ':' '{print $1":"$2}')
003:017:000:DESCRIPTOR 1609871552.427438
06 00 FF 09 01 A1 01 85 01 09 08 15 00 26 FF 00
75 08 95 3F 91 00 85 02 09 09 15 00 26 FF 00 75
08 95 3F 81 00 C0
bigbob@bigbob-UX31A:~$
Hope it help...
Bookmarks