Re: PCM Hammer - new ls1 flash tool
Posted: Thu Mar 05, 2020 7:16 pm
Nice one! By far the best release yet!
Electronic Fuel Injection - Developement & Tuning
https://pcmhacking.net/forums/
I get if that is the purpose.Unable to get port number for 'ECP Printer Port (LPT1)' / 'ACPI\PNP0401\4&3157C303&0' with port name 'LPT1'
Code: Select all
if (!string.IsNullOrEmpty(this.PortName) &&
this.PortName.StartsWith("COM") &&
this.PortName.Length > 3)
{
int number;
int.TryParse(this.PortName.Substring(3), out number);
this.PortNumber = number;
}
else
{
+ if(!this.PortName.StartsWith("LPT"))
+ {
logger.AddDebugMessage(
string.Format(
"Unable to get port number for '{0}' / '{1}' with port name '{2}'",
this.Name,
this.DeviceID,
this.PortName));
+ }
}
I will remove them.currentWriteType = WriteType.Os | WriteType.Calibration | WriteType.Boot
Code: Select all
writetype.boot = 1<<0;
writetype.os = 1<<1;
writetype.calibration = 1<<2;
writetype.paramater = 1<<3;
Code: Select all
if (fullflash) writetype = writetype.boot || writetype.os || writetype.calibration || writetype.parameter;
Code: Select all
if (writetype && writetype.boot) {
.....
}
Are the operators correctantus wrote: Then set similar to:
Then test something like:Code: Select all
if (fullflash) writetype = writetype.boot || writetype.os || writetype.calibration || writetype.parameter;
Code: Select all
if (writetype && writetype.boot) { ..... }
Code: Select all
if (fullflash)
writetype = writetype.boot | writetype.os | writetype.calibration | writetype.parameter;
Code: Select all
if (writetype & writetype.boot) {
.....
}
Sorry if I am late to the party. I have never found an answer to this; willl a tech2 or similar OEM tool (clone or otherwise) read/write tune files made with other software (like hpt, ctz, tun files)? I bought a kess v2 clone and it does read the calibration from my e78 flashed with HP Tuners, so that is some progress (it's the only hardware I have been able to successfully pull my calibration from my ecu when flash with Trifecta Performance's or HP Tuner's platform.). Though it seems like it's not pulling the whole thing.THEFERMANATOR wrote:I haven't flashed it yet with my tech 2, only went into the sps to get the data(my tech2 clone won't do pass through I've found, but will accept a tune to flash in on it's own). I don't have the numbers off the PCM in front of me, but it was out of an 01 S10 and wasn't supposed to have been locked according to the guy I bought it from. I got it, full flashed it from an 01 S10 to an 02 express van for my l31 tahoe. I've double checked in efilive and there is no security changes in it. I'm going to try full flashing it with my tech 2 to a virgin 02 express file, then see if I can read it out with pcmhammer and my SX cable. It will be a few days before I can do so unfortunately.
I was pretty good at diesel tuning, but getting into this project is all new territory for me. Here recently I've had request's for 0411 tuning, but the $125 vin license fee is quite the deterrent when you're dealing with nearly 20 year old cars.