L98 4+3 Overdrive Program Change?
The OD currently engages on start-up and I'm looking for it to engage manually when the button on the shifter is pressed. It's a 1986.
Thanks
The Best of Corvette for Corvette Enthusiasts
The trick is to convince the car that its in 1st gear all the time. There is a place in florida that sells a switch for this purpose for $20.
Sorry can't remember the name. Hopefully somebody will chime in.
Here it is: Corvette Clinic Inc in Sanford Florida See C4 solutions
http://www.corvetteclinicinc.com/
Last edited by tequilaboy; Feb 26, 2005 at 03:55 PM.
The 4+3 is controlled by the same parameters that control the tcc or torque converter clutch, lock, unlock, lock delay, forced shift etc.
Also there are pre-set n/v limits or rpm/mph values to distinguish 1st gear, 1st od, the other gears and max and min values for 4th gear.
These values are not typically supported by off-the-shelf editors, but can be found if you know what hex values to look for.
The key here again is to convince the car it's still in first gear all the time, where od is default off. It is necessary to reduce the first gear n/v limit (255) and 1st gear od N/V limit to some value less than the normal 4th gear N/V limits (35-50 or so). This way the od will remain off unless there is as switch input, like it does in 1st gear.
Raising the lock speeds is another approach, but the switch logic will get inverted, meaning the first push of the button will turn od off, so it will require 2 pushes of the button for od to be engaged.
Therefore the 1st gear/ 1st gear od n/v limit change is a cleaner solution, and should preserve the normal switch logic and upshift/downshift capability.
The corvette clinic switch should accomplish the same thing and looks like a bargain. I may buy one just to check it out.
That's how I have mine set.
Thanks
That's how I have mine set.
They added that after I sent them the values for it.
Have you tested it on your car yet? I can't take full credit though as another forum member a long time ago clued me in on the hex values for it.
Thanks
Here's how it works in a nutshell. After key on the value of 8 is loaded into the transmission mode word byte which now looks like 0000 1000 instead of 0000 0000.
Then if bit 0 (od on) is not set then the value is decremented from 8 to 7 which looks like 0000 0111 and is stored to memory. This is how od is set to default on, bit 0 being the key.
The transmission mode word looks like this (working from memory so I may have a few bits swapped but you get the idea) It is mislabeled in the data master status bits as CARS:
Bit 0 od on
Bit 1 1st gear
Bit 2 1st gear look ahead ok
Bit 3 1st od
Bit 4 4th gear
Bit 5 on request
Bit 6 off request
Bit 7 od active
The TC change prevents the decrement operation from 8 to 7 by changing the decrement operator $4A to $0A which has no real effect. By preventing the decrement operation, the od is by default off, since bit 0 is never set. Pretty cool, and accomplished only by changing only one bit.





















