Peripheries & Disabling Secondary O2 sensors
If you're only running 2 O2 sensors, you can disable the secondary ones in the code without getting a check engine light. Unfortunately, as a result, if you're an OBD2 car, your cat efficiency tests will never be set to Ready and Pass. Just a word of warning. Same goes with any other periphery bit you disable. I'm working on a patch for this.
EDIT: I have finally got the peripheries correctly mapped out. If you leave Periphery 0 alone, you will have no issues. Even if you have a vac-reduction do not disable the periphery 0 functions. Your car will run like ass because those functions are used to calculate IPW. Just disable the CELs in periphery 2.
These are the correctly mapped peripheries. Chrome V2 will come with this, however, you V1 guys will need to open your 23861XX6 XML, delete the old tables and replace them with this code:
Code:
<scaling name="EnableDisableBit" storagetype="bloblist" storagebits="1">
<data name="Off" value="00"/>
<data name="Enabled" value="01"/>
</scaling>
<table name="ECU Periphery0 Bits (272) +0" category="Periphery" address="10272" type="2D" scaling="EnableDisableBit">
<table name="Periphery Bit Number" type="Static Y Axis" flipy="true" elements="16">
<data>bit.15 .</data>
<data>bit.14 O2 Heater Functions .</data>
<data>bit.13 .</data>
<data>bit.12 Purge function .</data>
<data>bit.11 EGR function .</data>
<data>bit.10 Timing Retard on Accel .</data>
<data>bit.09 Cat Warmup Ign Retard Function (Leave OFF) .</data>
<data>bit.08 .</data>
<data>bit.07 Knock Sensor/Octane Functions .</data>
<data>bit.06 Speed Limit Function .</data>
<data>bit.05 .</data>
<data>bit.04 Closed Loop function .</data>
<data>bit.03 .</data>
<data>bit.02 OBD2 Bytes A and C .</data>
<data>bit.01 OBD2 Bytes B and D .</data>
<data>bit.00 .</data>
</table>
</table>
<table name="ECU Periphery1 Chrome Mods Bits*" category="Periphery" address="10282" type="2D" scaling="EnableDisableBit">
<table name="Periphery Bit Number" type="Static Y Axis" flipy="true" elements="16">
<data>bit.15 .</data>
<data>bit.14 .</data>
<data>bit.13 .</data>
<data>bit.12 .</data>
<data>bit.11 .</data>
<data>bit.10 .</data>
<data>bit.09 .</data>
<data>bit.08 .</data>
<data>bit.07 .</data>
<data>bit.06 .</data>
<data>bit.05 .</data>
<data>bit.04 .</data>
<data>bit.03 .</data>
<data>bit.02 .</data>
<data>bit.01 .</data>
<data>bit.00 Chrome Mod Lean Spool .</data>
</table>
</table>
<table name="ECU Periphery2 Bits (292) +0" category="Periphery" address="10292" type="2D" scaling="EnableDisableBit">
<table name="Periphery Bit Number" type="Static Y Axis" flipy="true" elements="16">
<data>bit.15 P0443 P0446 P0403 P1104 P1105 Solenoids Test .</data>
<data>bit.14 P0450 Fuel Tank Pressure Sensor Test .</data>
<data>bit.13 P0442 Evap Incorrect Purge Flow Test .</data>
<data>bit.12 .</data>
<data>bit.11 P0135 P0141 P0155 P0161 O2 Heater Test .</data>
<data>bit.10 P1400 MAP Sensor Test .</data>
<data>bit.09 P0403 EGR Solenoid Test .</data>
<data>bit.08 P0505 Idle Control System Test .</data>
<data>bit.07 P0170 P0173 Front Rear Fuel Trim Test .</data>
<data>bit.06 P0125 Excessive Time to Enter Closed Loop .</data>
<data>bit.05 P030x Misfire Detected (set with bit 4) .</data>
<data>bit.04 P030x Misfire Detected (set with bit 5) .</data>
<data>bit.03 P0136 P0156 Front Rear Secondary O2 Sensor .</data>
<data>bit.02 P0130 P0150 Front Rear Primary O2 Sensor .</data>
<data>bit.01 P0421 P0431 Warmup Pre-cats Efficency Low .</data>
<data>bit.00 ALL OBD2 DTC Lookups .</data>
</table>
</table>
<table name="ECU Periphery3 Bits (2A2) +0" category="Periphery" address="102a2" type="2D" scaling="EnableDisableBit">
<table name="Periphery Bit Number" type="Static Y Axis" flipy="true" elements="16">
<data>bit.15 .</data>
<data>bit.14 .</data>
<data>bit.13 .</data>
<data>bit.12 .</data>
<data>bit.11 .</data>
<data>bit.10 .</data>
<data>bit.09 .</data>
<data>bit.08 .</data>
<data>bit.07 P0551 Power Steering Pressure Sensor Circuit .</data>
<data>bit.06 P0500 Vehicle Speed Sensor Malfunction .</data>
<data>bit.05 .</data>
<data>bit.04 .</data>
<data>bit.03 .</data>
<data>bit.02 P1103 WasteGate Actuator Malfunction .</data>
<data>bit.01 P0510 Closed Throttle Position Switch .</data>
<data>bit.00 P1600 Battery Voltage Low .</data>
</table>
</table>
Bookmarks