Results 1 to 15 of 15

Thread: Aldl LT1 datastream

  1. #1
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152

    Aldl LT1 datastream

    Hi. Im trying to adjust my arduino gauge
    I cant get IAT data.
    Trans temp and coolant works
    I believe it is A274 datastream
    All I get is negative 40 always.

    Word 25
    MATDEGND NON-DEFAULTED MAT VARIABLE
    DEG C= .75N - 40
    DEG F= 1.35N - 40

    I don't know why but I cant get this data from the protocol

  2. #2
    Fuel Injected!
    Join Date
    Mar 2013
    Posts
    1,475
    IAT is byte 24, counted from zero.

    If you use it as a word that might explain the odd readings.

  3. #3
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    It is byte not int?
    coolant and trans temps are int
    upd
    Oh i see my mistake. I used wrong datastream
    I'll check
    Last edited by yoheer; 08-24-2023 at 12:27 PM.

  4. #4
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    I want to add wideband reading. Using Kur40's pcm patch with d31 or d27 pin.(eehack uses pin27. d31 in the patch description)
    What datastream data should I use?

    It is written Byte 36 mode1 msg1 (patch)

    Is it instead of SDINMW1 input mode word 1?
    This is from mode 1 msg1, 36 word
    Is it correct?
    Last edited by yoheer; 09-26-2023 at 06:19 PM.

  5. #5
    Fuel Injected!
    Join Date
    Jul 2019
    Location
    Orange, CA
    Posts
    757
    D27 is the spare unused ADC input. D31 is the ADC input for the A/C pressure sensor.

    According to EEHack's definition file for $EE, the A/C Pressure input is a Byte (8 bits) at Offset 26 in a Mode 00 message (F4 00). Pin D27 input would be read as a Byte (8 bits) at Offset 54 in a Mode 00 message (F4 00).
    1990 Corvette (Manual)
    1994 Corvette (Automatic)
    1995 Corvette (Manual)

  6. #6
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    thnx, I'll check
    I believe it is mode 1 msg 0 byte 55 ALDL message
    and it is not used in description

  7. #7
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    I get ~128 values at idle. Very similar to blm.
    Is it correct? How to convert it to AFR if yes?
    10-20 afr wideband

    Also I have an issue with MAF
    It is mode1 msg0 word47
    GM/SEC = 512N/65536

    If i use this formula I get 0 value
    Datastream value is 200ish
    Last edited by yoheer; 09-27-2023 at 09:11 PM.

  8. #8
    Fuel Injected!
    Join Date
    Jul 2019
    Location
    Orange, CA
    Posts
    757
    According to the EE definition file for EEHack, MAF gm/s is a Word (16 bits) at Offset 45 in Mode 00 (F4 00). The calculation you posted is correct. If your datastream value was 200, then the result should be 1.5625 g/s according to that equation. Perhaps you implemented your math function incorrectly?

    Converting wideband voltage to AFR depends on your wideband O2 controller. Normally the instruction manual will give you the equation required to convert its voltage into AFR. You only have Byte resolution here since it's an 8-bit ADC, so 0V~5V is 0~255. How to convert 0~255 to X:1 AFR will depend on your Wideband controller. Check your controller's documentation.
    1990 Corvette (Manual)
    1994 Corvette (Automatic)
    1995 Corvette (Manual)

  9. #9
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    I'll check math function.

    It is SLC2 Free by 14point7
    This is what i found
    0[v]@0.68[Lambda] linear to 5[v]@1.36[Lambda], 10[AFR] linear to 20[AFR] equivalent for gasoline

  10. #10
    Fuel Injected!
    Join Date
    Jul 2019
    Location
    Orange, CA
    Posts
    757
    Okay, then that sucker is incredibly simple. It's a linear equation.

    If you want to display as AFR (Gasoline) instead of Lambda (any fuel), then:

    AFR:1 = N*(10 / 256) + 10

    For example, if N is 128 (~2.5V), then:

    AFR:1 = 128*(10/256) + 10
    AFR:1 = 128*(0.0390625) + 10
    AFR:1 = 5 + 10
    AFR:1 = 15
    15:1 AFR
    1990 Corvette (Manual)
    1994 Corvette (Automatic)
    1995 Corvette (Manual)

  11. #11
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    I appreciate your help

  12. #12
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    Can't make MAF work

    A274 GM datastream description

    ALDL MODE 1 MESSAGE 0 DATA LIST
    Word #46
    GP6EAFND GMP6-E NON-DEFAULTED AIRFLOW (MSB)
    I get value 2 at idle
    If I use math function GM/SEC = 512N/65536 then I get 0
    I tried word#47 GP6EAFND+1 GMP6-E NON-DEFAULTED AIRFLOW (LSB)
    ~200 at idle and it decreases when pushing the pedal.

  13. #13

  14. #14
    Fuel Injected!
    Join Date
    Jul 2019
    Location
    Orange, CA
    Posts
    757
    What steveo said. If the MSB of the 16-bit Word is 2 and the LSB of the 16-bit word is 200, then the complete value of the 16-bit word is 712. Plugging 712 into the MAF conversion equation from earlier, it comes out to 5.5625 gm/s at idle. At hot idle my '95 Corvette hovers around 7 gm/s, for comparison.
    1990 Corvette (Manual)
    1994 Corvette (Automatic)
    1995 Corvette (Manual)

  15. #15
    Fuel Injected!
    Join Date
    Apr 2020
    Location
    Belarus
    Age
    36
    Posts
    152
    Thanx guys, i've already fixed it and it works.I was trying to get data from 1 byte, not 2. Time after time.

Similar Threads

  1. MAP sensor not changing in datastream?
    By CDeeZ in forum GM EFI Systems
    Replies: 5
    Last Post: 02-05-2019, 05:49 AM
  2. $EE How to get MAF Hz in datastream
    By babywag in forum GM EFI Systems
    Replies: 8
    Last Post: 12-07-2016, 12:34 AM
  3. Replies: 2
    Last Post: 06-11-2014, 02:56 PM
  4. Hacking the DataStream
    By gregs78cam in forum TunerPro Tuning Talk
    Replies: 64
    Last Post: 03-03-2012, 09:53 PM
  5. ALDL DataStream Information as Excel XLS
    By historystamp in forum Gear Heads
    Replies: 6
    Last Post: 02-28-2012, 10:47 PM

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
  •