|
||||||
| Software Tuning Discuss all software tuning topics. |
![]() |
|
|
Thread Tools | Search this Thread |
|
|
#15 |
|
Senior Member
Join Date: Jan 2013
Drives: 2013 Asphalt FR-S
Location: Orange County
Posts: 1,639
Thanks: 632
Thanked 982 Times in 537 Posts
Mentioned: 100 Post(s)
|
Alright, I think I know what is going on here. On my E85 rom, I have had the long term fuel trims disabled for a long while now (by setting the closed loop target addative table to zero). I believe this is the reason I have not seen the "limp mode" rich fueling before.
Everything I have read on romraider indicates that the ecu only really cares about the sensor signal to the ecu, and if that is missing or out of range, it will go into limp mode with the rich closed loop targets. 02 can be unplugged, so long as the heater dtc's are turned off and you are feeding a narrow band signal to the ecu in place of the secondary 02 signal. What I don't understand though, is why zeroing the AF3 tables does not remove the rich target as it normally does on the other subaru ecu's that have this limp mode issue. I think the only real "fix" for removing the rear 02 on this platform is to feed a narrow band signal to the ecu.
__________________
~Namaste~ |
|
|
|
|
|
#16 |
|
Senior Member
Join Date: Feb 2013
Drives: 86 GT
Location: Australia
Posts: 100
Thanks: 47
Thanked 11 Times in 10 Posts
Mentioned: 3 Post(s)
|
So can we successfully disable the secondary O2 and replace it with an aftermarket wideband for external logging? Or is it better to just have another bung welded in on the factory header or front pipe (not sure where the LC-1 will fit) and avoid having to muck around with disabling codes and zeroing tables (I can't see one the one ztan mentioned either on A01G RR defs).
I just want to be able to have wideband AFR logging on the laptop for street tuning. |
|
|
|
|
|
#17 | |
|
Senior Member
Join Date: Jan 2013
Drives: 2013 Asphalt FR-S
Location: Orange County
Posts: 1,639
Thanks: 632
Thanked 982 Times in 537 Posts
Mentioned: 100 Post(s)
|
Quote:
=================================== As my final test, I put the rear 02 back in the pipe with no other changes, my rich closed loop target went away, the previous config was with the sensor plugged in but not in the pipe. This matches all the info on romraider about the newer 32bit ecu's. What does not match, is that zeroing all 3 (or any combination of) of the AF3 maps has zero effect on the rich target when the rear 02 is either unplugged or in free air and the long term trims are enabled (closed loop target comp table is non zero). At least for my ZA1JA00C ecu. Mine is one of the freaks that likes to reset IAM to the rom's default if it sits for more than a couple of hours. For What it's worth, mine never obeyed the AF learning limits regardless of how they were set when i tested them a long while ago. That is true for both brzedit and the open source tools. Same is true for AF3. No clue why but I'm starting to think there may be multiple hardware version ecu's out there or i just got bad ecu from the factory. It's either that, or brzedit changed a piece of code or a register in the ecu that the other flashing tools does not overwrite. Now that I am on my second tank of pump gas (and fuel trims are very low again) I can test turning off the long term trims and running with the rear 02 unplugged again, but I am positive it will work fine that way, just without any long term trims. I may just bite the bullet and run the narrow band signal to the eco to keep it happy since I will absolutely want my wideband connected if I add a supercharger latter this year.
__________________
~Namaste~ |
|
|
|
|
|
|
#18 | |
|
Senior Member
Join Date: Feb 2013
Drives: 86 GT
Location: Australia
Posts: 100
Thanks: 47
Thanked 11 Times in 10 Posts
Mentioned: 3 Post(s)
|
Quote:
|
|
|
|
|
|
|
#19 |
|
Senior Member
Join Date: Jan 2013
Drives: 2013 Asphalt FR-S
Location: Orange County
Posts: 1,639
Thanks: 632
Thanked 982 Times in 537 Posts
Mentioned: 100 Post(s)
|
For a temporary solution you could just make up a socket or pin (not sure which you need since I'm not looking at the connector) connected to the lc-1 analogue output wire, unplug the factory 02, insert your lc-1 connector on or in ping 3 of the ecu side connector and use the secondary 02 bung for the lc.
__________________
~Namaste~ |
|
|
|
| The Following User Says Thank You to mad_sb For This Useful Post: | dave- (02-18-2015) |
|
|
#20 | |
|
Senior Member
Join Date: Jul 2013
Drives: Toyota 86
Location: Gold Coast, Australia
Posts: 311
Thanks: 44
Thanked 362 Times in 145 Posts
Mentioned: 60 Post(s)
|
Quote:
I've had a look at the disassembly to see what happens to the rear O2 sensor input. A01G ROM logging for Rear O2 sensor input: Code:
paramname = O2S2_V paramid = 0xFFF842FA databits = 16 scalingrpn = x,0.000076293945,* paramname = O2S2 paramid = 0xFFF8D274 isfloat = 1 Code:
ROM:000AFE12 sub_AFE12: ; CODE XREF: Q_OBD_Mode_01+3Ep ROM:000AFE12 sts.l pr, @-r15 ; Store System Register Long ROM:000AFE14 mov.l #Pull_16_bit_sensor, r2 ; 12F24 ROM:000AFE16 jsr @R2 ; Pull_16_bit_sensor ; Jump to Subroutine ROM:000AFE18 mov #h'2C, r4 ; ',' ; Move Immediate Byte Data ROM:000AFE1A extu.w r0, r6 ; Extend as Unsigned (Word) ROM:000AFE1C lds r6, fpul ; Load to System Register ROM:000AFE1E float fpul, fr8 ; Floating-point convert from integer ROM:000AFE20 mova h'AFFFC, r0 ; Move Effective Address ROM:000AFE22 fmov.s @r0, fr9 ; Floating-point move single precision ROM:000AFE24 fmul fr9, fr8 ; Floating-point multiply ROM:000AFE26 movi20 #RAM_AF_SENS_2, r2 ; FFF8D274 ROM:000AFE2A lds.l @r15+, pr ; Load to System Register Long ROM:000AFE2C rts ; Return from Subroutine ROM:000AFE2E fmov.s fr8, @R2 ; Floating-point move single precision ROM:000AFE2E ; End of function sub_AFE12 It should be possible to put a hook into the sensor pull subroutine and feed it narrowband data (based off the front O2 sensor) if r4 = 0x2C, whilst using the sensor input for something else without giving the ECU too much illogical information and sending it into some kind of limp home mode. |
|
|
|
|
| The Following User Says Thank You to ztan For This Useful Post: | mad_sb (04-30-2015) |
|
|
#21 |
|
Senior Member
Join Date: Apr 2013
Drives: 2013 FR-S
Location: Seattle
Posts: 806
Thanks: 202
Thanked 321 Times in 199 Posts
Mentioned: 18 Post(s)
|
How are people disassembling the roms? I'd love to get my hands on this.
__________________
2013 Whiteout 6AT FR-S | Perrin Inlet Tube + 2.75" CAI | OpenFlash Header | P&L Catback | 4.88 Final Drive | Dialed in OFT 2.0x Stage 2 E85 | 18x8 Enkei Raijin + 225/40 Michelin Pilot Super Sport | 17x7 Stock + 215/45 Michelin X-Ice Xi-2
|
|
|
|
|
|
#22 | |
|
Senior Member
Join Date: Oct 2012
Drives: UK GT86
Location: UK
Posts: 3,040
Thanks: 185
Thanked 1,633 Times in 1,113 Posts
Mentioned: 156 Post(s)
|
Quote:
__________________
.: Stealth 86 :.
Abbey Motorsport/K47 Tuned Sprintex 210 Supercharger Kodename 47 DJ: Soundcloud / Instagram / Facebook |
|
|
|
|
|
|
#23 | |
|
Senior Member
Join Date: Jan 2013
Drives: 2013 Asphalt FR-S
Location: Orange County
Posts: 1,639
Thanks: 632
Thanked 982 Times in 537 Posts
Mentioned: 100 Post(s)
|
Great info man!
Quote:
__________________
~Namaste~ |
|
|
|
|
|
|
|
|
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Speed Sensor Bases Limp mode after new tires | MrSlay | Wheels | Tires | Spacers | Hub -- Sponsored by The Tire Rack | 12 | 03-30-2018 10:31 PM |
| Dead battery; starts up in limp mode | kilrb | Issues | Warranty | Recalls / TSB | 15 | 01-04-2018 02:54 PM |
| Car in Limp mode... No CEL | Sportsguy83 | Issues | Warranty | Recalls / TSB | 60 | 08-20-2014 03:35 AM |
| question: how to remove rear seatback? | mid_life_crisis | DIY (Do-It-Yourself) Guides | 15 | 12-11-2013 02:49 PM |
| Remove Rear EBrake Guard | console_cowboy | Wheels | Tires | Spacers | Hub -- Sponsored by The Tire Rack | 2 | 12-03-2013 06:19 PM |