DIY PROM Do It Yourself PROM chip burning help. No PROM begging. No PROMs for sale. No commercial exchange. Not a referral service.

Variations of $58?

Thread Tools
 
Search this Thread
 
Old Oct 1, 2004 | 12:58 PM
  #1  
Mangus's Avatar
Thread Starter
TGO Supporter
 
Joined: Jan 2000
Posts: 1,861
Likes: 0
From: In your ear. No, the other one.
Car: '89 Trans Am WS6
Engine: 350 TPI
Transmission: T5WC
Axle/Gears: 3.08 posi
Variations of $58?

Guys -

I've got a buddy near by with a Typhoon (7749, $58 of course). I had a hell of a time getting TunerPro to connect to the thing. After many attemps in the debugger, we found a way to get it to connect (which will lead to an entire re-write of my ALDL connection code, and possible the ads file format). The problem is that his "version" of the $58 code is chatty as all getout, and you need to send it not one, but many "shut up" commands, and do so in a very narrow window, in order to get it to silence its default spew enough to actually allow TunerPro to get a packet request in (shall we say, "edgewise"? =). Its like talking to my wife, man!

Now then, I know there are a number of people running $58 code that have no issues getting TP to connect.

This leads me to believe that perhaps some BCCs of $58 code are more chatty than others. Does anyone have info on this or has anyone verified so?
Reply
Old Oct 1, 2004 | 01:22 PM
  #2  
3.8TransAM's Avatar
Moderator
 
Joined: Feb 2000
Posts: 7,015
Likes: 2
From: Schererville , IN
Car: 91 GTA, 91 Formula, 89 TTA
Engine: all 225+ RWHP
Transmission: all OD
Axle/Gears: Always the good ones
i dont know anything specific per se, but I do know there are quite a few so called "proprietary" chips with options like 3 bar map sensor and the like. Possibly the code rewrites contribute to some of this?

later
Jeremy
Reply
Old Oct 1, 2004 | 02:21 PM
  #3  
novass's Avatar
TGO Supporter
iTrader: (1)
 
Joined: Nov 2002
Posts: 1,132
Likes: 1
From: Grand Island, NY
Car: 1990 Formula
Engine: 305 TPI
Transmission: WC T5
Re: Variations of $58?

Originally posted by Mangus
Guys -

The problem is that his "version" of the $58 code is chatty as all getout, and you need to send it not one, but many "shut up" commands, and do so in a very narrow window
I wonder if this is the problem I am getting with my 7730 $8d. Motes software works great, can't get tuner pro to connect no matter what.

How do you send a "shut up" command?

here is the other thread explaining what I have done so far.
Reply
Old Oct 1, 2004 | 02:42 PM
  #4  
Mangus's Avatar
Thread Starter
TGO Supporter
 
Joined: Jan 2000
Posts: 1,861
Likes: 0
From: In your ear. No, the other one.
Car: '89 Trans Am WS6
Engine: 350 TPI
Transmission: T5WC
Axle/Gears: 3.08 posi
Wouldn't be the problem with $8D.
Reply
Old Oct 1, 2004 | 04:28 PM
  #5  
Grumpy's Avatar
Supreme Member
 
Joined: Jun 2000
Posts: 7,554
Likes: 1
From: In reality
Car: An Ol Buick
Engine: Vsick
Transmission: Janis Tranny Yank Converter
Re: Variations of $58?

Originally posted by Mangus

I've got a buddy near by with a Typhoon (7749, $58 of course). I had a hell of a time getting TunerPro to connect to the thing. After many attemps in the debugger, we found a way to get it to connect (which will lead to an entire re-write of my ALDL connection code, and possible the ads file format).

Now then, I know there are a number of people running $58 code that have no issues getting TP to connect.

This leads me to believe that perhaps some BCCs of $58 code are more chatty than others. Does anyone have info on this or has anyone verified so?
Of the half dozen 58 BBCs I have, none have any code changes.

Using various scanners, shows a difference in how they link. Some seem to be faster then others.
Reply
Old Oct 1, 2004 | 04:37 PM
  #6  
RBob's Avatar
Moderator
iTrader: (1)
 
Joined: Mar 2002
Posts: 18,432
Likes: 234
From: Chasing Electrons
Car: check
Engine: check
Transmission: check
Re: Variations of $58?

Originally posted by Mangus
Guys -

I've got a buddy near by with a Typhoon (7749, $58 of course). I had a hell of a time getting TunerPro to connect to the thing. After many attemps in the debugger, we found a way to get it to connect (which will lead to an entire re-write of my ALDL connection code, and possible the ads file format). The problem is that his "version" of the $58 code is chatty as all getout, and you need to send it not one, but many "shut up" commands, and do so in a very narrow window, in order to get it to silence its default spew enough to actually allow TunerPro to get a packet request in (shall we say, "edgewise"? =). Its like talking to my wife, man!

Now then, I know there are a number of people running $58 code that have no issues getting TP to connect.

This leads me to believe that perhaps some BCCs of $58 code are more chatty than others. Does anyone have info on this or has anyone verified so?
Chatter is dependent upon the BCC, not the mask. Along the lines of some women chatter a lot while others are OK. All the same mask (female), different calibrations

