LT1-LT4 Modifications 1993-97 Gen II Small Block V8

New $EE tuning tool!

Thread Tools
 
Search this Thread
 
Old 10-19-2015, 07:43 PM
  #41  
On The Tree
 
Kevin Blown 95 TA's Avatar
 
Join Date: Mar 2006
Posts: 109
Likes: 0
Received 6 Likes on 6 Posts

Default

Steve, this looks really cool and I'm going to try it as soon as I get the chance.

Very cool that you put in all this work on a platform not too many care about any more.

Last edited by Kevin Blown 95 TA; 10-19-2015 at 07:52 PM.
Old 10-20-2015, 09:53 AM
  #42  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

there were a few stupid mistakes in the last couple releases. i need to slow down and test everything a bit better.

please download latest version for bug fixes, this time i tested 'er out properly (and added a few new features as a bonus)
Old 10-20-2015, 07:00 PM
  #43  
12 Second Club
 
fbody_brian's Avatar
 
Join Date: Feb 2012
Location: Long Beach, MS
Posts: 419
Received 4 Likes on 3 Posts

Default

Originally Posted by steveo_
there were a few stupid mistakes in the last couple releases. i need to slow down and test everything a bit better.

please download latest version for bug fixes, this time i tested 'er out properly (and added a few new features as a bonus)
I had to add
# HACK For linux
QMAKE_CXXFLAGS += -std=c++11

In the .pro file under your "HACK for xp, to get it to compile under my linux install. If you can add it and still compile under windows maybe you can add it and leave it there.
Old 10-20-2015, 08:19 PM
  #44  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

i will try right now, thanks. is it actually workin' on linux for you?
Old 10-20-2015, 08:33 PM
  #45  
12 Second Club
 
fbody_brian's Avatar
 
Join Date: Feb 2012
Location: Long Beach, MS
Posts: 419
Received 4 Likes on 3 Posts

Default

Originally Posted by steveo_
i will try right now, thanks. is it actually workin' on linux for you?
Almost!
lol

I need to figure out what I need to do for the serial port. I'm currently getting this message in the console:
Baud rate of serial port /dev/ttyUSB0 is set to 8193 instead of 8192: divisor 2929.687500 unsupported

and it just sits there unresponsive.
Old 10-20-2015, 08:52 PM
  #46  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

ahhhh i was hoping that **** wouldn't happen! the oddest thing about this is that it's 8192 baud, and nothing else is. no serial drivers assume 8192 baud even exists.

would you be interested in testing a patch or two?

