08-01-2008, 05:56 PM
|
#1 (permalink)
|
|
Don't Panic
Join Date: Feb 2008
Location: 3rd rock
Posts: 2,674
Thanks: 7
Thanked 28 Times in 26 Posts
|
VSS Signal assistance?
Is anyone in a position to capture the vss signal on a reed switch car (metro, starion)? My scope is on the fritz.
Problem: The vss is too noisy on some cars, need to know what it looks like in order to filter it properly. Plain old debouncing won't work because it seems the vss pulse peak to peak duration is less than your typical debounce period (was seeing 8342 microseconds @53mph, typical debounce is like 20000 microseconds). I added a tiny bit of debounce (3ms) and was able to put a more normal vssPulsesPerMile figure in, but the instant reading is jumpy.
It isn't a problem for hall effect cars because that is not a noisy physical switch.
I wonder if there is noise from the electromechanical parts of the speedometer/odometer? I don't know if I can defeat this problem with software alone. But would appreciate any insights into how to fix this.
Anyone seen a metro ECU schematic? Maybe someone has an old one I can dissect?
__________________
"I kicked a giant mouse in the butt! Do I have to draw you a diagram?"
Last edited by dcb; 08-01-2008 at 06:29 PM..
|
|
|
|
08-01-2008, 06:40 PM
|
#2 (permalink)
|
|
Don't Panic
Join Date: Feb 2008
Location: 3rd rock
Posts: 2,674
Thanks: 7
Thanked 28 Times in 26 Posts
|
Edit, ok I think I have a "debounce" strategy, for dealing with this. I have to change it so it looks for X number of milliseconds in a given state before deciding to increment the vss pulse counter. Only tricky bit is the timing of the pulses should be done on the leading edge, and not whenever the pulse settles down. I think it is doable with the event scheduler though, instead of just disabling the pin interrupt for a given amount of time I will schedule an "increment the counter" event that will get overridden with each junk pulse.
__________________
"I kicked a giant mouse in the butt! Do I have to draw you a diagram?"
|
|
|
|
08-01-2008, 07:34 PM
|
#3 (permalink)
|
|
Don't Panic
Join Date: Feb 2008
Location: 3rd rock
Posts: 2,674
Thanks: 7
Thanked 28 Times in 26 Posts
|
Quote:
Originally Posted by dcb
Is anyone in a position to capture the vss signal on a reed switch car (metro, starion)? My scope is on the fritz.
|
Disregard, I forgot there was an existing laptop .wav file recording of a metro vss, wanna see? It is kinda fugly
But it looks like the "wait for it to settle down" strategy should work. It looks like just waiting till there is 2 milliseconds of clean signal would do it. But it will start flaking out again above 75mph. 1 millisecond might be enough, but I can't remember the last time I went 75  Maybe I will leave changing it to 1 millisecond as an exercise for the user 
__________________
"I kicked a giant mouse in the butt! Do I have to draw you a diagram?"
Last edited by dcb; 08-01-2008 at 07:49 PM..
|
|
|
|
08-02-2008, 08:43 AM
|
#4 (permalink)
|
|
Addicted
Join Date: Jul 2008
Location: Findlay,OH
Posts: 555
Thanks: 0
Thanked 0 Times in 0 Posts
|
What about this option on some cars, a add on hall effect. Put 1-2 magnets on halfshaft close to tranny and mount a hall effect like this one. Only like $3 and would put out consistent readings. Hall Effect Switch | Low Sensitivity | Manufactured by Melexis
And all you would need to know at that point is tire size to know pulse rate.
155/80-12 927 rev/mile
1 magnet = 927/mile
8 magnets = 7416/mile
You could attach magnets to large hose style clamp and strap to inner cv joint case.
__________________
Last edited by bbjsw10; 08-02-2008 at 09:20 AM..
|
|
|
|
08-02-2008, 09:36 AM
|
#5 (permalink)
|
|
EcoModding Lurker
Join Date: May 2008
Location: Marietta, Georgia
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
|
Quote:
Originally Posted by dcb
Is anyone in a position to capture the vss signal on a reed switch car (metro, starion)? My scope is on the fritz...
|
I have a 'scope - but my extension cord isn't long enough to do meaningful on-the-road testing  . I have an inverter - maybe I can make it all work that way and get some pictures for us. But before I do that, I'm going to put a small capacitor in parallel with the zener and see if I can filter the bounces...
|
|
|
|
08-02-2008, 04:40 PM
|
#6 (permalink)
|
|
Batman Junior
Join Date: Nov 2007
Location: 1000 Islands, Ontario, Canada
Posts: 8,647
Thanks: 23
Thanked 66 Times in 47 Posts
|
Quote:
Originally Posted by bbjsw10
What about this option on some cars, a add on hall effect. Put 1-2 magnets on halfshaft close to tranny and mount a hall effect like this one.
|
I bet dcb's already thinking along those lines for his motorbike. (He's already got the magnet/pickup installed, in the form of a bicycle computer.)
EDIT: FYI the Audiovox cruise control I added to my car came with a magnet kit for just this purpose - for older cars that may not have a VSS signal.
|
|
|
|
08-04-2008, 07:52 PM
|
#7 (permalink)
|
|
Don't Panic
Join Date: Feb 2008
Location: 3rd rock
Posts: 2,674
Thanks: 7
Thanked 28 Times in 26 Posts
|
Ok, I might be overthinknig the vss reed switch bit (LOL). Probably some more code changes before I'm done
But took a dive today with a SG also and mpguino vesion 0.70 and heres where it landed:
odometer: 42.5 miles
mpguino: 42.33 miles
SG: 41.7 miles
So I am liking the distance tracking pretty well, rough indications have it at 0.4% off of the odometer even with the reed switch. Still want to research it some more and retest the saturn to make sure that is still accurate. But if the trip is accurate then I have to look elsewhere for the jumpy instant mph reading.
__________________
"I kicked a giant mouse in the butt! Do I have to draw you a diagram?"
|
|
|
|
08-04-2008, 08:36 PM
|
#8 (permalink)
|
|
Addicted
Join Date: Jul 2008
Location: Findlay,OH
Posts: 555
Thanks: 0
Thanked 0 Times in 0 Posts
|
Quote:
Originally Posted by dcb
Ok, I might be overthinknig the vss reed switch bit (LOL). Probably some more code changes before I'm done
But took a dive today with a SG also and mpguino vesion 0.70 and heres where it landed:
odometer: 42.5 miles
mpguino: 42.33 miles
SG: 41.7 miles
So I am liking the distance tracking pretty well, rough indications have it at 0.4% off of the odometer even with the reed switch. Still want to research it some more and retest the saturn to make sure that is still accurate. But if the trip is accurate then I have to look elsewhere for the jumpy instant mph reading.
|
Looks like the Mpguino is pretty accurate  , what car was this on the Saturn?
__________________
|
|
|
|
08-04-2008, 09:33 PM
|
#9 (permalink)
|
|
Don't Panic
Join Date: Feb 2008
Location: 3rd rock
Posts: 2,674
Thanks: 7
Thanked 28 Times in 26 Posts
|
This was on the metro, the one with the bouncy vss reed switch that has been giving a bit o'trouble (had to double the vsspulsespermile initially). I was very happy with the saturn readings, both distance and fuel consumption at last check, but I've messed with the distance code a bit since then.
__________________
"I kicked a giant mouse in the butt! Do I have to draw you a diagram?"
|
|
|
|
08-12-2008, 11:01 AM
|
#10 (permalink)
|
|
EcoModding Lurker
Join Date: May 2008
Location: Marietta, Georgia
Posts: 23
Thanks: 0
Thanked 0 Times in 0 Posts
|
Looks like the v.70 fixed the Starion VSS bounce! Pulses per mile = 8204! GREAT JOB and THANKS!
|
|
|
|
|