Page 4 of 21 FirstFirst ... 2345614 ... LastLast
Results 31 to 40 of 207

Thread: AEM X-Series OBDII Wideband UEGO AFR Sensor Controller Gauge

  1. #31
    Member
    Join Date
    Jul 2016
    Posts
    89

    Default

    I don't expect the AEM would support the packet-based high-speed logging that EFILive V8 uses. It most likely only supports generic scan mode which V8 does not support/use.
    If I had the expected format, I could probably implement it.

  2. #32
    Lifetime Member
    Join Date
    Feb 2007
    Posts
    594

    Default

    Quote Originally Posted by dr.mike View Post
    If I had the expected format, I could probably implement it.
    That would be great, I'm still holding on to my LC-1's for now unless,...

  3. #33
    Member
    Join Date
    Jul 2016
    Posts
    89

    Default

    How could I get hold of the communication protocol required to make this work?

  4. #34
    EFILive Developer Site Admin Blacky's Avatar
    Join Date
    Mar 2003
    Posts
    9,500

    Default

    Quote Originally Posted by dr.mike View Post
    If I had the expected format, I could probably implement it.
    Now I'm confused, do you have access to work on or modify the AEM controller's firmware? I assume that the AEM only supports generic scanning (SAE-J1979 Mode $01) and does not support packet based scanning (SAE-J2190 Mode $2C and Mode $2A*).

    Mode $01 is a generic PID request that simply requests a single PID's value and is what I assume the AEM is using (EFILive V8 does not use this mode)
    Mode $2C defines a dynamic data packet that will returns multiple (selected) PIDs' values.
    Mode $2A* requests the controller to continuously transmit one or more previously defined dynamic packets of PID data at various asynchronous speeds (slow, medium or fast) without FlashScan constantly requesting data.

    I don't believe the AEM supports modes $2C and 2A* which are the only scan modes supported by V8.
    Again, assuming the ASM does not already implement modes $2C and $2A*, then to make the AEM work with those modes would require the manufacturer's of the AEM to modify the wide band controllers' firmware to support them.

    V7 supports Mode $01 but since V7 was designed for use with VPW based controllers the FlashScan/AutoCal devices have been fitted with a CAN<->VPW bridge (similar to what GM calls their Tech2's CANdi interface). However the CAN<->VPW bridge in FlashScan and AutoCal was only ever designed to translate a single module during data logging.

    So even if you could fool FlashScan into thinking the AEM was a normal CAN module (which is highly unlikely to start with) you could only log data from the AEM and not from the ECM and the AEM simultaneously.

    I'm happy to be proven wrong and if the AEM does support modes $2C and $2A* then it would probably be something we could add support for relatively painlessly.

    *Mode $2A or the manufacturer's specific alternative mode.

    Regards
    Paul
    Before asking for help, please read this.

  5. #35
    Member
    Join Date
    Jul 2016
    Posts
    89

    Default

    Yes. I can tweak the AEM firmware. That is how I got the OBDII working for the AEM wb , in the first place. I added the OBDII mode $01 responses to the CAN interface.

    I will look into adding the $2A / $2C modes. Would that do it for the V8 ?

  6. #36
    Lifetime Member
    Join Date
    Mar 2006
    Posts
    4,935

    Default

    Paul, simply put- Yes he does. Dr. Mike handled the firmware modification of the original AEM X-Series WB (30-0300) with AEM's proprietary data acquisition module (via CAN) to support logging via regular CAN protocol (not sure which one HPT implemented). AEM now sells his (or a close variant) modded firmware as their OBDII compatible version (labeled 30-0333).

    V8 is the Scan tool, from what it sounds like this is actually a limitation of the legacy V7 Scan tool and the FlashScan V2 hardware (correct me if I'm wrong here Paul/Ross). If you could implement either Mode $2A or $2C, it sounds like Paul could get it working pretty easily.

    I'm happy to be a beta tester on this if you need someone Dr Mike, I've been eyeing one of these WBO2s for a bit now and would be happy to help with the EFILive integration!
    ~Erik~
    2013 Sonic RS Manual - 1.4L I4T E78, tuned, turbo mods, etc.
    2008 TrailBlazer SS 3SS AWD Summit White - LS2 E67/T42, bolt ons, suspension, etc.
    2002 Chevy TrailBlazer LT 4X4 Summit White - 4.2L I6 P10, lifted, wheels, etc.

  7. #37
    Member
    Join Date
    Jul 2016
    Posts
    89

    Default

    Something like :

    ( With the WB programmed to be 0x7e6 )

    Request: 7E6 04 2C F7 00 24 - Place 0x24 PID into Dynamic DPID 0xFE
    Reply : 7EE 02 6C F7 00 00 00 00 00 - Positive Response

    Request: 7E6 03 AA 04 F7 - Request at a Fast Rate Dynamic DPID 0xFE (which now contains 0x24 Lambda )
    Reply: 5EE FE XX XX XX XX 00 00 00 - Where XX is the Lambda/eq ratio. - Data. Sent continually


    Request: 7E6 01 3E - Should occur around once every 3 seconds - Keep-alive for thee 5EE message.
    Reply: 7EE 01 7E 00 00 00 00 00 00 - Positive response.

    ??

    Should be doable.

  8. #38
    Junior Member
    Join Date
    Apr 2015
    Posts
    41

    Default

    Now this is how user feedback should go. Hope they take info and work with ya Dr.mike. No good reason to not make it work. It is a superior logging method than eliminates a lot of hassles, along with higher accuracy.

  9. #39
    EFILive Developer Site Admin Blacky's Avatar
    Join Date
    Mar 2003
    Posts
    9,500

    Default

    Quote Originally Posted by dr.mike View Post
    Something like :

    ( With the WB programmed to be 0x7e6 )

    Request: 7E6 04 2C F7 00 24 - Place 0x24 PID into Dynamic DPID 0xFE
    Reply : 7EE 02 6C F7 00 00 00 00 00 - Positive Response

    Request: 7E6 03 AA 04 F7 - Request at a Fast Rate Dynamic DPID 0xFE (which now contains 0x24 Lambda )
    Reply: 5EE FE XX XX XX XX 00 00 00 - Where XX is the Lambda/eq ratio. - Data. Sent continually


    Request: 7E6 01 3E - Should occur around once every 3 seconds - Keep-alive for thee 5EE message.
    Reply: 7EE 01 7E 00 00 00 00 00 00 - Positive response.

    ??

    Should be doable.
    Request: 7E6 04 2C FE 00 24 - Place 0x24 PID into Dynamic DPID 0xFE
    Reply : 7EE 02 6C FE 00 00 00 00 00 - Positive Response
    I presume that was just a typo.

    I'm pretty sure FlashScan/AutoCal does not require a response to the 01,3E keep alive.

    Request: 7E6 03 AA 04 F7 - Request at a Fast Rate Dynamic DPID 0xFE (which now contains 0x24 Lambda )
    Correct, it should be AA, not 2A.

    I'll need to do some minor mods to FlashScan to support three controllers simultaneously - because those with ECM+TCM will want to use this to log ECM+TCM+AEM simultaneously.

    How can I get my hands an an AEM controller that I can use for testing? Happy to purchase one if required.

    Regards
    Paul
    Before asking for help, please read this.

  10. #40
    Member
    Join Date
    Jul 2016
    Posts
    89

    Default

    I can get you a 30-0333. And, hopefully, the USB reflash tool, in case I need to update it.

    Once we have it working, I can get the AEM guys to merge it into the release code for the 30-0333.

    PM me, and we can work out the details.

    Also, if you are going to crack it open, maybe allow for 4 controllers. Seems a lot of people like to use 2 widebands.

Page 4 of 21 FirstFirst ... 2345614 ... LastLast

Similar Threads

  1. SM-AFR, DM-6 WIDEBAND AFR GAUGE COMBO good for EFILive Monitoring?
    By Black LS1 T/A in forum Forced Induction and Nitrous Oxide (N20)
    Replies: 7
    Last Post: January 17th, 2016, 04:11 PM
  2. V1, randomly cannot log AFR w/ AEM Uego
    By Tan327 in forum General
    Replies: 8
    Last Post: February 24th, 2012, 03:40 PM
  3. AEM UEGO wideband Pid?
    By derkscustomcars in forum External A/D inputs
    Replies: 2
    Last Post: August 8th, 2011, 02:42 AM
  4. An AFR Gauge is a pretty good E10+ fuel sensor
    By 98 tigershark in forum General (Petrol, Gas, Ethanol)
    Replies: 0
    Last Post: September 19th, 2009, 07:16 PM
  5. AEM Gauge type 6 in 1 WB UEGO controller
    By JET LEE in forum Gen III V8 Specific
    Replies: 10
    Last Post: January 25th, 2007, 09:25 AM

Posting Permissions

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