for my 'other' linux aldl software i used raw USB commands to the ftdi chipset using libftdi, which does all the actual chipset commands in userland. it had the side effect of having great synchronus timing with no real driver in the way so i could nail insanely tight packet retrieval (exactly matching the ECM's delays). the ftdi chip is programmable to any baud rate in 1bps intervals.

EDIT: what version of qt are you running??
Old 10-20-2015, 09:26 PM
  #47  
12 Second Club
 
fbody_brian's Avatar
 
Join Date: Feb 2012
Location: Long Beach, MS
Posts: 419
Received 4 Likes on 3 Posts

Default

Originally Posted by steveo_
ahhhh i was hoping that **** wouldn't happen! the oddest thing about this is that it's 8192 baud, and nothing else is. no serial drivers assume 8192 baud even exists.

would you be interested in testing a patch or two?

for my 'other' linux aldl software i used raw USB commands to the ftdi chipset using libftdi, which does all the actual chipset commands in userland. it had the side effect of having great synchronus timing with no real driver in the way so i could nail insanely tight packet retrieval (exactly matching the ECM's delays). the ftdi chip is programmable to any baud rate in 1bps intervals.

EDIT: what version of qt are you running??
Running 5.5
I'll try any patches you want to. Right now even if i try to manually set the baud rate it still does the same thing.

chipset is "Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC"

works great under wine in datamaster, so I know that the capability is there. Is this an issue with the serial configuration from QT?

Edit:
FYI i also have libftdi installed, don't know if that's relevant or not.

Last edited by fbody_brian; 10-20-2015 at 09:57 PM.
Old 10-21-2015, 09:14 AM
  #48  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

Originally Posted by fbody_brian
chipset is "Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC"
i have the same chip. i'll get a virtual machine going and see what i can figure out.

works great under wine in datamaster, so I know that the capability is there. Is this an issue with the serial configuration from QT?
not sure.

the configuration is straightforward, lines 261-267 in datastream.cpp. there's very little control outside of that.

Edit:
FYI i also have libftdi installed, don't know if that's relevant or not.
nah, the qserialport lib doesn't support it anyway. you'd know if you were using libftdi, you'd have to disable your in-kernel ftdi driver.
Old 10-21-2015, 10:18 PM
  #49  
12 Second Club
 
fbody_brian's Avatar
 
Join Date: Feb 2012
Location: Long Beach, MS
Posts: 419
Received 4 Likes on 3 Posts

Default

Originally Posted by steveo_
i have the same chip. i'll get a virtual machine going and see what i can figure out.



not sure.

the configuration is straightforward, lines 261-267 in datastream.cpp. there's very little control outside of that.
.
Well, it seems that the unix portion of qtserialport checks to make sure that the baud rate is exactly what it is supposed to be, no wiggle room. so even though a baud rate of 8193 is acceptable, it kicks out the warning. If I try to set the baud rate manually with:
setserial /dev/ttyUSB0 spd_cust spd_cust baud_base 24000000 divisor 2929.687500
which would give me 8192, it changes the divisor to 2929, as the divisor register on the UART accepts an integer, not
a floating point number. Giving us the 8193 baud rate.
It seems that the qt code should take this into account, but it doesn't.

strangest thing is the way it checks, because even if I set the baud rate in eehack to 8193, I get this:
Baud rate of serial port /dev/ttyUSB0 is set to 8193 instead of 8193: divisor 2929.329834 unsupported

Last edited by fbody_brian; 10-21-2015 at 11:01 PM.
Old 10-22-2015, 09:49 AM
  #50  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

with 8193 baud you should still be getting data, as far as i know. i'll look into it a bit more.
Old 10-22-2015, 12:12 PM
  #51  
12 Second Club
 
fbody_brian's Avatar
 
Join Date: Feb 2012
Location: Long Beach, MS
Posts: 419
Received 4 Likes on 3 Posts

Default

Originally Posted by steveo_
with 8193 baud you should still be getting data, as far as i know. i'll look into it a bit more.
oh, I know. I believe the issue is with QT. it's throwing up that error, because of the way the check is run. it's using floats and the numbers returned by the serial port driver are integers.Possibly rounding errors?

I'm really thinking about changing the relevant code in qserialport_unix.cpp,
Old 10-24-2015, 03:15 PM
  #52  
Launching!
iTrader: (2)
 
Prototype007's Avatar
 
Join Date: Oct 2007
Location: Kentucky
Posts: 252
Received 34 Likes on 23 Posts

Default

I'm just now seeing this thread for the first time. Many thanks for your time and effort on creating this program.

Can't wait to try it out when I get back home to my laptop.
Old 10-25-2015, 12:06 AM
  #53  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

new release:

http://fbodytech.com/files/eehack-3.0.zip

3.0:
** "More awesome than DataMaster_EE in every way unless you have a 4L60E"(tm)
** Add 4 line graphing.... whaaat!! (Actually wasn't that hard)
** Increase accuracy of RPM in tests and analyzer (use RPM16 everywhere)
Add reset BLM and clear DTC functions
Make some things more visible
All records are now timestamp sequential, even when loading multiple logs.
Misc. bug fixes, more analyzer tuning
Old 10-28-2015, 04:12 PM
  #54  
Teching In
iTrader: (1)
 
Chas91Z28's Avatar
 
Join Date: Apr 2015
Location: Kansas
Posts: 22
Likes: 0
Received 0 Likes on 0 Posts
Default

steveo, this looks like awesome work!
Does this only work with the $EE? Not the $EEB? Also, I'm assuming this is tested on the 16188051 ECM for the Camaro, but should also work for the 16181333 ECM for the Corvette, right?
Old 10-28-2015, 10:22 PM
  #55  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

next release will have an option to work with 'vette body control module, this one does not silence it. i'ts never been tested, please test it..

$eeb uses the same datastream so it should work, but i'd appreciate you testing it out if you run $eeb (which there is no good reason to,afaik)
Old 11-01-2015, 03:36 PM
  #56  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

new release http://fbodytech.com/files/eehack-3.2.zip

please test with 'vette to make sure it works! see settings page if you have a 'vette

has some more new features too.
Old 11-05-2015, 01:36 PM
  #57  
Teching In
iTrader: (1)
 
Chas91Z28's Avatar
 
Join Date: Apr 2015
Location: Kansas
Posts: 22
Likes: 0
Received 0 Likes on 0 Posts
Default

Glad you could tweak it to work with the Corvette. I'll give it a try in the next few days, and I'll post how it goes.
Old 11-07-2015, 11:13 AM
  #58  
Teching In
 
Nophix's Avatar
 
Join Date: Oct 2008
Location: Stevens Point, WI
Posts: 17
Likes: 0
Received 0 Likes on 0 Posts

Default

Awesome work! I'm going to give it a shot on my '94 Formula. I've been tuning with TunerProRT and WinFlash. This looks so much cleaner, and being able to make tweaks without flashing every time will save me an ECM or 2.

Thank you!
Old 11-08-2015, 01:05 PM
  #59  
Teching In
 
junkLT1's Avatar
 
Join Date: Nov 2015
Location: Davenport IA
Posts: 16
Likes: 0
Received 0 Likes on 0 Posts
Default

interesting, glad to see new things coming for us
Old 11-10-2015, 11:07 PM
  #60  
Launching!
Thread Starter
 
steveo_'s Avatar
 
Join Date: Aug 2013
Posts: 205
Likes: 0
Received 6 Likes on 4 Posts
Default

version 3.3 is a big one, has FLASH READ capability!

please help me test it!

also a new custom command mode for guys that want to play with their own raw ALDL commands for educational or research purposes.

http://fbodytech.com/files/eehack-3.3.zip


Quick Reply: New $EE tuning tool!



All times are GMT -5. The time now is 04:05 PM.