Within the calibration data area there is a table of 16 addresses (uhh, back to the ECM. . .). Each entry points to either a packet descriptor or is 0. If 0, then nothing happens. Else a packet is sent.

This table is round-robin'd with the next entry being served after each minor loop.

Takes some finesse to get a 'stop chattering' (SC) packet in edgewise. Without really good timers to check for the inter packet gap, a rolling character counter works.

This operates as such: start at a character count of 4, then send a SC packet. If continues to chatter, wait for 4+1 characters and send a SC packet, if continues to chatter, wait for 4+2 characters and send a SC packet, and so on.

It is also required to hesitate a tad before sending the stop chatter (SC) request packet. The ECM needs to turn the port around.

Once the ECM stops chattering the code can then drop to a request/receive data packet mode. However, the logic needs to be such that if data packets stop being received that it will first re-request a data packet and then possibly fall back to the SC routine again.

Of course if one can convince the PROM guy to zero out the chatter table (broadcast table) then all this is for nought.

RBob.

edit: I need to add to the rolling counter process. Once a maximum charactor count is reached the counter needs to then be decremented. A max term of 32 bytes usually works. All depends upon the max size of a chatter packet (they are typically small).

So in essence the rolling counter will increment then decrement between an upper and a lower limit.

Last edited by RBob; Oct 1, 2004 at 04:45 PM.
Reply
Old Oct 1, 2004 | 07:18 PM
  #7  
JP84Z430HP's Avatar
Supreme Member
25 Year Member
 
Joined: Feb 2000
Posts: 1,416
Likes: 0
From: Johnstown, Ohio
Car: 84 Z28
Engine: 355 (fastburn heads, LT4 HOT cam)
Transmission: 700R4
Axle/Gears: 9-bolt, 3.27
Re: Re: Variations of $58?

Originally posted by RBob
Chatter is dependent upon the BCC, not the mask. Along the lines of some women chatter a lot while others are OK. All the same mask (female), different calibrations

Of course if one can convince the PROM guy to zero out the chatter table (broadcast table) then all this is for nought.

What is the purpose for this table?
Reply
Old Oct 1, 2004 | 07:19 PM
  #8  
Mangus's Avatar
Thread Starter
TGO Supporter
 
Joined: Jan 2000
Posts: 1,861
Likes: 0
From: In your ear. No, the other one.
Car: '89 Trans Am WS6
Engine: 350 TPI
Transmission: T5WC
Axle/Gears: 3.08 posi
Thanks Bob. This much I knew (as you might have noticed from the post). I was just wondering why some running $58 don't seem to run into any issues connecting, whilst others do. Seems to remain a mystery.
Reply
Old Oct 2, 2004 | 08:28 AM
  #9  
RBob's Avatar
Moderator
iTrader: (1)
 
Joined: Mar 2002
Posts: 18,432
Likes: 234
From: Chasing Electrons
Car: check
Engine: check
Transmission: check
Originally posted by Mangus
Thanks Bob. This much I knew (as you might have noticed from the post). I was just wondering why some running $58 don't seem to run into any issues connecting, whilst others do. Seems to remain a mystery.
There can be anywhere from 0 to 16 chatter packets being sent. If all 16 are in use it is going to be difficult to get a SC packet in, edgewise or otherwise.

If only one is in use then it is only moderately painful to get a SC packet in edgewise. If no chatter packets are in use then it becomes easy to connect.

For those folks that it is difficult to connect, ask them to zero out the broadcast table. Then there won't be any chatter to deal with.

RBob.
Reply
Old Oct 2, 2004 | 10:56 AM
  #10  
SATURN5's Avatar
Supreme Member
 
Joined: Jun 2000
Posts: 1,612
Likes: 0
From: the garage
Car: 84 SVO
Engine: Volvo headed 2.3T
Transmission: WCT5
Axle/Gears: 8.8" 3.73
Using a AYBN bcc I've never had much problems linking.
Reply
Old Oct 4, 2004 | 04:27 PM
  #11  
67 ss's Avatar
Junior Member
 
Joined: Jun 2003
Posts: 69
Likes: 0
From: MN
Car: camaro
Engine: 355 w/supercharger
Transmission: 700 R4
I have a 93 typhoon and I was having trouble getting it to talk to my labtop with data master but it worked perfect on my buddies 92 typhoon. I then found in data master I had to change a timing speed in the program to get it to talk per there instructions. I think this is what you are talking about?? I have not tried tunerpro on my typhoon but I would be willing to try some stuff if you want me to?
Reply
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
MY87LT
Aftermarket Product Review
13
Jun 7, 2016 09:47 PM
RABMAN
Interior Parts Wanted
2
Sep 18, 2015 09:02 PM
ULTM8Z
DIY PROM
1
Sep 16, 2015 09:15 AM
ontogenesis
Tech / General Engine
5
May 11, 2003 05:02 PM
TomP
V6
9
Nov 6, 2000 02:50 PM




All times are GMT -5. The time now is 11:41 PM.