Search found 398 matches

by joukoy
Sun Apr 06, 2025 3:20 pm
Forum: GM Can bus computers
Topic: Vxdiag vcx nano crash with CAN ecu?
Replies: 2
Views: 1231

Re: Vxdiag vcx nano crash wit CAN ecu?

beeradoc wrote: Sun Apr 06, 2025 12:03 pm First step in troubleshooting anything that involves a vxdiag is throw it away and watch all your problems be solved 😂
:thumbup:
by joukoy
Sat Apr 05, 2025 7:33 pm
Forum: GM Can bus computers
Topic: Vxdiag vcx nano crash with CAN ecu?
Replies: 2
Views: 1231

Vxdiag vcx nano crash with CAN ecu?

Can someone confirm this, or I am only one with this problem? If I set any application to listen CAN messages with VCX nano connected to E78 ecu, application crash after few seconds. Tested so far: Universalpatcher->Logger->Analyzer J2534Tool (VX Manager->Diagnostic->Passthru->Run) https://github.co...
by joukoy
Wed Apr 02, 2025 9:16 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: Anyone using Linux?
Replies: 11
Views: 3421

Re: Anyone using Linux?

Now it works, but it is not fast (~10kB/s) Tested full read & full write (clone) with P59. Required mod to OBDXProDevice.cs: this.MaxReceiveSize = 192 + 10 + 2; // with 10 byte header and 2 byte block checksum Maybe you find better solutions, but I couldn't make it work with timeout change etc. ...
by joukoy
Tue Apr 01, 2025 4:11 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: Anyone using Linux?
Replies: 11
Views: 3421

Re: Anyone using Linux?

I made a hack for serial port detection in Linux: Script for collecting ports to txt file and start hammer.
Modified Hammer to read port information from file.
Maybe not a good solution for everyone, but better than manually editing registry every time.

PCM reading still fails.
by joukoy
Mon Mar 31, 2025 11:23 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: Anyone using Linux?
Replies: 11
Views: 3421

Re: Anyone using Linux?

Using System.IO.Ports.SerialPort.GetPortNames() you get all ports COM1 .... COM33 (?), available or not. Setup com port(s) using: wine regedit HKEY_LOCAL_MACHINE\Software\Wine\Ports Add new string value, for example COM1 and set Data to real port. Attached modified version of PortDiscovery.cs, it ca...
by joukoy
Tue Feb 11, 2025 3:50 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: PCM Hammer 2 Preview
Replies: 64
Views: 33799

Re: PCM Hammer 2 Preview

I made quick tests, just for adding test cases. P59 1MB with AMD chip, Service No 12586243 Test 1: 1. Obdlink LX 2. bench 3. Calibration write Succesfull 4. the same setup worked with the previous version of pcmhammer Test 2: 1. OBDX Pro VT 2. bench 3. Calibration write Succesfull 4. the same setup ...
by joukoy
Sat Mar 16, 2024 9:46 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: Hammer not reading ECU
Replies: 51
Views: 26931

Re: Hammer not reading ECU

I dont know how I can add modifications now. Should I close old pull request ?
by joukoy
Sat Mar 16, 2024 2:35 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: Hammer not reading ECU
Replies: 51
Views: 26931

Re: Hammer not reading ECU

Pull request closed and new created.
J2534DotNet library must be compiled before other parts, otherwise compile fails.
by joukoy
Wed Mar 13, 2024 5:37 pm
Forum: GM LS1 512Kbyte and 1Mbyte and newer
Topic: Hammer not reading ECU
Replies: 51
Views: 26931

Re: Hammer not reading ECU

I converted Hammer to use J2534DotNet library and made pull request (at least I try, not sure how it goes).
Library required small modifications but mostly it is original.

Tested full read and full write with ONE P59.
by joukoy
Thu Jan 25, 2024 2:48 am
Forum: Tools
Topic: Avt 852 not working with vpwexplorer or older tuner cat programs help
Replies: 34
Views: 28156

Re: Avt 852 not working with vpwexplorer or older tuner cat programs help

There is at least one difference between Universal Patcher and PCM hammer implementation: Universal Patcher uses serial port events for receiving data https://github.com/joukoy/UniversalPatcher/blob/1d9be820ba878b9787f99586fb15fbc5cde3237b/Source/DataLogger/Devices/Rs232Port.cs#L115 while hammer is ...