Page 1 of 1

Avt 852 pcm/bcm/tcm emulator

Posted: Wed Apr 27, 2022 10:22 am
by 04colyZQ8
I have wanted for sometime to write a program to simulate a gm bcm, pcm, tcm for pulling files from sps that I don’t have a proper module for. Because I like to play around with multiple files.

I can code in C, and asm I also have all the can bus and vpw, commands from logs that I need!

Only thing I need help with is the commands needed setup the avt via comport, for can, and vpw, and two switch the address from tool, 6c 8c etc to what ever I tell it two. Example of it’s a pcm is should emulate the pcm with the correct can address. Or vpw address.

Also I don’t know how to send a vwp or can checksum, but I think the avt is capable of doing that.

The program would ask for the hardware number, boot loader part number, segment and os numbers, specified seed and key, shop code, program date, and address. And then ask for vpw or can, and the modules address.

Re: Avt 852 pcm/bcm/tcm emulator

Posted: Wed Apr 27, 2022 6:43 pm
by antus
See the official dev guide here:

http://www.avt-hq.com/AVT-85x_UM_Vol_1_rev_420B.pdf

Also look at the pcmhammer source code for the AVT here (all VPW though): https://github.com/LegacyNsfw/PcmHacks/ ... tDevice.cs

Keep in mind that pcmhammer is GPL so if you use its source directly, you are required to share the source for your program as well. The GPL is to stop people doing a hit and run and profiting from others free work.

Re: Avt 852 pcm/bcm/tcm emulator

Posted: Thu Apr 28, 2022 6:33 am
by 04colyZQ8
antus wrote:See the official dev guide here:

http://www.avt-hq.com/AVT-85x_UM_Vol_1_rev_420B.pdf

Also look at the pcmhammer source code for the AVT here (all VPW though): https://github.com/LegacyNsfw/PcmHacks/ ... tDevice.cs

Keep in mind that pcmhammer is GPL so if you use its source directly, you are required to share the source for your program as well. The GPL is to stop people doing a hit and run and profiting from others free work.

Thanks I understand it, would either be open source or a private program that only those who wrote it use, nothing for sale, or profit.

Look forward to reading through these, I really appreciate the fast response!