Results 1 to 15 of 238

Thread: Narrowband Tuning Tool

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Fuel Injected!
    Join Date
    Jul 2014
    Age
    77
    Posts
    25

    My setup

    I just completed installing a new motor 383, 10 1/2:1, 225/231 w/.540",114 lobe sep. 36 lb injectors in a Superram[ I've only got 200 miles on it, and the tune is ok, but far from done. I'm using S_aujp v5, attached is preliminary info.3_6_17 SR.binV5 WB.adx

  2. #2

  3. #3
    Fuel Injected!
    Join Date
    Jun 2015
    Age
    36
    Posts
    354
    This would be great to use with the P66 ADX that Robert built-I'd definitely use it! Seeing as he's written the stuff for most of the 60*v6 computers, I'm sure the fields would be close enough to the same to let it work for most of them, too.

  4. #4
    Fuel Injected! brian617's Avatar
    Join Date
    Apr 2013
    Location
    Arkansas
    Age
    45
    Posts
    711
    I like the sound of this as well. Motivation to order another obd1 cable since mine gave up the ghost last fall sometime.

    7427 $OE
    89 K1500 Scottsdale 5.7L 5spd 3:42 RamJet cam Dart iron TBI heads 427 PCM swap
    95 C2500 Cheyenne 6.5L turbo diesel 4L80e 4:10 DB2-4911 Manual pump conversion 0411 PCM trans control 2Bar COS
    05 Outback XT 2.5L turbo gas auto

  5. #5
    Fuel Injected!
    Join Date
    Dec 2016
    Location
    Colorado
    Age
    39
    Posts
    120
    I will def try this out...Im using 16168625, $E6. Count me in! I will change to $0D if needed...$E6 is stock Im working with now

  6. #6
    Fuel Injected!
    Join Date
    Sep 2016
    Age
    38
    Posts
    38
    You guys on this site never cease to amaze me. I spent the last six months attempting to learn tuning, though i was a hot shot, only to get on here and get blown away by how knowledgeable everyone is. Incredible stuff... can't wait to see the finished product

  7. #7
    LT1 specialist steveo's Avatar
    Join Date
    Aug 2013
    Posts
    4,055
    progress so far:

    - it loads logs (any number of logs) into efficient data structures for analysis
    - it removes logs from these data structures without crashing.. this part took a lot of head scratching
    - it 'maps' parameter columns, kinda, but not automatically yet. the important part is the column mapping data structures are complete
    - the ui properly handles one and two o2 sensor vehicles in a way that doesn't look too crappy, this took a bit of work

    i know it's not much, but it's a start.

    next i work on the filtering engine including it's automated configuration, and try to build a dictionary system so i can get the parameter automapping off the ground

    so here's where i could use some help

    need to build lists of common adx column names for my dictionary file

    LBLM=Left Blm,Bank 1 BLM,Left LTFT, they ideally are in order of rough likelyhood. not case sensitive

    anyone care to browse some ADX files and help me with that? or at the very least, read their own ADX and give me the column names for:

    BLM (L/R/SINGLE):
    INT (L/R/SINGLE):
    RPM:
    MAP:
    COOLANT TEMP:
    MAF:
    CLOSED LOOP ENABLE FLAG:
    BLM ENABLE FLAG:
    CURRENT BLM CELL:
    WOT ENABLE FLAG:

  8. #8
    Fuel Injected!
    Join Date
    Dec 2016
    Location
    Colorado
    Age
    39
    Posts
    120
    Quote Originally Posted by steveo View Post
    progress so far:

    - it loads logs (any number of logs) into efficient data structures for analysis
    - it removes logs from these data structures without crashing.. this part took a lot of head scratching
    - it 'maps' parameter columns, kinda, but not automatically yet. the important part is the column mapping data structures are complete
    - the ui properly handles one and two o2 sensor vehicles in a way that doesn't look too crappy, this took a bit of work

    i know it's not much, but it's a start.

    next i work on the filtering engine including it's automated configuration, and try to build a dictionary system so i can get the parameter automapping off the ground

    so here's where i could use some help

    need to build lists of common adx column names for my dictionary file

    LBLM=Left Blm,Bank 1 BLM,Left LTFT, they ideally are in order of rough likelyhood. not case sensitive

    anyone care to browse some ADX files and help me with that? or at the very least, read their own ADX and give me the column names for:

    BLM (L/R/SINGLE):
    INT (L/R/SINGLE):
    RPM:
    MAP:
    COOLANT TEMP:
    MAF:
    CLOSED LOOP ENABLE FLAG:
    BLM ENABLE FLAG:
    CURRENT BLM CELL:
    WOT ENABLE FLAG:
    I will take a look at my file tonight when I get home and let you know

  9. #9

  10. #10
    Fuel Injected! dud's Avatar
    Join Date
    Jan 2016
    Age
    55
    Posts
    30
    Excellent. The "Remember" feature works great.

    Believe it or not I actually had the "definition" and "dictionary" files edited as you described. The "mainwindow" file is what I was missing. Edited it and it worked.

    I still feel kinda like a cow trying to read the newspaper when looking at this stuff though. :-)

    I'll try compile it in linux later. Gotta get ready to go to work now.

  11. #11
    LT1 specialist steveo's Avatar
    Join Date
    Aug 2013
    Posts
    4,055
    the only ui hitch is that when you remember something, it no longer uses filter autodetection on startup. you have to click the auto button if you want that to happen, and there's no 'clear' function.

    just fyi i saw you added some true/false identifiers to your dictionary to deal with alternate cases

    that should not be necessary as the dictionary is generally case insensitive (i convert both dictionary and search entries to uppercase)

    .. unless you've observed differently, i haven't actually tested it much

    Believe it or not I actually had the "definition" and "dictionary" files edited as you described. The "mainwindow" file is what I was missing. Edited it and it worked.
    easy misunderstanding due to my weirdo use of classes. mainwindow.c handles the propogation/creation/deletion of the list of filters, the filter class itself is simply a ui element that contains isolated data about the filter and a front end to edit it (mainwindow contains multiple filters, but filters have no knowledge of each other whatsoever), and to further confuse matters, the list of filters is actually contained in the analysis class, since mainwindow doesn't use the filters, only manages them.

    i do hate object oriented programming, so i think i subconsciously make bad design decisions on purpose.

  12. #12
    LT1 specialist steveo's Avatar
    Join Date
    Aug 2013
    Posts
    4,055
    Quote Originally Posted by Xnke View Post
    This would be great to use with the P66 ADX that Robert built-I'd definitely use it! Seeing as he's written the stuff for most of the 60*v6 computers, I'm sure the fields would be close enough to the same to let it work for most of them, too.
    this program will definitely work with any log that has rpm, map, and at least one BLM value in it. it isn't going to use the ADX file in any way (you'll have to export the log as CSV for it to function)

    the only caveat is that if you have a stupid or uncommon name for any of those fields in your ADX, you're going to have to manually select the field before it'll let you analyze the log, but that will be really easy to do....

Similar Threads

  1. LS1 Flash Tool Released
    By antus in forum OBDII Tuning
    Replies: 118
    Last Post: 02-28-2024, 07:02 PM
  2. Scan Tool Data Help
    By Kaweh in forum TunerPro Tuning Talk
    Replies: 1
    Last Post: 05-12-2015, 12:15 AM
  3. LT1 auto-tuning tool (web based)
    By steveo in forum GM EFI Systems
    Replies: 3
    Last Post: 10-17-2014, 08:07 AM
  4. Narrowband o2 sensors all created equal?
    By Accrdwgnguy in forum GM EFI Systems
    Replies: 4
    Last Post: 12-19-2013, 12:46 AM
  5. TunerPro Rt used as a scan tool?
    By mudbuggy in forum TunerPro Tuning Talk
    Replies: 21
    Last Post: 01-10-2012, 03:38 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •