├── debian ├── docs ├── compat ├── dirs ├── changelog ├── control ├── copyright └── rules ├── .gitignore ├── pyobd.gif ├── doc ├── super_screenshot.bmp ├── super_screenshot.tiff ├── mac_super_screenshot.png ├── x11_super_screenshot.png └── install.html ├── pyobd.desktop ├── obd_utils.py ├── debugEvent.py ├── obd_capture.py ├── obd_recorder.py ├── obd_sensors.py ├── obd_io.py ├── COPYING ├── pyobd └── obd2_codes.py /debian/docs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /pyobd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/pyobd/HEAD/pyobd.gif -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | usr/bin/ 2 | usr/share/applications 3 | usr/share/pyobd 4 | -------------------------------------------------------------------------------- /doc/super_screenshot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/pyobd/HEAD/doc/super_screenshot.bmp -------------------------------------------------------------------------------- /doc/super_screenshot.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/pyobd/HEAD/doc/super_screenshot.tiff -------------------------------------------------------------------------------- /doc/mac_super_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/pyobd/HEAD/doc/mac_super_screenshot.png -------------------------------------------------------------------------------- /doc/x11_super_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/geohot/pyobd/HEAD/doc/x11_super_screenshot.png -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- 1 | pyobd (0.9.2-2) unstable; urgency=low 2 | 3 | * Initial release (Closes: #nnnn) 4 | 5 | -- SeCons Ltd. www.obdtester.com Fri, 11 Sep 2009 15:24:35 +0200 6 | -------------------------------------------------------------------------------- /pyobd.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Encoding=UTF8 3 | Icon=/usr/share/pyobd/pyobd.gif 4 | Name=pyOBD: OBD2 Diagnostics 5 | Comment=Car On-Board 2 vehicle diagnostics (ELM-32x compatible interface) 6 | Exec=python /usr/bin/pyobd 7 | Terminal=false 8 | Type=Application 9 | Categories=Utility; 10 | StartupNotify=true 11 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- 1 | Source: pyobd 2 | Section:utils 3 | Priority: optional 4 | Maintainer: SeCons Ltd. 5 | Build-Depends: debhelper (>= 7) 6 | Standards-Version: 3.8.0 7 | Homepage: 8 | 9 | Package: pyobd 10 | Architecture: any 11 | Depends: python,python-serial,python-wxgtk2.6 12 | Description:pyOBD is an OBD-II (SAE-J1979) compliant scantool software written entirely in Python. It is meant to interface with the low cost ELM 32x devices such as ELM-USB. 13 | pyOBD was written by Donour Sizemore, now maintained and improved by SECONS Ltd.i and it is Free Software and is distributed under the terms of the GPL. For Python devlopers, pyOBD provides a single module, obd_io, that allows high level control over sensor data and diagnostic trouble code managment. The entire package has been tested to work on both Mac OSX 10.3 (panther) and Gentoo Linux. Generally speaking, any Posix-type system meeting the requirements below will be supported. In theory, Windows is also supported but has not been tested. 14 | -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- 1 | This package was debianized by: 2 | 3 | SeCons Ltd. on Fri, 11 Sep 2009 15:24:35 +0200 4 | 5 | It was downloaded from: 6 | 7 | 8 | 9 | Upstream Author(s): 10 | 11 | SeCons Ltd. 12 | 13 | Copyright: 14 | 15 | Copyright 2004 Donour Sizemore (donour@uchicago.edu) 16 | Copyright 2009 Secons Ltd. (www.obdtester.com) 17 | 18 | License: 19 | 20 | pyOBD package is free software; you can redistribute it and/or modify 21 | it under the terms of the GNU General Public License as published by 22 | the Free Software Foundation; either version 2 of the License, or 23 | (at your option) any later version. 24 | 25 | pyOBD package is distributed in the hope that it will be useful, 26 | but WITHOUT ANY WARRANTY; without even the implied warranty of 27 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 28 | GNU General Public License for more details. 29 | 30 | You should have received a copy of the GNU General Public License 31 | along with this package; if not, write to the Free Software 32 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 33 | 34 | On Debian systems, the complete text of the GNU General 35 | Public License can be found in `/usr/share/common-licenses/GPL'. 36 | 37 | The Debian packaging is: 38 | 39 | Copyright C) 2009, SeCons Ltd. 40 | 41 | and is licensed under the GPL, see above. 42 | 43 | 44 | # Please also look if there are files or directories which have a 45 | # different copyright/license attached and list them here. 46 | -------------------------------------------------------------------------------- /obd_utils.py: -------------------------------------------------------------------------------- 1 | import serial 2 | import platform 3 | 4 | def scanSerial(): 5 | """scan for available ports. return a list of serial names""" 6 | available = [] 7 | for i in range(256): 8 | try: #scan standart ttyS* 9 | s = serial.Serial(i) 10 | available.append(s.portstr) 11 | s.close() # explicit close 'cause of delayed GC in java 12 | except serial.SerialException: 13 | pass 14 | for i in range(256): 15 | try: #scan USB ttyACM 16 | s = serial.Serial("/dev/ttyACM"+str(i)) 17 | available.append(s.portstr) 18 | s.close() # explicit close 'cause of delayed GC in java 19 | except serial.SerialException: 20 | pass 21 | for i in range(256): 22 | try: 23 | s = serial.Serial("/dev/ttyUSB"+str(i)) 24 | available.append(s.portstr) 25 | s.close() # explicit close 'cause of delayed GC in java 26 | except serial.SerialException: 27 | pass 28 | for i in range(256): 29 | try: 30 | s = serial.Serial("/dev/ttyd"+str(i)) 31 | available.append(s.portstr) 32 | s.close() # explicit close 'cause of delayed GC in java 33 | except serial.SerialException: 34 | pass 35 | 36 | # ELM-USB shows up as /dev/tty.usbmodemXXXX, where XXXX is a changing hex string 37 | # on connection; so we have to search through all 64K options 38 | if len(platform.mac_ver()[0])!=0: #search only on MAC 39 | for i in range (65535): 40 | extension = hex(i).replace("0x","", 1) 41 | try: 42 | s = serial.Serial("/dev/tty.usbmodem"+extension) 43 | available.append(s.portstr) 44 | s.close() 45 | except serial.SerialException: 46 | pass 47 | 48 | return available 49 | -------------------------------------------------------------------------------- /debugEvent.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | ########################################################################### 3 | # obd_sensors.py 4 | # 5 | # Copyright 2004 Donour Sizemore (donour@uchicago.edu) 6 | # Copyright 2009 Secons Ltd. (www.obdtester.com) 7 | # 8 | # This file is part of pyOBD. 9 | # 10 | # pyOBD is free software; you can redistribute it and/or modify 11 | # it under the terms of the GNU General Public License as published by 12 | # the Free Software Foundation; either version 2 of the License, or 13 | # (at your option) any later version. 14 | # 15 | # pyOBD is distributed in the hope that it will be useful, 16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | # GNU General Public License for more details. 19 | # 20 | # You should have received a copy of the GNU General Public License 21 | # along with pyOBD; if not, write to the Free Software 22 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 | ########################################################################### 24 | try: 25 | import wx 26 | 27 | EVT_DEBUG_ID = 1010 28 | 29 | def debug_display(window, position, message): 30 | if window is None: 31 | print message 32 | else: 33 | wx.PostEvent(window, DebugEvent([position, message])) 34 | 35 | class DebugEvent(wx.PyEvent): 36 | """Simple event to carry arbitrary result data.""" 37 | def __init__(self, data): 38 | """Init Result Event.""" 39 | wx.PyEvent.__init__(self) 40 | self.SetEventType(EVT_DEBUG_ID) 41 | self.data = data 42 | except ImportError as e: 43 | def debug_display(window, position, message): 44 | print message 45 | 46 | -------------------------------------------------------------------------------- /doc/install.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 |

Installation Instructions

8 | 9 |

Prerequisites:

10 | 11 | First, install these and make sure they work. 12 | 13 |

Python:

14 | 15 | A recent release is needed. Developement took place using the 2.3.x 16 | release series. Any 2.X release should work, but hasn't been 17 | tested. Under MacOSX 10.3 (panther), Python is installed by 18 | default. Installation instructions are available at the python 19 | website: www.python.org 20 | 21 |

PySerial

22 | 23 | This is needed to communicate with the serial port. It is available 24 | from sourceforge: http://pyserial.sourceforge.net/. Download 26 | and install it. Use version 2.0. 27 | 28 |

WxPython (optional):

29 | 30 | WxPython is needed if you want to use the pretty graphical interface 31 | to sensor data and DTC management. It's available at www.wxpython.org. Version 33 | 2.4 is required. pyOBD will not work with the 2.5 34 | release series. 35 | 36 |

Ncurses (optional):

37 | 38 | In addition to wxpython, there is a text/ncurses interface. To use 39 | it, enable the ncurses module when you build python. It isn't very 40 | polished and use is not recommended. 41 | 42 | 43 |

Installation:

44 | 45 | After those requirements, installation is a snap. Simply download the 46 | release tarball and uncompress it. To "install" pyOBD on the system, simply copy 47 | the release directory to wherever you want (i.e. /opt, /usr/local). 48 | 49 | To use the wx interface run python wxgui.py. If you're using 50 | MacOSX, substitute "pythonw" for "python". 51 | 52 |
53 | -- Donour Sizemore 54 | 55 | 56 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | # -*- makefile -*- 3 | # Sample debian/rules that uses debhelper. 4 | # This file was originally written by Joey Hess and Craig Small. 5 | # As a special exception, when this file is copied by dh-make into a 6 | # dh-make output file, you may use that output file without restriction. 7 | # This special exception was added by Craig Small in version 0.37 of dh-make. 8 | 9 | # Uncomment this to turn on verbose mode. 10 | #export DH_VERBOSE=1 11 | 12 | 13 | 14 | 15 | 16 | configure: configure-stamp 17 | 18 | configure-stamp: 19 | dh_testdir 20 | # Add here commands to configure the package. 21 | 22 | touch configure-stamp 23 | 24 | 25 | build: build-stamp 26 | 27 | build-stamp: configure-stamp 28 | dh_testdir 29 | touch build-stamp 30 | 31 | clean: 32 | dh_testdir 33 | dh_testroot 34 | rm -f build-stamp configure-stamp 35 | dh_clean 36 | 37 | install: build 38 | dh_testdir 39 | dh_testroot 40 | dh_prep 41 | dh_installdirs 42 | 43 | #Create temp dir 44 | mkdir -p $(CURDIR)/debian/pyobd 45 | 46 | #Install program files 47 | 48 | cp debugEvent.py $(CURDIR)/debian/pyobd/usr/share/pyobd/debugEvent.py 49 | cp obd_io.py $(CURDIR)/debian/pyobd/usr/share/pyobd/obd_io.py 50 | cp obd_sensors.py $(CURDIR)/debian/pyobd/usr/share/pyobd/obd_sensors.py 51 | cp obd2_codes.py $(CURDIR)/debian/pyobd/usr/share/pyobd/obd2_codes.py 52 | cp pyobd $(CURDIR)/debian/pyobd/usr/share/pyobd/pyobd 53 | cp pyobd.gif $(CURDIR)/debian/pyobd/usr/share/pyobd/pyobd.gif 54 | 55 | #Install menufile 56 | cp pyobd.desktop $(CURDIR)/debian/pyobd/usr/share/applications/pyobd.desktop 57 | cp -d pyobdlink $(CURDIR)/debian/pyobd/usr/bin/pyobd 58 | 59 | #TODO:Install man files 60 | 61 | # Build architecture-independent files here. 62 | binary-indep: install 63 | # We have nothing to do by default. 64 | 65 | # Build architecture-dependent files here. 66 | binary-arch: install 67 | dh_testdir 68 | dh_testroot 69 | dh_installchangelogs 70 | dh_installdocs 71 | dh_installexamples 72 | # dh_install 73 | # dh_installmenu 74 | # dh_installdebconf 75 | # dh_installlogrotate 76 | # dh_installemacsen 77 | # dh_installpam 78 | # dh_installmime 79 | # dh_python 80 | # dh_installinit 81 | # dh_installcron 82 | # dh_installinfo 83 | dh_installman 84 | dh_link 85 | dh_strip 86 | dh_compress 87 | dh_fixperms 88 | # dh_perl 89 | # dh_makeshlibs 90 | dh_installdeb 91 | dh_shlibdeps 92 | dh_gencontrol 93 | dh_md5sums 94 | dh_builddeb 95 | 96 | binary: binary-indep binary-arch 97 | .PHONY: build clean binary-indep binary-arch binary install configure 98 | -------------------------------------------------------------------------------- /obd_capture.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import obd_io 4 | import serial 5 | import platform 6 | import obd_sensors 7 | from datetime import datetime 8 | import time 9 | 10 | from obd_utils import scanSerial 11 | 12 | class OBD_Capture(): 13 | def __init__(self): 14 | self.port = None 15 | localtime = time.localtime(time.time()) 16 | 17 | def connect(self): 18 | #portnames = scanSerial() 19 | portnames = ['/dev/ttyUSB0'] 20 | print portnames 21 | for port in portnames: 22 | self.port = obd_io.OBDPort(port, None, 2, 2) 23 | if(self.port.State == 0): 24 | self.port.close() 25 | self.port = None 26 | else: 27 | break 28 | 29 | if(self.port): 30 | print "Connected to "+self.port.port.name 31 | 32 | def is_connected(self): 33 | return self.port 34 | 35 | def capture_data(self): 36 | 37 | #Find supported sensors - by getting PIDs from OBD 38 | # its a string of binary 01010101010101 39 | # 1 means the sensor is supported 40 | self.supp = self.port.sensor(0)[1] 41 | self.supportedSensorList = [] 42 | self.unsupportedSensorList = [] 43 | 44 | # loop through PIDs binary 45 | #for i in range(0, len(self.supp)): 46 | for i in range(0, min(len(self.supp), len(obd_sensors.SENSORS)-1)): 47 | if self.supp[i] == "1": 48 | # store index of sensor and sensor object 49 | self.supportedSensorList.append([i+1, obd_sensors.SENSORS[i+1]]) 50 | else: 51 | self.unsupportedSensorList.append([i+1, obd_sensors.SENSORS[i+1]]) 52 | pass 53 | 54 | for supportedSensor in self.supportedSensorList: 55 | print "supported sensor index = " + str(supportedSensor[0]) + " " + str(supportedSensor[1].shortname) 56 | 57 | time.sleep(3) 58 | 59 | if(self.port is None): 60 | return None 61 | 62 | #Loop until Ctrl C is pressed 63 | try: 64 | while True: 65 | localtime = datetime.now() 66 | current_time = str(localtime.hour)+":"+str(localtime.minute)+":"+str(localtime.second)+"."+str(localtime.microsecond) 67 | log_string = current_time + "\n" 68 | results = {} 69 | for supportedSensor in self.supportedSensorList: 70 | sensorIndex = supportedSensor[0] 71 | (name, value, unit) = self.port.sensor(sensorIndex) 72 | log_string += name + " = " + str(value) + " " + str(unit) + "\n" 73 | 74 | print log_string, 75 | f.write(log_string) 76 | time.sleep(0.5) 77 | 78 | except KeyboardInterrupt: 79 | self.port.close() 80 | print("stopped") 81 | 82 | f = open("/home/drive/data/obd", "a") 83 | 84 | if __name__ == "__main__": 85 | 86 | o = OBD_Capture() 87 | o.connect() 88 | time.sleep(3) 89 | if not o.is_connected(): 90 | print "Not connected" 91 | else: 92 | o.capture_data() 93 | -------------------------------------------------------------------------------- /obd_recorder.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | import obd_io 4 | import serial 5 | import platform 6 | import obd_sensors 7 | from datetime import datetime 8 | import time 9 | 10 | from obd_utils import scanSerial 11 | 12 | class OBD_Recorder(): 13 | def __init__(self, path, log_items): 14 | self.port = None 15 | self.sensorlist = [] 16 | localtime = time.localtime(time.time()) 17 | filename = path+"bike-"+str(localtime[0])+"-"+str(localtime[1])+"-"+str(localtime[2])+"-"+str(localtime[3])+"-"+str(localtime[4])+"-"+str(localtime[5])+".log" 18 | self.log_file = open(filename, "w", 128) 19 | self.log_file.write("Time,RPM,MPH,Throttle,Load,Gear\n"); 20 | 21 | for item in log_items: 22 | self.add_log_item(item) 23 | 24 | self.gear_ratios = [34/13, 39/21, 36/23, 27/20, 26/21, 25/22] 25 | #log_formatter = logging.Formatter('%(asctime)s.%(msecs).03d,%(message)s', "%H:%M:%S") 26 | 27 | def connect(self): 28 | portnames = scanSerial() 29 | #portnames = ['COM10'] 30 | print portnames 31 | for port in portnames: 32 | self.port = obd_io.OBDPort(port, None, 2, 2) 33 | if(self.port.State == 0): 34 | self.port.close() 35 | self.port = None 36 | else: 37 | break 38 | 39 | if(self.port): 40 | print "Connected to "+self.port.port.name 41 | 42 | def is_connected(self): 43 | return self.port 44 | 45 | def add_log_item(self, item): 46 | for index, e in enumerate(obd_sensors.SENSORS): 47 | if(item == e.shortname): 48 | self.sensorlist.append(index) 49 | print "Logging item: "+e.name 50 | break 51 | 52 | 53 | def record_data(self): 54 | if(self.port is None): 55 | return None 56 | 57 | print "Logging started" 58 | 59 | while 1: 60 | localtime = datetime.now() 61 | current_time = str(localtime.hour)+":"+str(localtime.minute)+":"+str(localtime.second)+"."+str(localtime.microsecond) 62 | log_string = current_time 63 | results = {} 64 | for index in self.sensorlist: 65 | (name, value, unit) = self.port.sensor(index) 66 | log_string = log_string + ","+str(value) 67 | results[obd_sensors.SENSORS[index].shortname] = value; 68 | 69 | gear = self.calculate_gear(results["rpm"], results["speed"]) 70 | log_string = log_string + "," + str(gear) 71 | self.log_file.write(log_string+"\n") 72 | 73 | def calculate_gear(self, rpm, speed): 74 | if speed == "" or speed == 0: 75 | return 0 76 | if rpm == "" or rpm == 0: 77 | return 0 78 | 79 | rps = rpm/60 80 | mps = (speed*1.609*1000)/3600 81 | 82 | primary_gear = 85/46 #street triple 83 | final_drive = 47/16 84 | 85 | tyre_circumference = 1.978 #meters 86 | 87 | current_gear_ratio = (rps*tyre_circumference)/(mps*primary_gear*final_drive) 88 | 89 | print current_gear_ratio 90 | gear = min((abs(current_gear_ratio - i), i) for i in self.gear_ratios)[1] 91 | return gear 92 | 93 | 94 | logitems = ["rpm", "speed", "throttle_pos", "load"] 95 | o = OBD_Recorder('/home/drive/logs/', logitems) 96 | o.connect() 97 | if not o.is_connected(): 98 | print "Not connected" 99 | o.record_data() 100 | -------------------------------------------------------------------------------- /obd_sensors.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | ########################################################################### 3 | # obd_sensors.py 4 | # 5 | # Copyright 2004 Donour Sizemore (donour@uchicago.edu) 6 | # Copyright 2009 Secons Ltd. (www.obdtester.com) 7 | # 8 | # This file is part of pyOBD. 9 | # 10 | # pyOBD is free software; you can redistribute it and/or modify 11 | # it under the terms of the GNU General Public License as published by 12 | # the Free Software Foundation; either version 2 of the License, or 13 | # (at your option) any later version. 14 | # 15 | # pyOBD is distributed in the hope that it will be useful, 16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | # GNU General Public License for more details. 19 | # 20 | # You should have received a copy of the GNU General Public License 21 | # along with pyOBD; if not, write to the Free Software 22 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 | ########################################################################### 24 | 25 | def hex_to_int(str): 26 | i = eval("0x" + str, {}, {}) 27 | return i 28 | 29 | def maf(code): 30 | code = hex_to_int(code) 31 | return code * 0.00132276 32 | 33 | def throttle_pos(code): 34 | code = hex_to_int(code) 35 | return code * 100.0 / 255.0 36 | 37 | def intake_m_pres(code): # in kPa 38 | code = hex_to_int(code) 39 | return code / 0.14504 40 | 41 | def rpm(code): 42 | code = hex_to_int(code) 43 | return code / 4 44 | 45 | def speed(code): 46 | code = hex_to_int(code) 47 | return code / 1.609 48 | 49 | def percent_scale(code): 50 | code = hex_to_int(code) 51 | return code * 100.0 / 255.0 52 | 53 | def timing_advance(code): 54 | code = hex_to_int(code) 55 | return (code - 128) / 2.0 56 | 57 | def sec_to_min(code): 58 | code = hex_to_int(code) 59 | return code / 60 60 | 61 | def temp(code): 62 | code = hex_to_int(code) 63 | return code - 40 64 | 65 | def cpass(code): 66 | #fixme 67 | return code 68 | 69 | def fuel_trim_percent(code): 70 | code = hex_to_int(code) 71 | return (code - 128.0) * 100.0 / 128 72 | 73 | def dtc_decrypt(code): 74 | #first byte is byte after PID and without spaces 75 | num = hex_to_int(code[:2]) #A byte 76 | res = [] 77 | 78 | if num & 0x80: # is mil light on 79 | mil = 1 80 | else: 81 | mil = 0 82 | 83 | # bit 0-6 are the number of dtc's. 84 | num = num & 0x7f 85 | 86 | res.append(num) 87 | res.append(mil) 88 | 89 | numB = hex_to_int(code[2:4]) #B byte 90 | 91 | for i in range(0,3): 92 | res.append(((numB>>i)&0x01)+((numB>>(3+i))&0x02)) 93 | 94 | numC = hex_to_int(code[4:6]) #C byte 95 | numD = hex_to_int(code[6:8]) #D byte 96 | 97 | for i in range(0,7): 98 | res.append(((numC>>i)&0x01)+(((numD>>i)&0x01)<<1)) 99 | 100 | res.append(((numD>>7)&0x01)) #EGR SystemC7 bit of different 101 | 102 | return res 103 | 104 | def hex_to_bitstring(str): 105 | bitstring = "" 106 | for i in str: 107 | # silly type safety, we don't want to eval random stuff 108 | if type(i) == type(''): 109 | v = eval("0x%s" % i) 110 | if v & 8 : 111 | bitstring += '1' 112 | else: 113 | bitstring += '0' 114 | if v & 4: 115 | bitstring += '1' 116 | else: 117 | bitstring += '0' 118 | if v & 2: 119 | bitstring += '1' 120 | else: 121 | bitstring += '0' 122 | if v & 1: 123 | bitstring += '1' 124 | else: 125 | bitstring += '0' 126 | return bitstring 127 | 128 | class Sensor: 129 | def __init__(self, shortName, sensorName, sensorcommand, sensorValueFunction, u): 130 | self.shortname = shortName 131 | self.name = sensorName 132 | self.cmd = sensorcommand 133 | self.value= sensorValueFunction 134 | self.unit = u 135 | 136 | SENSORS = [ 137 | Sensor("pids" , " Supported PIDs", "0100", hex_to_bitstring ,"" ), 138 | Sensor("dtc_status" , "Status Since DTC Cleared", "0101", dtc_decrypt ,"" ), 139 | Sensor("dtc_ff" , "DTC Causing Freeze Frame", "0102", cpass ,"" ), 140 | Sensor("fuel_status" , " Fuel System Status", "0103", cpass ,"" ), 141 | Sensor("load" , " Calculated Load Value", "01041", percent_scale ,"" ), 142 | Sensor("temp" , " Coolant Temperature", "0105", temp ,"C" ), 143 | Sensor("short_term_fuel_trim_1", " Short Term Fuel Trim", "0106", fuel_trim_percent,"%" ), 144 | Sensor("long_term_fuel_trim_1" , " Long Term Fuel Trim", "0107", fuel_trim_percent,"%" ), 145 | Sensor("short_term_fuel_trim_2", " Short Term Fuel Trim", "0108", fuel_trim_percent,"%" ), 146 | Sensor("long_term_fuel_trim_2" , " Long Term Fuel Trim", "0109", fuel_trim_percent,"%" ), 147 | Sensor("fuel_pressure" , " Fuel Rail Pressure", "010A", cpass ,"" ), 148 | Sensor("manifold_pressure" , "Intake Manifold Pressure", "010B", intake_m_pres ,"psi" ), 149 | Sensor("rpm" , " Engine RPM", "010C1", rpm ,"" ), 150 | Sensor("speed" , " Vehicle Speed", "010D1", speed ,"MPH" ), 151 | Sensor("timing_advance" , " Timing Advance", "010E", timing_advance ,"degrees"), 152 | Sensor("intake_air_temp" , " Intake Air Temp", "010F", temp ,"C" ), 153 | Sensor("maf" , " Air Flow Rate (MAF)", "0110", maf ,"lb/min" ), 154 | Sensor("throttle_pos" , " Throttle Position", "01111", throttle_pos ,"%" ), 155 | Sensor("secondary_air_status" , " Secondary Air Status", "0112", cpass ,"" ), 156 | Sensor("o2_sensor_positions" , " Location of O2 sensors", "0113", cpass ,"" ), 157 | Sensor("o211" , " O2 Sensor: 1 - 1", "0114", fuel_trim_percent,"%" ), 158 | Sensor("o212" , " O2 Sensor: 1 - 2", "0115", fuel_trim_percent,"%" ), 159 | Sensor("o213" , " O2 Sensor: 1 - 3", "0116", fuel_trim_percent,"%" ), 160 | Sensor("o214" , " O2 Sensor: 1 - 4", "0117", fuel_trim_percent,"%" ), 161 | Sensor("o221" , " O2 Sensor: 2 - 1", "0118", fuel_trim_percent,"%" ), 162 | Sensor("o222" , " O2 Sensor: 2 - 2", "0119", fuel_trim_percent,"%" ), 163 | Sensor("o223" , " O2 Sensor: 2 - 3", "011A", fuel_trim_percent,"%" ), 164 | Sensor("o224" , " O2 Sensor: 2 - 4", "011B", fuel_trim_percent,"%" ), 165 | Sensor("obd_standard" , " OBD Designation", "011C", cpass ,"" ), 166 | Sensor("o2_sensor_position_b" ," Location of O2 sensors" , "011D", cpass ,"" ), 167 | Sensor("aux_input" , " Aux input status", "011E", cpass ,"" ), 168 | Sensor("engine_time" , " Time Since Engine Start", "011F", sec_to_min ,"min" ), 169 | Sensor("engine_mil_time" , " Engine Run with MIL on", "014D", sec_to_min ,"min" ), 170 | ] 171 | 172 | 173 | #___________________________________________________________ 174 | 175 | def test(): 176 | for i in SENSORS: 177 | print i.name, i.value("F") 178 | 179 | if __name__ == "__main__": 180 | test() 181 | -------------------------------------------------------------------------------- /obd_io.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | ########################################################################### 3 | # odb_io.py 4 | # 5 | # Copyright 2004 Donour Sizemore (donour@uchicago.edu) 6 | # Copyright 2009 Secons Ltd. (www.obdtester.com) 7 | # 8 | # This file is part of pyOBD. 9 | # 10 | # pyOBD is free software; you can redistribute it and/or modify 11 | # it under the terms of the GNU General Public License as published by 12 | # the Free Software Foundation; either version 2 of the License, or 13 | # (at your option) any later version. 14 | # 15 | # pyOBD is distributed in the hope that it will be useful, 16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | # GNU General Public License for more details. 19 | # 20 | # You should have received a copy of the GNU General Public License 21 | # along with pyOBD; if not, write to the Free Software 22 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 | ########################################################################### 24 | 25 | import serial 26 | import string 27 | import time 28 | from math import ceil 29 | from datetime import datetime 30 | 31 | import obd_sensors 32 | 33 | from obd_sensors import hex_to_int 34 | 35 | GET_DTC_COMMAND = "03" 36 | CLEAR_DTC_COMMAND = "04" 37 | GET_FREEZE_DTC_COMMAND = "07" 38 | 39 | from debugEvent import debug_display 40 | 41 | #__________________________________________________________________________ 42 | def decrypt_dtc_code(code): 43 | """Returns the 5-digit DTC code from hex encoding""" 44 | dtc = [] 45 | current = code 46 | for i in range(0,3): 47 | if len(current)<4: 48 | raise "Tried to decode bad DTC: %s" % code 49 | 50 | tc = obd_sensors.hex_to_int(current[0]) #typecode 51 | tc = tc >> 2 52 | if tc == 0: 53 | type = "P" 54 | elif tc == 1: 55 | type = "C" 56 | elif tc == 2: 57 | type = "B" 58 | elif tc == 3: 59 | type = "U" 60 | else: 61 | raise tc 62 | 63 | dig1 = str(obd_sensors.hex_to_int(current[0]) & 3) 64 | dig2 = str(obd_sensors.hex_to_int(current[1])) 65 | dig3 = str(obd_sensors.hex_to_int(current[2])) 66 | dig4 = str(obd_sensors.hex_to_int(current[3])) 67 | dtc.append(type+dig1+dig2+dig3+dig4) 68 | current = current[4:] 69 | return dtc 70 | #__________________________________________________________________________ 71 | 72 | class OBDPort: 73 | """ OBDPort abstracts all communication with OBD-II device.""" 74 | def __init__(self,portnum,_notify_window,SERTIMEOUT,RECONNATTEMPTS): 75 | """Initializes port by resetting device and gettings supported PIDs. """ 76 | # These should really be set by the user. 77 | baud = 38400 78 | databits = 8 79 | par = serial.PARITY_NONE # parity 80 | sb = 1 # stop bits 81 | to = SERTIMEOUT 82 | self.ELMver = "Unknown" 83 | self.State = 1 #state SERIAL is 1 connected, 0 disconnected (connection failed) 84 | self.port = None 85 | 86 | self._notify_window=_notify_window 87 | debug_display(self._notify_window, 1, "Opening interface (serial port)") 88 | 89 | try: 90 | self.port = serial.Serial(portnum,baud, \ 91 | parity = par, stopbits = sb, bytesize = databits,timeout = to) 92 | 93 | except serial.SerialException as e: 94 | print e 95 | self.State = 0 96 | return None 97 | 98 | debug_display(self._notify_window, 1, "Interface successfully " + self.port.portstr + " opened") 99 | debug_display(self._notify_window, 1, "Connecting to ECU...") 100 | 101 | try: 102 | self.send_command("atz") # initialize 103 | time.sleep(1) 104 | except serial.SerialException: 105 | self.State = 0 106 | return None 107 | 108 | self.ELMver = self.get_result() 109 | if(self.ELMver is None): 110 | self.State = 0 111 | return None 112 | 113 | debug_display(self._notify_window, 2, "atz response:" + self.ELMver) 114 | self.send_command("ate0") # echo off 115 | debug_display(self._notify_window, 2, "ate0 response:" + self.get_result()) 116 | self.send_command("0100") 117 | ready = self.get_result() 118 | 119 | if(ready is None): 120 | self.State = 0 121 | return None 122 | 123 | debug_display(self._notify_window, 2, "0100 response:" + ready) 124 | return None 125 | 126 | def close(self): 127 | """ Resets device and closes all associated filehandles""" 128 | 129 | if (self.port!= None) and self.State==1: 130 | self.send_command("atz") 131 | self.port.close() 132 | 133 | self.port = None 134 | self.ELMver = "Unknown" 135 | 136 | def send_command(self, cmd): 137 | """Internal use only: not a public interface""" 138 | if self.port: 139 | self.port.flushOutput() 140 | self.port.flushInput() 141 | for c in cmd: 142 | self.port.write(c) 143 | self.port.write("\r\n") 144 | #debug_display(self._notify_window, 3, "Send command:" + cmd) 145 | 146 | def interpret_result(self,code): 147 | """Internal use only: not a public interface""" 148 | # Code will be the string returned from the device. 149 | # It should look something like this: 150 | # '41 11 0 0\r\r' 151 | 152 | # 9 seems to be the length of the shortest valid response 153 | if len(code) < 7: 154 | #raise Exception("BogusCode") 155 | print "boguscode?"+code 156 | 157 | # get the first thing returned, echo should be off 158 | code = string.split(code, "\r") 159 | code = code[0] 160 | 161 | #remove whitespace 162 | code = string.split(code) 163 | code = string.join(code, "") 164 | 165 | #cables can behave differently 166 | if code[:6] == "NODATA": # there is no such sensor 167 | return "NODATA" 168 | 169 | # first 4 characters are code from ELM 170 | code = code[4:] 171 | return code 172 | 173 | def get_result(self): 174 | """Internal use only: not a public interface""" 175 | #time.sleep(0.01) 176 | repeat_count = 0 177 | if self.port is not None: 178 | buffer = "" 179 | while 1: 180 | c = self.port.read(1) 181 | if len(c) == 0: 182 | if(repeat_count == 5): 183 | break 184 | print "Got nothing\n" 185 | repeat_count = repeat_count + 1 186 | continue 187 | 188 | if c == '\r': 189 | continue 190 | 191 | if c == ">": 192 | break; 193 | 194 | if buffer != "" or c != ">": #if something is in buffer, add everything 195 | buffer = buffer + c 196 | 197 | #debug_display(self._notify_window, 3, "Get result:" + buffer) 198 | if(buffer == ""): 199 | return None 200 | return buffer 201 | else: 202 | debug_display(self._notify_window, 3, "NO self.port!") 203 | return None 204 | 205 | # get sensor value from command 206 | def get_sensor_value(self,sensor): 207 | """Internal use only: not a public interface""" 208 | cmd = sensor.cmd 209 | self.send_command(cmd) 210 | data = self.get_result() 211 | 212 | if data: 213 | data = self.interpret_result(data) 214 | if data != "NODATA": 215 | data = sensor.value(data) 216 | else: 217 | return "NORESPONSE" 218 | 219 | return data 220 | 221 | # return string of sensor name and value from sensor index 222 | def sensor(self , sensor_index): 223 | """Returns 3-tuple of given sensors. 3-tuple consists of 224 | (Sensor Name (string), Sensor Value (string), Sensor Unit (string) ) """ 225 | sensor = obd_sensors.SENSORS[sensor_index] 226 | r = self.get_sensor_value(sensor) 227 | return (sensor.name,r, sensor.unit) 228 | 229 | def sensor_names(self): 230 | """Internal use only: not a public interface""" 231 | names = [] 232 | for s in obd_sensors.SENSORS: 233 | names.append(s.name) 234 | return names 235 | 236 | def get_tests_MIL(self): 237 | statusText=["Unsupported","Supported - Completed","Unsupported","Supported - Incompleted"] 238 | 239 | statusRes = self.sensor(1)[1] #GET values 240 | statusTrans = [] #translate values to text 241 | 242 | statusTrans.append(str(statusRes[0])) #DTCs 243 | 244 | if statusRes[1]==0: #MIL 245 | statusTrans.append("Off") 246 | else: 247 | statusTrans.append("On") 248 | 249 | for i in range(2,len(statusRes)): #Tests 250 | statusTrans.append(statusText[statusRes[i]]) 251 | 252 | return statusTrans 253 | 254 | # 255 | # fixme: j1979 specifies that the program should poll until the number 256 | # of returned DTCs matches the number indicated by a call to PID 01 257 | # 258 | def get_dtc(self): 259 | """Returns a list of all pending DTC codes. Each element consists of 260 | a 2-tuple: (DTC code (string), Code description (string) )""" 261 | dtcLetters = ["P", "C", "B", "U"] 262 | r = self.sensor(1)[1] #data 263 | dtcNumber = r[0] 264 | mil = r[1] 265 | DTCCodes = [] 266 | 267 | 268 | print "Number of stored DTC:" + str(dtcNumber) + " MIL: " + str(mil) 269 | # get all DTC, 3 per mesg response 270 | for i in range(0, ((dtcNumber+2)/3)): 271 | self.send_command(GET_DTC_COMMAND) 272 | res = self.get_result() 273 | print "DTC result:" + res 274 | for i in range(0, 3): 275 | val1 = hex_to_int(res[3+i*6:5+i*6]) 276 | val2 = hex_to_int(res[6+i*6:8+i*6]) #get DTC codes from response (3 DTC each 2 bytes) 277 | val = (val1<<8)+val2 #DTC val as int 278 | 279 | if val==0: #skip fill of last packet 280 | break 281 | 282 | DTCStr=dtcLetters[(val&0xC000)>14]+str((val&0x3000)>>12)+str((val&0x0f00)>>8)+str((val&0x00f0)>>4)+str(val&0x000f) 283 | 284 | DTCCodes.append(["Active",DTCStr]) 285 | 286 | #read mode 7 287 | self.send_command(GET_FREEZE_DTC_COMMAND) 288 | res = self.get_result() 289 | 290 | if res[:7] == "NO DATA": #no freeze frame 291 | return DTCCodes 292 | 293 | print "DTC freeze result:" + res 294 | for i in range(0, 3): 295 | val1 = hex_to_int(res[3+i*6:5+i*6]) 296 | val2 = hex_to_int(res[6+i*6:8+i*6]) #get DTC codes from response (3 DTC each 2 bytes) 297 | val = (val1<<8)+val2 #DTC val as int 298 | 299 | if val==0: #skip fill of last packet 300 | break 301 | 302 | DTCStr=dtcLetters[(val&0xC000)>14]+str((val&0x3000)>>12)+str((val&0x0f00)>>8)+str((val&0x00f0)>>4)+str(val&0x000f) 303 | DTCCodes.append(["Passive",DTCStr]) 304 | 305 | return DTCCodes 306 | 307 | def clear_dtc(self): 308 | """Clears all DTCs and freeze frame data""" 309 | self.send_command(CLEAR_DTC_COMMAND) 310 | r = self.get_result() 311 | return r 312 | 313 | def log(self, sensor_index, filename): 314 | file = open(filename, "w") 315 | start_time = time.time() 316 | if file: 317 | data = self.sensor(sensor_index) 318 | file.write("%s \t%s(%s)\n" % \ 319 | ("Time", string.strip(data[0]), data[2])) 320 | while 1: 321 | now = time.time() 322 | data = self.sensor(sensor_index) 323 | line = "%.6f,\t%s\n" % (now - start_time, data[1]) 324 | file.write(line) 325 | file.flush() 326 | 327 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc. 5 | 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Library General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License 307 | along with this program; if not, write to the Free Software 308 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 309 | 310 | 311 | Also add information on how to contact you by electronic and paper mail. 312 | 313 | If the program is interactive, make it output a short notice like this 314 | when it starts in an interactive mode: 315 | 316 | Gnomovision version 69, Copyright (C) year name of author 317 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 318 | This is free software, and you are welcome to redistribute it 319 | under certain conditions; type `show c' for details. 320 | 321 | The hypothetical commands `show w' and `show c' should show the appropriate 322 | parts of the General Public License. Of course, the commands you use may 323 | be called something other than `show w' and `show c'; they could even be 324 | mouse-clicks or menu items--whatever suits your program. 325 | 326 | You should also get your employer (if you work as a programmer) or your 327 | school, if any, to sign a "copyright disclaimer" for the program, if 328 | necessary. Here is a sample; alter the names: 329 | 330 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 331 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 332 | 333 | , 1 April 1989 334 | Ty Coon, President of Vice 335 | 336 | This General Public License does not permit incorporating your program into 337 | proprietary programs. If your program is a subroutine library, you may 338 | consider it more useful to permit linking proprietary applications with the 339 | library. If this is what you want to do, use the GNU Library General 340 | Public License instead of this License. 341 | -------------------------------------------------------------------------------- /pyobd: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | ############################################################################ 3 | # 4 | # wxgui.py 5 | # 6 | # Copyright 2004 Donour Sizemore (donour@uchicago.edu) 7 | # Copyright 2009 Secons Ltd. (www.obdtester.com) 8 | # 9 | # This file is part of pyOBD. 10 | # 11 | # pyOBD is free software; you can redistribute it and/or modify 12 | # it under the terms of the GNU General Public License as published by 13 | # the Free Software Foundation; either version 2 of the License, or 14 | # (at your option) any later version. 15 | # 16 | # pyOBD is distributed in the hope that it will be useful, 17 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 | # GNU General Public License for more details. 20 | # 21 | # You should have received a copy of the GNU General Public License 22 | # along with pyOBD; if not, write to the Free Software 23 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 24 | ############################################################################ 25 | 26 | #import wxversion 27 | #wxversion.select("2.6") 28 | import wx 29 | 30 | import obd_io #OBD2 funcs 31 | import os #os.environ 32 | 33 | import threading 34 | import sys 35 | import serial 36 | import platform 37 | import time 38 | import ConfigParser #safe application configuration 39 | import webbrowser #open browser from python 40 | 41 | from obd2_codes import pcodes 42 | from obd2_codes import ptest 43 | from obd_utils import scanSerial 44 | 45 | from wx.lib.mixins.listctrl import ListCtrlAutoWidthMixin 46 | 47 | ID_ABOUT = 101 48 | ID_EXIT = 110 49 | ID_CONFIG = 500 50 | ID_CLEAR = 501 51 | ID_GETC = 502 52 | ID_RESET = 503 53 | ID_LOOK = 504 54 | ALL_ON = 505 55 | ALL_OFF = 506 56 | 57 | ID_DISCONNECT = 507 58 | ID_HELP_ABOUT = 508 59 | ID_HELP_VISIT = 509 60 | ID_HELP_ORDER = 510 61 | 62 | # Define notification event for sensor result window 63 | EVT_RESULT_ID = 1000 64 | def EVT_RESULT(win, func,id): 65 | """Define Result Event.""" 66 | win.Connect(-1, -1, id, func) 67 | 68 | #event pro akutalizaci Trace tabu 69 | class ResultEvent(wx.PyEvent): 70 | """Simple event to carry arbitrary result data.""" 71 | def __init__(self, data): 72 | """Init Result Event.""" 73 | wx.PyEvent.__init__(self) 74 | self.SetEventType(EVT_RESULT_ID) 75 | self.data = data 76 | 77 | #event pro aktualizaci DTC tabu 78 | EVT_DTC_ID = 1001 79 | class DTCEvent(wx.PyEvent): 80 | """Simple event to carry arbitrary result data.""" 81 | def __init__(self, data): 82 | """Init Result Event.""" 83 | wx.PyEvent.__init__(self) 84 | self.SetEventType(EVT_DTC_ID) 85 | self.data = data 86 | 87 | #event pro aktualizaci status tabu 88 | EVT_STATUS_ID = 1002 89 | class StatusEvent(wx.PyEvent): 90 | """Simple event to carry arbitrary result data.""" 91 | def __init__(self, data): 92 | """Init Result Event.""" 93 | wx.PyEvent.__init__(self) 94 | self.SetEventType(EVT_STATUS_ID) 95 | self.data = data 96 | 97 | #event pro aktualizaci tests tabu 98 | EVT_TESTS_ID = 1003 99 | class TestEvent(wx.PyEvent): 100 | """Simple event to carry arbitrary result data.""" 101 | def __init__(self, data): 102 | """Init Result Event.""" 103 | wx.PyEvent.__init__(self) 104 | self.SetEventType(EVT_TESTS_ID) 105 | self.data = data 106 | 107 | #defines notification event for debug tracewindow 108 | from debugEvent import * 109 | 110 | class MyApp(wx.App): 111 | # A listctrl which auto-resizes the column boxes to fill 112 | class MyListCtrl(wx.ListCtrl, ListCtrlAutoWidthMixin): 113 | def __init__(self, parent, id, pos = wx.DefaultPosition, 114 | size = wx.DefaultSize, style = 0): 115 | wx.ListCtrl.__init__(self,parent,id,pos,size,style) 116 | ListCtrlAutoWidthMixin.__init__(self) 117 | 118 | class sensorProducer(threading.Thread): 119 | def __init__(self, _notify_window,portName,SERTIMEOUT,RECONNATTEMPTS,_nb): 120 | from Queue import Queue 121 | self.portName = portName 122 | self.RECONNATTEMPTS=RECONNATTEMPTS 123 | self.SERTIMEOUT=SERTIMEOUT 124 | self.port = None 125 | self._notify_window=_notify_window 126 | self._nb=_nb 127 | threading.Thread.__init__ ( self ) 128 | 129 | def initCommunication(self): 130 | self.port = obd_io.OBDPort(self.portName,self._notify_window,self.SERTIMEOUT,self.RECONNATTEMPTS) 131 | 132 | if self.port.State==0: #Cant open serial port 133 | return None 134 | 135 | self.active = [] 136 | self.supp = self.port.sensor(0)[1] #read supported PIDS 137 | 138 | self.active.append(1); #PID 0 is always supported 139 | 140 | wx.PostEvent(self._notify_window, ResultEvent([0,0,"X"])) 141 | wx.PostEvent(self._notify_window, DebugEvent([1,"Communication initialized..."])) 142 | 143 | for i in range(1, len(self.supp)): 144 | if self.supp[i-1] == "1": #put X in coloum if PID is supported 145 | self.active.append(1) 146 | wx.PostEvent(self._notify_window, ResultEvent([i,0,"X"])) 147 | else: 148 | self.active.append(0) 149 | wx.PostEvent(self._notify_window, ResultEvent([i,0,""])) 150 | return "OK" 151 | 152 | def run(self): 153 | wx.PostEvent(self._notify_window, StatusEvent([0,1,"Connecting...."])) 154 | self.initCommunication() 155 | if self.port.State==0: #cant connect, exit thread 156 | self.stop() 157 | wx.PostEvent(self._notify_window, StatusEvent([666])) #signal apl, that communication was disconnected 158 | wx.PostEvent(self._notify_window, StatusEvent([0,1,"Error cant connect..."])) 159 | return None 160 | 161 | wx.PostEvent(self._notify_window, StatusEvent([0,1,"Connected"])) 162 | wx.PostEvent(self._notify_window, StatusEvent([2,1,self.port.ELMver])) 163 | prevstate=-1 164 | curstate=-1 165 | while self._notify_window.ThreadControl!=666: 166 | prevstate=curstate 167 | curstate=self._nb.GetSelection() 168 | if curstate==0: #show status tab 169 | pass 170 | elif curstate==1: #show tests tab 171 | res=self.port.get_tests_MIL() 172 | for i in range(0,len(res)): 173 | wx.PostEvent(self._notify_window, TestEvent([i,1,res[i]])) 174 | 175 | elif curstate==2: #show sensor tab 176 | for i in range(3, len(self.active)): 177 | if self.active[i]: 178 | s = self.port.sensor(i) 179 | wx.PostEvent(self._notify_window, ResultEvent([i,2,"%s (%s)" % (s[1], s[2])])) 180 | if self._notify_window.ThreadControl==666: 181 | break 182 | elif curstate==3: #show DTC tab 183 | if self._notify_window.ThreadControl == 1: #clear DTC 184 | self.port.clear_dtc() 185 | 186 | if self._notify_window.ThreadControl==666: #before reset ThreadControl we must check if main thread did not want us to finish 187 | break 188 | 189 | self._notify_window.ThreadControl=0 190 | prevstate=-1 # to reread DTC 191 | if self._notify_window.ThreadControl == 2: #reread DTC 192 | prevstate=-1 193 | 194 | if self._notify_window.ThreadControl==666: 195 | break 196 | 197 | self._notify_window.ThreadControl=0 198 | if prevstate!=3: 199 | wx.PostEvent(self._notify_window, DTCEvent(0)) #clear list 200 | DTCCodes=self.port.get_dtc() 201 | if len(DTCCodes)==0: 202 | wx.PostEvent(self._notify_window, DTCEvent(["","","No DTC codes (codes cleared)"])) 203 | for i in range (0,len(DTCCodes)): 204 | wx.PostEvent(self._notify_window, DTCEvent([DTCCodes[i][1],DTCCodes[i][0],pcodes[DTCCodes[i][1]]])) 205 | else: 206 | pass 207 | self.stop() 208 | 209 | def off(self, id): 210 | if id >= 0 and id < len(self.active): 211 | self.active[id] = 0 212 | else: 213 | debug("Invalid sensor id") 214 | def on(self, id): 215 | if id >= 0 and id < len(self.active): 216 | self.active[id] = 1 217 | else: 218 | debug("Invalid sensor id") 219 | 220 | def all_off(self): 221 | for i in range(0, len(self.active)): 222 | self.off(i) 223 | def all_on(self): 224 | for i in range(0, len(self.active)): 225 | self.off(i) 226 | 227 | def stop(self): 228 | if self.port != None: #if stop is called before any connection port is not defined (and not connected ) 229 | self.port.close() 230 | wx.PostEvent(self._notify_window, StatusEvent([0,1,"Disconnected"])) 231 | wx.PostEvent(self._notify_window, StatusEvent([2,1,"----"])) 232 | 233 | #class producer end 234 | 235 | def sensor_control_on(self): #after connection enable few buttons 236 | self.settingmenu.Enable(ID_CONFIG,False) 237 | self.settingmenu.Enable(ID_RESET,False) 238 | self.settingmenu.Enable(ID_DISCONNECT,True) 239 | self.dtcmenu.Enable(ID_GETC,True) 240 | self.dtcmenu.Enable(ID_CLEAR,True) 241 | self.GetDTCButton.Enable(True) 242 | self.ClearDTCButton.Enable(True) 243 | 244 | def sensor_toggle(e): 245 | sel = e.m_itemIndex 246 | state = self.senprod.active[sel] 247 | print sel, state 248 | if state == 0: 249 | self.senprod.on(sel) 250 | self.sensors.SetStringItem(sel,1,"1") 251 | elif state == 1: 252 | self.senprod.off(sel) 253 | self.sensors.SetStringItem(sel,1,"0") 254 | else: 255 | debug("Incorrect sensor state") 256 | 257 | self.sensors.Bind(wx.EVT_LIST_ITEM_ACTIVATED,sensor_toggle,id=self.sensor_id) 258 | 259 | def sensor_control_off(self): #after disconnect disable fer buttons 260 | self.dtcmenu.Enable(ID_GETC,False) 261 | self.dtcmenu.Enable(ID_CLEAR,False) 262 | self.settingmenu.Enable(ID_DISCONNECT,False) 263 | self.settingmenu.Enable(ID_CONFIG,True) 264 | self.settingmenu.Enable(ID_RESET,True) 265 | self.GetDTCButton.Enable(False) 266 | self.ClearDTCButton.Enable(False) 267 | #http://pyserial.sourceforge.net/ empty function 268 | #EVT_LIST_ITEM_ACTIVATED(self.sensors,self.sensor_id, lambda : None) 269 | 270 | def build_sensor_page(self): 271 | HOFFSET_LIST=0 272 | tID = wx.NewId() 273 | self.sensor_id = tID 274 | panel = wx.Panel(self.nb, -1) 275 | 276 | self.sensors = self.MyListCtrl(panel, tID, pos=wx.Point(0,HOFFSET_LIST), 277 | style= 278 | wx.LC_REPORT | 279 | wx.SUNKEN_BORDER | 280 | wx.LC_HRULES | 281 | wx.LC_SINGLE_SEL) 282 | 283 | 284 | self.sensors.InsertColumn(0, "Supported",width=70) 285 | self.sensors.InsertColumn(1, "Sensor",format=wx.LIST_FORMAT_RIGHT, width=250) 286 | self.sensors.InsertColumn(2, "Value") 287 | for i in range(0, len(obd_io.obd_sensors.SENSORS)): 288 | s = obd_io.obd_sensors.SENSORS[i].name 289 | self.sensors.InsertStringItem(i, "") 290 | self.sensors.SetStringItem(i, 1, s) 291 | 292 | 293 | #################################################################### 294 | # This little bit of magic keeps the list the same size as the frame 295 | def OnPSize(e, win = panel): 296 | panel.SetSize(e.GetSize()) 297 | self.sensors.SetSize(e.GetSize()) 298 | w,h = self.frame.GetClientSizeTuple() 299 | self.sensors.SetDimensions(0,HOFFSET_LIST, w-10 , h - 35 ) 300 | 301 | panel.Bind(wx.EVT_SIZE,OnPSize) 302 | #################################################################### 303 | 304 | self.nb.AddPage(panel, "Sensors") 305 | 306 | def build_DTC_page(self): 307 | HOFFSET_LIST=30 #offset from the top of panel (space for buttons) 308 | tID = wx.NewId() 309 | self.DTCpanel = wx.Panel(self.nb, -1) 310 | self.GetDTCButton = wx.Button(self.DTCpanel,-1 ,"Get DTC" , wx.Point(15,0)) 311 | self.ClearDTCButton = wx.Button(self.DTCpanel,-1,"Clear DTC", wx.Point(100,0)) 312 | 313 | #bind functions to button click action 314 | self.DTCpanel.Bind(wx.EVT_BUTTON,self.GetDTC,self.GetDTCButton) 315 | self.DTCpanel.Bind(wx.EVT_BUTTON,self.QueryClear,self.ClearDTCButton) 316 | 317 | self.dtc = self.MyListCtrl(self.DTCpanel,tID, pos=wx.Point(0,HOFFSET_LIST), 318 | style=wx.LC_REPORT|wx.SUNKEN_BORDER|wx.LC_HRULES|wx.LC_SINGLE_SEL) 319 | 320 | self.dtc.InsertColumn(0, "Code", width=100) 321 | self.dtc.InsertColumn(1, "Status",width=100) 322 | self.dtc.InsertColumn(2, "Trouble code") 323 | #################################################################### 324 | # This little bit of magic keeps the list the same size as the frame 325 | def OnPSize(e, win = self.DTCpanel): 326 | self.DTCpanel.SetSize(e.GetSize()) 327 | self.dtc.SetSize(e.GetSize()) 328 | w,h = self.frame.GetClientSizeTuple() 329 | # I have no idea where 70 comes from 330 | self.dtc.SetDimensions(0,HOFFSET_LIST, w-16 , h - 70 ) 331 | 332 | self.DTCpanel.Bind(wx.EVT_SIZE,OnPSize) 333 | #################################################################### 334 | 335 | self.nb.AddPage(self.DTCpanel, "DTC") 336 | 337 | def TraceDebug(self,level,msg): 338 | if self.DEBUGLEVEL<=level: 339 | self.trace.Append([str(level),msg]) 340 | 341 | def OnInit(self): 342 | self.ThreadControl = 0 #say thread what to do 343 | self.COMPORT = 0 344 | self.senprod = None 345 | self.DEBUGLEVEL = 0 #debug everthing 346 | 347 | tID = wx.NewId() 348 | 349 | #read settings from file 350 | self.config = ConfigParser.RawConfigParser() 351 | 352 | #print platform.system() 353 | #print platform.mac_ver()[] 354 | 355 | if "OS" in os.environ.keys(): #runnig under windows 356 | self.configfilepath="pyobd.ini" 357 | else: 358 | self.configfilepath=os.environ['HOME']+'/.pyobdrc' 359 | if self.config.read(self.configfilepath)==[]: 360 | self.COMPORT="/dev/ttyUSB0" 361 | self.RECONNATTEMPTS=5 362 | self.SERTIMEOUT=2 363 | else: 364 | self.COMPORT=self.config.get("pyOBD","COMPORT") 365 | self.RECONNATTEMPTS=self.config.getint("pyOBD","RECONNATTEMPTS") 366 | self.SERTIMEOUT=self.config.getint("pyOBD","SERTIMEOUT") 367 | 368 | frame = wx.Frame(None, -1, "pyOBD-II") 369 | self.frame=frame 370 | 371 | EVT_RESULT(self,self.OnResult,EVT_RESULT_ID) 372 | EVT_RESULT(self,self.OnDebug, EVT_DEBUG_ID) 373 | EVT_RESULT(self,self.OnDtc,EVT_DTC_ID) 374 | EVT_RESULT(self,self.OnStatus,EVT_STATUS_ID) 375 | EVT_RESULT(self,self.OnTests,EVT_TESTS_ID) 376 | 377 | # Main notebook frames 378 | self.nb = wx.Notebook(frame, -1, style = wx.NB_TOP) 379 | 380 | self.status = self.MyListCtrl(self.nb, tID,style=wx.LC_REPORT|wx.SUNKEN_BORDER) 381 | self.status.InsertColumn(0, "Description",width=200) 382 | self.status.InsertColumn(1, "Value") 383 | self.status.Append(["Link State","Disconnnected"]); 384 | self.status.Append(["Protocol","---"]); 385 | self.status.Append(["Cable version","---"]); 386 | self.status.Append(["COM port",self.COMPORT]); 387 | 388 | self.nb.AddPage(self.status, "Status") 389 | 390 | self.OBDTests = self.MyListCtrl(self.nb, tID,style=wx.LC_REPORT|wx.SUNKEN_BORDER) 391 | self.OBDTests.InsertColumn(0, "Description",width=200) 392 | self.OBDTests.InsertColumn(1, "Value") 393 | self.nb.AddPage(self.OBDTests, "Tests") 394 | 395 | for i in range(0,len(ptest)): #fill MODE 1 PID 1 test description 396 | self.OBDTests.Append([ptest[i],"---"]); 397 | 398 | self.build_sensor_page() 399 | 400 | self.build_DTC_page() 401 | 402 | self.trace = self.MyListCtrl(self.nb, tID,style=wx.LC_REPORT|wx.SUNKEN_BORDER) 403 | self.trace.InsertColumn(0, "Level",width=40) 404 | self.trace.InsertColumn(1, "Message") 405 | self.nb.AddPage(self.trace, "Trace") 406 | self.TraceDebug(1,"Application started") 407 | 408 | # Setting up the menu. 409 | self.filemenu= wx.Menu() 410 | self.filemenu.Append(ID_EXIT,"E&xit"," Terminate the program") 411 | 412 | self.settingmenu = wx.Menu() 413 | self.settingmenu.Append(ID_CONFIG,"Configure"," Configure pyOBD") 414 | self.settingmenu.Append(ID_RESET,"Connect"," Reopen and connect to device") 415 | self.settingmenu.Append(ID_DISCONNECT,"Disconnect","Close connection to device") 416 | 417 | self.dtcmenu= wx.Menu() 418 | # tady toto nastavi automaticky tab DTC a provede akci 419 | self.dtcmenu.Append(ID_GETC ,"Get DTCs", " Get DTC Codes") 420 | self.dtcmenu.Append(ID_CLEAR ,"Clear DTC", " Clear DTC Codes") 421 | self.dtcmenu.Append(ID_LOOK ,"Code Lookup"," Lookup DTC Codes") 422 | 423 | self.helpmenu = wx.Menu() 424 | 425 | self.helpmenu.Append(ID_HELP_ABOUT ,"About this program", " Get DTC Codes") 426 | self.helpmenu.Append(ID_HELP_VISIT ,"Visit program homepage"," Lookup DTC Codes") 427 | self.helpmenu.Append(ID_HELP_ORDER ,"Order OBD-II cables", " Clear DTC Codes") 428 | 429 | 430 | # Creating the menubar. 431 | self.menuBar = wx.MenuBar() 432 | self.menuBar.Append(self.filemenu,"&File") # Adding the "filemenu" to the MenuBar 433 | self.menuBar.Append(self.settingmenu,"&OBD-II") 434 | self.menuBar.Append(self.dtcmenu,"&Trouble codes") 435 | self.menuBar.Append(self.helpmenu,"&Help") 436 | 437 | frame.SetMenuBar(self.menuBar) # Adding the MenuBar to the Frame content. 438 | 439 | frame.Bind(wx.EVT_MENU,self.OnExit,id=ID_EXIT)# attach the menu-event ID_EXIT to the 440 | frame.Bind(wx.EVT_MENU,self.QueryClear,id=ID_CLEAR) 441 | frame.Bind(wx.EVT_MENU,self.Configure,id=ID_CONFIG) 442 | frame.Bind(wx.EVT_MENU,self.OpenPort,id=ID_RESET) 443 | frame.Bind(wx.EVT_MENU,self.OnDisconnect,id=ID_DISCONNECT) 444 | frame.Bind(wx.EVT_MENU,self.GetDTC,id=ID_GETC) 445 | frame.Bind(wx.EVT_MENU,self.CodeLookup,id=ID_LOOK) 446 | frame.Bind(wx.EVT_MENU,self.OnHelpAbout,id=ID_HELP_ABOUT) 447 | frame.Bind(wx.EVT_MENU,self.OnHelpVisit,id=ID_HELP_VISIT) 448 | frame.Bind(wx.EVT_MENU,self.OnHelpOrder,id=ID_HELP_ORDER) 449 | 450 | self.SetTopWindow(frame) 451 | 452 | frame.Show(True) 453 | frame.SetSize((520,400)) 454 | self.sensor_control_off() 455 | 456 | return True 457 | 458 | def OnHelpVisit(self,event): 459 | webbrowser.open("http://www.obdtester.com/pyobd") 460 | 461 | def OnHelpOrder(self,event): 462 | webbrowser.open("http://www.obdtester.com/order") 463 | 464 | def OnHelpAbout(self,event): #todo about box 465 | Text = """ PyOBD is an automotive OBD2 diagnosting application using ELM237 cable. 466 | 467 | (C) 2008-2009 SeCons Ltd. 468 | (C) 2004 Charles Donour Sizemore 469 | 470 | http://www.obdtester.com/ 471 | http://www.secons.com/ 472 | 473 | PyOBD is free software; you can redistribute it and/or modify 474 | it under the terms of the GNU General Public License as published by the Free Software Foundation; 475 | either version 2 of the License, or (at your option) any later version. 476 | 477 | PyOBD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; 478 | without even the implied warranty of MEHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 479 | See the GNU General Public License for more details. You should have received a copy of 480 | the GNU General Public License along with PyOBD; if not, write to 481 | the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 482 | """ 483 | 484 | #HelpAboutDlg = wx.Dialog(self.frame, id, title="About") 485 | 486 | 487 | #box = wx.BoxSizer(wx.HORIZONTAL) 488 | #box.Add(wx.StaticText(reconnectPanel,-1,Text,pos=(0,0),size=(200,200))) 489 | #box.Add(wx.Button(HelpAboutDlg,wx.ID_OK),0) 490 | #box.Add(wx.Button(HelpAboutDlg,wx.ID_CANCEL),1) 491 | 492 | #HelpAboutDlg.SetSizer(box) 493 | #HelpAboutDlg.SetAutoLayout(True) 494 | #sizer.Fit(HelpAboutDlg) 495 | #HelpAboutDlg.ShowModal() 496 | 497 | self.HelpAboutDlg = wx.MessageDialog(self.frame, Text, 'About',wx.OK | wx.ICON_INFORMATION) 498 | self.HelpAboutDlg.ShowModal() 499 | self.HelpAboutDlg.Destroy() 500 | 501 | def OnResult(self,event): 502 | self.sensors.SetStringItem(event.data[0], event.data[1], event.data[2]) 503 | 504 | def OnStatus(self,event): 505 | if event.data[0] == 666: #signal, that connection falied 506 | self.sensor_control_off() 507 | else: 508 | self.status.SetStringItem(event.data[0], event.data[1], event.data[2]) 509 | 510 | def OnTests(self,event): 511 | self.OBDTests.SetStringItem(event.data[0], event.data[1], event.data[2]) 512 | 513 | def OnDebug(self,event): 514 | self.TraceDebug(event.data[0],event.data[1]) 515 | 516 | def OnDtc(self,event): 517 | if event.data == 0: #signal, that DTC was cleared 518 | self.dtc.DeleteAllItems() 519 | else: 520 | self.dtc.Append(event.data) 521 | 522 | def OnDisconnect(self,event): #disconnect connection to ECU 523 | self.ThreadControl=666 524 | self.sensor_control_off() 525 | 526 | def OpenPort(self,e): 527 | 528 | if self.senprod: # signal current producers to finish 529 | self.senprod.stop() 530 | self.ThreadControl = 0 531 | self.senprod = self.sensorProducer(self,self.COMPORT,self.SERTIMEOUT,self.RECONNATTEMPTS,self.nb) 532 | self.senprod.start() 533 | 534 | self.sensor_control_on() 535 | 536 | def GetDTC(self,e): 537 | self.nb.SetSelection(3) 538 | self.ThreadControl=2 539 | 540 | def AddDTC(self, code): 541 | self.dtc.InsertStringItem(0, "") 542 | self.dtc.SetStringItem(0, 0, code[0]) 543 | self.dtc.SetStringItem(0, 1, code[1]) 544 | 545 | 546 | def CodeLookup(self,e = None): 547 | id = 0 548 | diag = wx.Frame(None, id, title="Diagnostic Trouble Codes") 549 | 550 | tree = wx.TreeCtrl(diag, id, style = wx.TR_HAS_BUTTONS) 551 | 552 | root = tree.AddRoot("Code Reference") 553 | proot = tree.AppendItem(root,"Powertrain (P) Codes") 554 | codes = obd_io.pcodes.keys() 555 | codes.sort() 556 | group = "" 557 | for c in codes: 558 | if c[:3] != group: 559 | group_root = tree.AppendItem(proot, c[:3]+"XX") 560 | group = c[:3] 561 | leaf = tree.AppendItem(group_root, c) 562 | tree.AppendItem(leaf, obd_io.pcodes[c]) 563 | 564 | uroot = tree.AppendItem(root,"Network (U) Codes") 565 | codes = obd_io.ucodes.keys() 566 | codes.sort() 567 | group = "" 568 | for c in codes: 569 | if c[:3] != group: 570 | group_root = tree.AppendItem(uroot, c[:3]+"XX") 571 | group = c[:3] 572 | leaf = tree.AppendItem(group_root, c) 573 | tree.AppendItem(leaf, obd_io.ucodes[c]) 574 | 575 | diag.SetSize((400,500)) 576 | diag.Show(True) 577 | 578 | 579 | def QueryClear(self,e): 580 | id = 0 581 | diag = wx.Dialog(self.frame, id, title="Clear DTC?") 582 | 583 | sizer = wx.BoxSizer(wx.VERTICAL) 584 | sizer.Add(wx.StaticText(diag, -1, "Are you sure you wish to"),0) 585 | sizer.Add(wx.StaticText(diag, -1, "clear all DTC codes and "),0) 586 | sizer.Add(wx.StaticText(diag, -1, "freeze frame data? "),0) 587 | box = wx.BoxSizer(wx.HORIZONTAL) 588 | box.Add(wx.Button(diag,wx.ID_OK, "Ok" ),0) 589 | box.Add(wx.Button(diag,wx.ID_CANCEL, "Cancel"),0) 590 | 591 | sizer.Add(box, 0) 592 | diag.SetSizer(sizer) 593 | diag.SetAutoLayout(True) 594 | sizer.Fit(diag) 595 | r = diag.ShowModal() 596 | if r == wx.ID_OK: 597 | self.ClearDTC() 598 | 599 | def ClearDTC(self): 600 | self.ThreadControl=1 601 | self.nb.SetSelection(3) 602 | 603 | def Configure(self,e = None): 604 | id = 0 605 | diag = wx.Dialog(self.frame, id, title="Configure") 606 | sizer = wx.BoxSizer(wx.VERTICAL) 607 | 608 | ports = scanSerial() 609 | rb = wx.RadioBox(diag, id, "Choose Serial Port", 610 | choices = ports, style = wx.RA_SPECIFY_COLS, 611 | majorDimension = 2) 612 | 613 | sizer.Add(rb, 0) 614 | 615 | #timeOut input control 616 | timeoutPanel = wx.Panel(diag, -1) 617 | timeoutCtrl = wx.TextCtrl(timeoutPanel, -1, '',pos=(140,0), size=(35, 25)) 618 | timeoutStatic = wx.StaticText(timeoutPanel,-1,'Timeout:',pos=(3,5),size=(140,20)) 619 | timeoutCtrl.SetValue(str(self.SERTIMEOUT)) 620 | 621 | #reconnect attempt input control 622 | reconnectPanel = wx.Panel(diag, -1) 623 | reconnectCtrl = wx.TextCtrl(reconnectPanel, -1, '',pos=(140,0), size=(35, 25)) 624 | reconnectStatic = wx.StaticText(reconnectPanel,-1,'Reconnect attempts:',pos=(3,5),size=(140,20)) 625 | reconnectCtrl.SetValue(str(self.RECONNATTEMPTS)) 626 | 627 | #web open link button 628 | self.OpenLinkButton = wx.Button(diag,-1,"Click here to order ELM-USB interface",size=(260,30)) 629 | diag.Bind(wx.EVT_BUTTON,self.OnHelpOrder,self.OpenLinkButton) 630 | 631 | #set actual serial port choice 632 | if (self.COMPORT != 0) and (self.COMPORT in ports): 633 | rb.SetSelection(ports.index(self.COMPORT)) 634 | 635 | 636 | sizer.Add(self.OpenLinkButton) 637 | sizer.Add(timeoutPanel,0) 638 | sizer.Add(reconnectPanel,0) 639 | 640 | box = wx.BoxSizer(wx.HORIZONTAL) 641 | box.Add(wx.Button(diag,wx.ID_OK),0) 642 | box.Add(wx.Button(diag,wx.ID_CANCEL),1) 643 | 644 | sizer.Add(box, 0) 645 | diag.SetSizer(sizer) 646 | diag.SetAutoLayout(True) 647 | sizer.Fit(diag) 648 | r = diag.ShowModal() 649 | if r == wx.ID_OK: 650 | 651 | #create section 652 | if self.config.sections()==[]: 653 | self.config.add_section("pyOBD") 654 | #set and save COMPORT 655 | self.COMPORT = ports[rb.GetSelection()] 656 | self.config.set("pyOBD","COMPORT",self.COMPORT) 657 | 658 | #set and save SERTIMEOUT 659 | self.SERTIMEOUT = int(timeoutCtrl.GetValue()) 660 | self.config.set("pyOBD","SERTIMEOUT",self.SERTIMEOUT) 661 | self.status.SetStringItem(3,1,self.COMPORT); 662 | 663 | #set and save RECONNATTEMPTS 664 | self.RECONNATTEMPTS = int(reconnectCtrl.GetValue()) 665 | self.config.set("pyOBD","RECONNATTEMPTS",self.RECONNATTEMPTS) 666 | 667 | #write configuration to cfg file 668 | self.config.write(open(self.configfilepath, 'wb')) 669 | 670 | 671 | def OnExit(self,e = None): 672 | import sys 673 | sys.exit(0) 674 | 675 | app = MyApp(0) 676 | app.MainLoop() 677 | -------------------------------------------------------------------------------- /obd2_codes.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | ########################################################################### 3 | # obd_sensors.py 4 | # 5 | # Copyright 2004 Donour Sizemore (donour@uchicago.edu) 6 | # Copyright 2009 Secons Ltd. (www.obdtester.com) 7 | # 8 | # This file is part of pyOBD. 9 | # 10 | # pyOBD is free software; you can redistribute it and/or modify 11 | # it under the terms of the GNU General Public License as published by 12 | # the Free Software Foundation; either version 2 of the License, or 13 | # (at your option) any later version. 14 | # 15 | # pyOBD is distributed in the hope that it will be useful, 16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 18 | # GNU General Public License for more details. 19 | # 20 | # You should have received a copy of the GNU General Public License 21 | # along with pyOBD; if not, write to the Free Software 22 | # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 23 | ########################################################################### 24 | pcodes = { 25 | "P0001": "Fuel Volume Regulator Control Circuit/Open", 26 | "P0002": "Fuel Volume Regulator Control Circuit Range/Performance", 27 | "P0003": "Fuel Volume Regulator Control Circuit Low", 28 | "P0004": "Fuel Volume Regulator Control Circuit High", 29 | "P0005": "Fuel Shutoff Valve 'A' Control Circuit/Open", 30 | "P0006": "Fuel Shutoff Valve 'A' Control Circuit Low", 31 | "P0007": "Fuel Shutoff Valve 'A' Control Circuit High", 32 | "P0008": "Engine Position System Performance", 33 | "P0009": "Engine Position System Performance", 34 | "P0010": "'A' Camshaft Position Actuator Circuit", 35 | "P0011": "'A' Camshaft Position - Timing Over-Advanced or System Performance", 36 | "P0012": "'A' Camshaft Position - Timing Over-Retarded", 37 | "P0013": "'B' Camshaft Position - Actuator Circuit", 38 | "P0014": "'B' Camshaft Position - Timing Over-Advanced or System Performance", 39 | "P0015": "'B' Camshaft Position - Timing Over-Retarded", 40 | "P0016": "Crankshaft Position - Camshaft Position Correlation", 41 | "P0017": "Crankshaft Position - Camshaft Position Correlation", 42 | "P0018": "Crankshaft Position - Camshaft Position Correlation", 43 | "P0019": "Crankshaft Position - Camshaft Position Correlation", 44 | "P0020": "'A' Camshaft Position Actuator Circuit", 45 | "P0021": "'A' Camshaft Position - Timing Over-Advanced or System Performance", 46 | "P0022": "'A' Camshaft Position - Timing Over-Retarded", 47 | "P0023": "'B' Camshaft Position - Actuator Circuit", 48 | "P0024": "'B' Camshaft Position - Timing Over-Advanced or System Performance", 49 | "P0025": "'B' Camshaft Position - Timing Over-Retarded", 50 | "P0026": "Intake Valve Control Solenoid Circuit Range/Performance", 51 | "P0027": "Exhaust Valve Control Solenoid Circuit Range/Performance", 52 | "P0028": "Intake Valve Control Solenoid Circuit Range/Performance", 53 | "P0029": "Exhaust Valve Control Solenoid Circuit Range/Performance", 54 | "P0030": "HO2S Heater Control Circuit", 55 | "P0031": "HO2S Heater Control Circuit Low", 56 | "P0032": "HO2S Heater Control Circuit High", 57 | "P0033": "Turbo Charger Bypass Valve Control Circuit", 58 | "P0034": "Turbo Charger Bypass Valve Control Circuit Low", 59 | "P0035": "Turbo Charger Bypass Valve Control Circuit High", 60 | "P0036": "HO2S Heater Control Circuit", 61 | "P0037": "HO2S Heater Control Circuit Low", 62 | "P0038": "HO2S Heater Control Circuit High", 63 | "P0039": "Turbo/Super Charger Bypass Valve Control Circuit Range/Performance", 64 | "P0040": "O2 Sensor Signals Swapped Bank 1 Sensor 1/ Bank 2 Sensor 1", 65 | "P0041": "O2 Sensor Signals Swapped Bank 1 Sensor 2/ Bank 2 Sensor 2", 66 | "P0042": "HO2S Heater Control Circuit", 67 | "P0043": "HO2S Heater Control Circuit Low", 68 | "P0044": "HO2S Heater Control Circuit High", 69 | "P0045": "Turbo/Super Charger Boost Control Solenoid Circuit/Open", 70 | "P0046": "Turbo/Super Charger Boost Control Solenoid Circuit Range/Performance", 71 | "P0047": "Turbo/Super Charger Boost Control Solenoid Circuit Low", 72 | "P0048": "Turbo/Super Charger Boost Control Solenoid Circuit High", 73 | "P0049": "Turbo/Super Charger Turbine Overspeed", 74 | "P0050": "HO2S Heater Control Circuit", 75 | "P0051": "HO2S Heater Control Circuit Low", 76 | "P0052": "HO2S Heater Control Circuit High", 77 | "P0053": "HO2S Heater Resistance", 78 | "P0054": "HO2S Heater Resistance", 79 | "P0055": "HO2S Heater Resistance", 80 | "P0056": "HO2S Heater Control Circuit", 81 | "P0057": "HO2S Heater Control Circuit Low", 82 | "P0058": "HO2S Heater Control Circuit High", 83 | "P0059": "HO2S Heater Resistance", 84 | "P0060": "HO2S Heater Resistance", 85 | "P0061": "HO2S Heater Resistance", 86 | "P0062": "HO2S Heater Control Circuit", 87 | "P0063": "HO2S Heater Control Circuit Low", 88 | "P0064": "HO2S Heater Control Circuit High", 89 | "P0065": "Air Assisted Injector Control Range/Performance", 90 | "P0066": "Air Assisted Injector Control Circuit or Circuit Low", 91 | "P0067": "Air Assisted Injector Control Circuit High", 92 | "P0068": "MAP/MAF - Throttle Position Correlation", 93 | "P0069": "Manifold Absolute Pressure - Barometric Pressure Correlation", 94 | "P0070": "Ambient Air Temperature Sensor Circuit", 95 | "P0071": "Ambient Air Temperature Sensor Range/Performance", 96 | "P0072": "Ambient Air Temperature Sensor Circuit Low", 97 | "P0073": "Ambient Air Temperature Sensor Circuit High", 98 | "P0074": "Ambient Air Temperature Sensor Circuit Intermittent", 99 | "P0075": "Intake Valve Control Solenoid Circuit", 100 | "P0076": "Intake Valve Control Solenoid Circuit Low", 101 | "P0077": "Intake Valve Control Solenoid Circuit High", 102 | "P0078": "Exhaust Valve Control Solenoid Circuit", 103 | "P0079": "Exhaust Valve Control Solenoid Circuit Low", 104 | "P0080": "Exhaust Valve Control Solenoid Circuit High", 105 | "P0081": "Intake Valve Control Solenoid Circuit", 106 | "P0082": "Intake Valve Control Solenoid Circuit Low", 107 | "P0083": "Intake Valve Control Solenoid Circuit High", 108 | "P0084": "Exhaust Valve Control Solenoid Circuit", 109 | "P0085": "Exhaust Valve Control Solenoid Circuit Low", 110 | "P0086": "Exhaust Valve Control Solenoid Circuit High", 111 | "P0087": "Fuel Rail/System Pressure - Too Low", 112 | "P0088": "Fuel Rail/System Pressure - Too High", 113 | "P0089": "Fuel Pressure Regulator 1 Performance", 114 | "P0090": "Fuel Pressure Regulator 1 Control Circuit", 115 | "P0091": "Fuel Pressure Regulator 1 Control Circuit Low", 116 | "P0092": "Fuel Pressure Regulator 1 Control Circuit High", 117 | "P0093": "Fuel System Leak Detected - Large Leak", 118 | "P0094": "Fuel System Leak Detected - Small Leak", 119 | "P0095": "Intake Air Temperature Sensor 2 Circuit", 120 | "P0096": "Intake Air Temperature Sensor 2 Circuit Range/Performance", 121 | "P0097": "Intake Air Temperature Sensor 2 Circuit Low", 122 | "P0098": "Intake Air Temperature Sensor 2 Circuit High", 123 | "P0099": "Intake Air Temperature Sensor 2 Circuit Intermittent/Erratic", 124 | "P0100": "Mass or Volume Air Flow Circuit", 125 | "P0101": "Mass or Volume Air Flow Circuit Range/Performance", 126 | "P0102": "Mass or Volume Air Flow Circuit Low Input", 127 | "P0103": "Mass or Volume Air Flow Circuit High Input", 128 | "P0104": "Mass or Volume Air Flow Circuit Intermittent", 129 | "P0105": "Manifold Absolute Pressure/Barometric Pressure Circuit", 130 | "P0106": "Manifold Absolute Pressure/Barometric Pressure Circuit Range/Performance", 131 | "P0107": "Manifold Absolute Pressure/Barometric Pressure Circuit Low Input", 132 | "P0108": "Manifold Absolute Pressure/Barometric Pressure Circuit High Input", 133 | "P0109": "Manifold Absolute Pressure/Barometric Pressure Circuit Intermittent", 134 | "P0110": "Intake Air Temperature Sensor 1 Circuit", 135 | "P0111": "Intake Air Temperature Sensor 1 Circuit Range/Performance", 136 | "P0112": "Intake Air Temperature Sensor 1 Circuit Low", 137 | "P0113": "Intake Air Temperature Sensor 1 Circuit High", 138 | "P0114": "Intake Air Temperature Sensor 1 Circuit Intermittent", 139 | "P0115": "Engine Coolant Temperature Circuit", 140 | "P0116": "Engine Coolant Temperature Circuit Range/Performance", 141 | "P0117": "Engine Coolant Temperature Circuit Low", 142 | "P0118": "Engine Coolant Temperature Circuit High", 143 | "P0119": "Engine Coolant Temperature Circuit Intermittent", 144 | "P0120": "Throttle/Pedal Position Sensor/Switch 'A' Circuit", 145 | "P0121": "Throttle/Pedal Position Sensor/Switch 'A' Circuit Range/Performance", 146 | "P0122": "Throttle/Pedal Position Sensor/Switch 'A' Circuit Low", 147 | "P0123": "Throttle/Pedal Position Sensor/Switch 'A' Circuit High", 148 | "P0124": "Throttle/Pedal Position Sensor/Switch 'A' Circuit Intermittent", 149 | "P0125": "Insufficient Coolant Temperature for Closed Loop Fuel Control", 150 | "P0126": "Insufficient Coolant Temperature for Stable Operation", 151 | "P0127": "Intake Air Temperature Too High", 152 | "P0128": "Coolant Thermostat (Coolant Temperature Below Thermostat Regulating Temperature)", 153 | "P0129": "Barometric Pressure Too Low", 154 | "P0130": "O2 Sensor Circuit", 155 | "P0131": "O2 Sensor Circuit Low Voltage", 156 | "P0132": "O2 Sensor Circuit High Voltage", 157 | "P0133": "O2 Sensor Circuit Slow Response", 158 | "P0134": "O2 Sensor Circuit No Activity Detected", 159 | "P0135": "O2 Sensor Heater Circuit", 160 | "P0136": "O2 Sensor Circuit", 161 | "P0137": "O2 Sensor Circuit Low Voltage", 162 | "P0138": "O2 Sensor Circuit High Voltage", 163 | "P0139": "O2 Sensor Circuit Slow Response", 164 | "P0140": "O2 Sensor Circuit No Activity Detected", 165 | "P0141": "O2 Sensor Heater Circuit", 166 | "P0142": "O2 Sensor Circuit", 167 | "P0143": "O2 Sensor Circuit Low Voltage", 168 | "P0144": "O2 Sensor Circuit High Voltage", 169 | "P0145": "O2 Sensor Circuit Slow Response", 170 | "P0146": "O2 Sensor Circuit No Activity Detected", 171 | "P0147": "O2 Sensor Heater Circuit", 172 | "P0148": "Fuel Delivery Error", 173 | "P0149": "Fuel Timing Error", 174 | "P0150": "O2 Sensor Circuit", 175 | "P0151": "O2 Sensor Circuit Low Voltage", 176 | "P0152": "O2 Sensor Circuit High Voltage", 177 | "P0153": "O2 Sensor Circuit Slow Response", 178 | "P0154": "O2 Sensor Circuit No Activity Detected", 179 | "P0155": "O2 Sensor Heater Circuit", 180 | "P0156": "O2 Sensor Circuit", 181 | "P0157": "O2 Sensor Circuit Low Voltage", 182 | "P0158": "O2 Sensor Circuit High Voltage", 183 | "P0159": "O2 Sensor Circuit Slow Response", 184 | "P0160": "O2 Sensor Circuit No Activity Detected", 185 | "P0161": "O2 Sensor Heater Circuit", 186 | "P0162": "O2 Sensor Circuit", 187 | "P0163": "O2 Sensor Circuit Low Voltage", 188 | "P0164": "O2 Sensor Circuit High Voltage", 189 | "P0165": "O2 Sensor Circuit Slow Response", 190 | "P0166": "O2 Sensor Circuit No Activity Detected", 191 | "P0167": "O2 Sensor Heater Circuit", 192 | "P0168": "Fuel Temperature Too High", 193 | "P0169": "Incorrect Fuel Composition", 194 | "P0170": "Fuel Trim", 195 | "P0171": "System Too Lean", 196 | "P0172": "System Too Rich", 197 | "P0173": "Fuel Trim", 198 | "P0174": "System Too Lean", 199 | "P0175": "System Too Rich", 200 | "P0176": "Fuel Composition Sensor Circuit", 201 | "P0177": "Fuel Composition Sensor Circuit Range/Performance", 202 | "P0178": "Fuel Composition Sensor Circuit Low", 203 | "P0179": "Fuel Composition Sensor Circuit High", 204 | "P0180": "Fuel Temperature Sensor A Circuit", 205 | "P0181": "Fuel Temperature Sensor A Circuit Range/Performance", 206 | "P0182": "Fuel Temperature Sensor A Circuit Low", 207 | "P0183": "Fuel Temperature Sensor A Circuit High", 208 | "P0184": "Fuel Temperature Sensor A Circuit Intermittent", 209 | "P0185": "Fuel Temperature Sensor B Circuit", 210 | "P0186": "Fuel Temperature Sensor B Circuit Range/Performance", 211 | "P0187": "Fuel Temperature Sensor B Circuit Low", 212 | "P0188": "Fuel Temperature Sensor B Circuit High", 213 | "P0189": "Fuel Temperature Sensor B Circuit Intermittent", 214 | "P0190": "Fuel Rail Pressure Sensor Circuit", 215 | "P0191": "Fuel Rail Pressure Sensor Circuit Range/Performance", 216 | "P0192": "Fuel Rail Pressure Sensor Circuit Low", 217 | "P0193": "Fuel Rail Pressure Sensor Circuit High", 218 | "P0194": "Fuel Rail Pressure Sensor Circuit Intermittent", 219 | "P0195": "Engine Oil Temperature Sensor", 220 | "P0196": "Engine Oil Temperature Sensor Range/Performance", 221 | "P0197": "Engine Oil Temperature Sensor Low", 222 | "P0198": "Engine Oil Temperature Sensor High", 223 | "P0199": "Engine Oil Temperature Sensor Intermittent", 224 | "P0200": "Injector Circuit/Open", 225 | "P0201": "Injector Circuit/Open - Cylinder 1", 226 | "P0202": "Injector Circuit/Open - Cylinder 2", 227 | "P0203": "Injector Circuit/Open - Cylinder 3", 228 | "P0204": "Injector Circuit/Open - Cylinder 4", 229 | "P0205": "Injector Circuit/Open - Cylinder 5", 230 | "P0206": "Injector Circuit/Open - Cylinder 6", 231 | "P0207": "Injector Circuit/Open - Cylinder 7", 232 | "P0208": "Injector Circuit/Open - Cylinder 8", 233 | "P0209": "Injector Circuit/Open - Cylinder 9", 234 | "P0210": "Injector Circuit/Open - Cylinder 10", 235 | "P0211": "Injector Circuit/Open - Cylinder 11", 236 | "P0212": "Injector Circuit/Open - Cylinder 12", 237 | "P0213": "Cold Start Injector 1", 238 | "P0214": "Cold Start Injector 2", 239 | "P0215": "Engine Shutoff Solenoid", 240 | "P0216": "Injector/Injection Timing Control Circuit", 241 | "P0217": "Engine Coolant Over Temperature Condition", 242 | "P0218": "Transmission Fluid Over Temperature Condition", 243 | "P0219": "Engine Overspeed Condition", 244 | "P0220": "Throttle/Pedal Position Sensor/Switch 'B' Circuit", 245 | "P0221": "Throttle/Pedal Position Sensor/Switch 'B' Circuit Range/Performance", 246 | "P0222": "Throttle/Pedal Position Sensor/Switch 'B' Circuit Low", 247 | "P0223": "Throttle/Pedal Position Sensor/Switch 'B' Circuit High", 248 | "P0224": "Throttle/Pedal Position Sensor/Switch 'B' Circuit Intermittent", 249 | "P0225": "Throttle/Pedal Position Sensor/Switch 'C' Circuit", 250 | "P0226": "Throttle/Pedal Position Sensor/Switch 'C' Circuit Range/Performance", 251 | "P0227": "Throttle/Pedal Position Sensor/Switch 'C' Circuit Low", 252 | "P0228": "Throttle/Pedal Position Sensor/Switch 'C' Circuit High", 253 | "P0229": "Throttle/Pedal Position Sensor/Switch 'C' Circuit Intermittent", 254 | "P0230": "Fuel Pump Primary Circuit", 255 | "P0231": "Fuel Pump Secondary Circuit Low", 256 | "P0232": "Fuel Pump Secondary Circuit High", 257 | "P0233": "Fuel Pump Secondary Circuit Intermittent", 258 | "P0234": "Turbo/Super Charger Overboost Condition", 259 | "P0235": "Turbo/Super Charger Boost Sensor 'A' Circuit", 260 | "P0236": "Turbo/Super Charger Boost Sensor 'A' Circuit Range/Performance", 261 | "P0237": "Turbo/Super Charger Boost Sensor 'A' Circuit Low", 262 | "P0238": "Turbo/Super Charger Boost Sensor 'A' Circuit High", 263 | "P0239": "Turbo/Super Charger Boost Sensor 'B' Circuit", 264 | "P0240": "Turbo/Super Charger Boost Sensor 'B' Circuit Range/Performance", 265 | "P0241": "Turbo/Super Charger Boost Sensor 'B' Circuit Low", 266 | "P0242": "Turbo/Super Charger Boost Sensor 'B' Circuit High", 267 | "P0243": "Turbo/Super Charger Wastegate Solenoid 'A'", 268 | "P0244": "Turbo/Super Charger Wastegate Solenoid 'A' Range/Performance", 269 | "P0245": "Turbo/Super Charger Wastegate Solenoid 'A' Low", 270 | "P0246": "Turbo/Super Charger Wastegate Solenoid 'A' High", 271 | "P0247": "Turbo/Super Charger Wastegate Solenoid 'B'", 272 | "P0248": "Turbo/Super Charger Wastegate Solenoid 'B' Range/Performance", 273 | "P0249": "Turbo/Super Charger Wastegate Solenoid 'B' Low", 274 | "P0250": "Turbo/Super Charger Wastegate Solenoid 'B' High", 275 | "P0251": "Injection Pump Fuel Metering Control 'A' (Cam/Rotor/Injector)", 276 | "P0252": "Injection Pump Fuel Metering Control 'A' Range/Performance (Cam/Rotor/Injector)", 277 | "P0253": "Injection Pump Fuel Metering Control 'A' Low (Cam/Rotor/Injector)", 278 | "P0254": "Injection Pump Fuel Metering Control 'A' High (Cam/Rotor/Injector)", 279 | "P0255": "Injection Pump Fuel Metering Control 'A' Intermittent (Cam/Rotor/Injector)", 280 | "P0256": "Injection Pump Fuel Metering Control 'B' (Cam/Rotor/Injector)", 281 | "P0257": "Injection Pump Fuel Metering Control 'B' Range/Performance (Cam/Rotor/Injector)", 282 | "P0258": "Injection Pump Fuel Metering Control 'B' Low (Cam/Rotor/Injector)", 283 | "P0259": "Injection Pump Fuel Metering Control 'B' High (Cam/Rotor/Injector)", 284 | "P0260": "Injection Pump Fuel Metering Control 'B' Intermittent (Cam/Rotor/Injector)", 285 | "P0261": "Cylinder 1 Injector Circuit Low", 286 | "P0262": "Cylinder 1 Injector Circuit High", 287 | "P0263": "Cylinder 1 Contribution/Balance", 288 | "P0264": "Cylinder 2 Injector Circuit Low", 289 | "P0265": "Cylinder 2 Injector Circuit High", 290 | "P0266": "Cylinder 2 Contribution/Balance", 291 | "P0267": "Cylinder 3 Injector Circuit Low", 292 | "P0268": "Cylinder 3 Injector Circuit High", 293 | "P0269": "Cylinder 3 Contribution/Balance", 294 | "P0270": "Cylinder 4 Injector Circuit Low", 295 | "P0271": "Cylinder 4 Injector Circuit High", 296 | "P0272": "Cylinder 4 Contribution/Balance", 297 | "P0273": "Cylinder 5 Injector Circuit Low", 298 | "P0274": "Cylinder 5 Injector Circuit High", 299 | "P0275": "Cylinder 5 Contribution/Balance", 300 | "P0276": "Cylinder 6 Injector Circuit Low", 301 | "P0277": "Cylinder 6 Injector Circuit High", 302 | "P0278": "Cylinder 6 Contribution/Balance", 303 | "P0279": "Cylinder 7 Injector Circuit Low", 304 | "P0280": "Cylinder 7 Injector Circuit High", 305 | "P0281": "Cylinder 7 Contribution/Balance", 306 | "P0282": "Cylinder 8 Injector Circuit Low", 307 | "P0283": "Cylinder 8 Injector Circuit High", 308 | "P0284": "Cylinder 8 Contribution/Balance", 309 | "P0285": "Cylinder 9 Injector Circuit Low", 310 | "P0286": "Cylinder 9 Injector Circuit High", 311 | "P0287": "Cylinder 9 Contribution/Balance", 312 | "P0288": "Cylinder 10 Injector Circuit Low", 313 | "P0289": "Cylinder 10 Injector Circuit High", 314 | "P0290": "Cylinder 10 Contribution/Balance", 315 | "P0291": "Cylinder 11 Injector Circuit Low", 316 | "P0292": "Cylinder 11 Injector Circuit High", 317 | "P0293": "Cylinder 11 Contribution/Balance", 318 | "P0294": "Cylinder 12 Injector Circuit Low", 319 | "P0295": "Cylinder 12 Injector Circuit High", 320 | "P0296": "Cylinder 12 Contribution/Balance", 321 | "P0297": "Vehicle Overspeed Condition", 322 | "P0298": "Engine Oil Over Temperature", 323 | "P0299": "Turbo/Super Charger Underboost", 324 | "P0300": "Random/Multiple Cylinder Misfire Detected", 325 | "P0301": "Cylinder 1 Misfire Detected", 326 | "P0302": "Cylinder 2 Misfire Detected", 327 | "P0303": "Cylinder 3 Misfire Detected", 328 | "P0304": "Cylinder 4 Misfire Detected", 329 | "P0305": "Cylinder 5 Misfire Detected", 330 | "P0306": "Cylinder 6 Misfire Detected", 331 | "P0307": "Cylinder 7 Misfire Detected", 332 | "P0308": "Cylinder 8 Misfire Detected", 333 | "P0309": "Cylinder 9 Misfire Detected", 334 | "P0310": "Cylinder 10 Misfire Detected", 335 | "P0311": "Cylinder 11 Misfire Detected", 336 | "P0312": "Cylinder 12 Misfire Detected", 337 | "P0313": "Misfire Detected with Low Fuel", 338 | "P0314": "Single Cylinder Misfire (Cylinder not Specified)", 339 | "P0315": "Crankshaft Position System Variation Not Learned", 340 | "P0316": "Engine Misfire Detected on Startup (First 1000 Revolutions)", 341 | "P0317": "Rough Road Hardware Not Present", 342 | "P0318": "Rough Road Sensor 'A' Signal Circuit", 343 | "P0319": "Rough Road Sensor 'B'", 344 | "P0320": "Ignition/Distributor Engine Speed Input Circuit", 345 | "P0321": "Ignition/Distributor Engine Speed Input Circuit Range/Performance", 346 | "P0322": "Ignition/Distributor Engine Speed Input Circuit No Signal", 347 | "P0323": "Ignition/Distributor Engine Speed Input Circuit Intermittent", 348 | "P0324": "Knock Control System Error", 349 | "P0325": "Knock Sensor 1 Circuit", 350 | "P0326": "Knock Sensor 1 Circuit Range/Performance", 351 | "P0327": "Knock Sensor 1 Circuit Low", 352 | "P0328": "Knock Sensor 1 Circuit High", 353 | "P0329": "Knock Sensor 1 Circuit Input Intermittent", 354 | "P0330": "Knock Sensor 2 Circuit", 355 | "P0331": "Knock Sensor 2 Circuit Range/Performance", 356 | "P0332": "Knock Sensor 2 Circuit Low", 357 | "P0333": "Knock Sensor 2 Circuit High", 358 | "P0334": "Knock Sensor 2 Circuit Input Intermittent", 359 | "P0335": "Crankshaft Position Sensor 'A' Circuit", 360 | "P0336": "Crankshaft Position Sensor 'A' Circuit Range/Performance", 361 | "P0337": "Crankshaft Position Sensor 'A' Circuit Low", 362 | "P0338": "Crankshaft Position Sensor 'A' Circuit High", 363 | "P0339": "Crankshaft Position Sensor 'A' Circuit Intermittent", 364 | "P0340": "Camshaft Position Sensor 'A' Circuit", 365 | "P0341": "Camshaft Position Sensor 'A' Circuit Range/Performance", 366 | "P0342": "Camshaft Position Sensor 'A' Circuit Low", 367 | "P0343": "Camshaft Position Sensor 'A' Circuit High", 368 | "P0344": "Camshaft Position Sensor 'A' Circuit Intermittent", 369 | "P0345": "Camshaft Position Sensor 'A' Circuit", 370 | "P0346": "Camshaft Position Sensor 'A' Circuit Range/Performance", 371 | "P0347": "Camshaft Position Sensor 'A' Circuit Low", 372 | "P0348": "Camshaft Position Sensor 'A' Circuit High", 373 | "P0349": "Camshaft Position Sensor 'A' Circuit Intermittent", 374 | "P0350": "Ignition Coil Primary/Secondary Circuit", 375 | "P0351": "Ignition Coil 'A' Primary/Secondary Circuit", 376 | "P0352": "Ignition Coil 'B' Primary/Secondary Circuit", 377 | "P0353": "Ignition Coil 'C' Primary/Secondary Circuit", 378 | "P0354": "Ignition Coil 'D' Primary/Secondary Circuit", 379 | "P0355": "Ignition Coil 'E' Primary/Secondary Circuit", 380 | "P0356": "Ignition Coil 'F' Primary/Secondary Circuit", 381 | "P0357": "Ignition Coil 'G' Primary/Secondary Circuit", 382 | "P0358": "Ignition Coil 'H' Primary/Secondary Circuit", 383 | "P0359": "Ignition Coil 'I' Primary/Secondary Circuit", 384 | "P0360": "Ignition Coil 'J' Primary/Secondary Circuit", 385 | "P0361": "Ignition Coil 'K' Primary/Secondary Circuit", 386 | "P0362": "Ignition Coil 'L' Primary/Secondary Circuit", 387 | "P0363": "Misfire Detected - Fueling Disabled", 388 | "P0364": "Reserved", 389 | "P0365": "Camshaft Position Sensor 'B' Circuit", 390 | "P0366": "Camshaft Position Sensor 'B' Circuit Range/Performance", 391 | "P0367": "Camshaft Position Sensor 'B' Circuit Low", 392 | "P0368": "Camshaft Position Sensor 'B' Circuit High", 393 | "P0369": "Camshaft Position Sensor 'B' Circuit Intermittent", 394 | "P0370": "Timing Reference High Resolution Signal 'A'", 395 | "P0371": "Timing Reference High Resolution Signal 'A' Too Many Pulses", 396 | "P0372": "Timing Reference High Resolution Signal 'A' Too Few Pulses", 397 | "P0373": "Timing Reference High Resolution Signal 'A' Intermittent/Erratic Pulses", 398 | "P0374": "Timing Reference High Resolution Signal 'A' No Pulse", 399 | "P0375": "Timing Reference High Resolution Signal 'B'", 400 | "P0376": "Timing Reference High Resolution Signal 'B' Too Many Pulses", 401 | "P0377": "Timing Reference High Resolution Signal 'B' Too Few Pulses", 402 | "P0378": "Timing Reference High Resolution Signal 'B' Intermittent/Erratic Pulses", 403 | "P0379": "Timing Reference High Resolution Signal 'B' No Pulses", 404 | "P0380": "Glow Plug/Heater Circuit 'A'", 405 | "P0381": "Glow Plug/Heater Indicator Circuit", 406 | "P0382": "Glow Plug/Heater Circuit 'B'", 407 | "P0383": "Reserved by SAE J2012", 408 | "P0384": "Reserved by SAE J2012", 409 | "P0385": "Crankshaft Position Sensor 'B' Circuit", 410 | "P0386": "Crankshaft Position Sensor 'B' Circuit Range/Performance", 411 | "P0387": "Crankshaft Position Sensor 'B' Circuit Low", 412 | "P0388": "Crankshaft Position Sensor 'B' Circuit High", 413 | "P0389": "Crankshaft Position Sensor 'B' Circuit Intermittent", 414 | "P0390": "Camshaft Position Sensor 'B' Circuit", 415 | "P0391": "Camshaft Position Sensor 'B' Circuit Range/Performance", 416 | "P0392": "Camshaft Position Sensor 'B' Circuit Low", 417 | "P0393": "Camshaft Position Sensor 'B' Circuit High", 418 | "P0394": "Camshaft Position Sensor 'B' Circuit Intermittent", 419 | "P0400": "Exhaust Gas Recirculation Flow", 420 | "P0401": "Exhaust Gas Recirculation Flow Insufficient Detected", 421 | "P0402": "Exhaust Gas Recirculation Flow Excessive Detected", 422 | "P0403": "Exhaust Gas Recirculation Control Circuit", 423 | "P0404": "Exhaust Gas Recirculation Control Circuit Range/Performance", 424 | "P0405": "Exhaust Gas Recirculation Sensor 'A' Circuit Low", 425 | "P0406": "Exhaust Gas Recirculation Sensor 'A' Circuit High", 426 | "P0407": "Exhaust Gas Recirculation Sensor 'B' Circuit Low", 427 | "P0408": "Exhaust Gas Recirculation Sensor 'B' Circuit High", 428 | "P0409": "Exhaust Gas Recirculation Sensor 'A' Circuit", 429 | "P0410": "Secondary Air Injection System", 430 | "P0411": "Secondary Air Injection System Incorrect Flow Detected", 431 | "P0412": "Secondary Air Injection System Switching Valve 'A' Circuit", 432 | "P0413": "Secondary Air Injection System Switching Valve 'A' Circuit Open", 433 | "P0414": "Secondary Air Injection System Switching Valve 'A' Circuit Shorted", 434 | "P0415": "Secondary Air Injection System Switching Valve 'B' Circuit", 435 | "P0416": "Secondary Air Injection System Switching Valve 'B' Circuit Open", 436 | "P0417": "Secondary Air Injection System Switching Valve 'B' Circuit Shorted", 437 | "P0418": "Secondary Air Injection System Control 'A' Circuit", 438 | "P0419": "Secondary Air Injection System Control 'B' Circuit", 439 | "P0420": "Catalyst System Efficiency Below Threshold", 440 | "P0421": "Warm Up Catalyst Efficiency Below Threshold", 441 | "P0422": "Main Catalyst Efficiency Below Threshold", 442 | "P0423": "Heated Catalyst Efficiency Below Threshold", 443 | "P0424": "Heated Catalyst Temperature Below Threshold", 444 | "P0425": "Catalyst Temperature Sensor", 445 | "P0426": "Catalyst Temperature Sensor Range/Performance", 446 | "P0427": "Catalyst Temperature Sensor Low", 447 | "P0428": "Catalyst Temperature Sensor High", 448 | "P0429": "Catalyst Heater Control Circuit", 449 | "P0430": "Catalyst System Efficiency Below Threshold", 450 | "P0431": "Warm Up Catalyst Efficiency Below Threshold", 451 | "P0432": "Main Catalyst Efficiency Below Threshold", 452 | "P0433": "Heated Catalyst Efficiency Below Threshold", 453 | "P0434": "Heated Catalyst Temperature Below Threshold", 454 | "P0435": "Catalyst Temperature Sensor", 455 | "P0436": "Catalyst Temperature Sensor Range/Performance", 456 | "P0437": "Catalyst Temperature Sensor Low", 457 | "P0438": "Catalyst Temperature Sensor High", 458 | "P0439": "Catalyst Heater Control Circuit", 459 | "P0440": "Evaporative Emission System", 460 | "P0441": "Evaporative Emission System Incorrect Purge Flow", 461 | "P0442": "Evaporative Emission System Leak Detected (small leak)", 462 | "P0443": "Evaporative Emission System Purge Control Valve Circuit", 463 | "P0444": "Evaporative Emission System Purge Control Valve Circuit Open", 464 | "P0445": "Evaporative Emission System Purge Control Valve Circuit Shorted", 465 | "P0446": "Evaporative Emission System Vent Control Circuit", 466 | "P0447": "Evaporative Emission System Vent Control Circuit Open", 467 | "P0448": "Evaporative Emission System Vent Control Circuit Shorted", 468 | "P0449": "Evaporative Emission System Vent Valve/Solenoid Circuit", 469 | "P0450": "Evaporative Emission System Pressure Sensor/Switch", 470 | "P0451": "Evaporative Emission System Pressure Sensor/Switch Range/Performance", 471 | "P0452": "Evaporative Emission System Pressure Sensor/Switch Low", 472 | "P0453": "Evaporative Emission System Pressure Sensor/Switch High", 473 | "P0454": "Evaporative Emission System Pressure Sensor/Switch Intermittent", 474 | "P0455": "Evaporative Emission System Leak Detected (large leak)", 475 | "P0456": "Evaporative Emission System Leak Detected (very small leak)", 476 | "P0457": "Evaporative Emission System Leak Detected (fuel cap loose/off)", 477 | "P0458": "Evaporative Emission System Purge Control Valve Circuit Low", 478 | "P0459": "Evaporative Emission System Purge Control Valve Circuit High", 479 | "P0460": "Fuel Level Sensor 'A' Circuit", 480 | "P0461": "Fuel Level Sensor 'A' Circuit Range/Performance", 481 | "P0462": "Fuel Level Sensor 'A' Circuit Low", 482 | "P0463": "Fuel Level Sensor 'A' Circuit High", 483 | "P0464": "Fuel Level Sensor 'A' Circuit Intermittent", 484 | "P0465": "EVAP Purge Flow Sensor Circuit", 485 | "P0466": "EVAP Purge Flow Sensor Circuit Range/Performance", 486 | "P0467": "EVAP Purge Flow Sensor Circuit Low", 487 | "P0468": "EVAP Purge Flow Sensor Circuit High", 488 | "P0469": "EVAP Purge Flow Sensor Circuit Intermittent", 489 | "P0470": "Exhaust Pressure Sensor", 490 | "P0471": "Exhaust Pressure Sensor Range/Performance", 491 | "P0472": "Exhaust Pressure Sensor Low", 492 | "P0473": "Exhaust Pressure Sensor High", 493 | "P0474": "Exhaust Pressure Sensor Intermittent", 494 | "P0475": "Exhaust Pressure Control Valve", 495 | "P0476": "Exhaust Pressure Control Valve Range/Performance", 496 | "P0477": "Exhaust Pressure Control Valve Low", 497 | "P0478": "Exhaust Pressure Control Valve High", 498 | "P0479": "Exhaust Pressure Control Valve Intermittent", 499 | "P0480": "Fan 1 Control Circuit", 500 | "P0481": "Fan 2 Control Circuit", 501 | "P0482": "Fan 3 Control Circuit", 502 | "P0483": "Fan Rationality Check", 503 | "P0484": "Fan Circuit Over Current", 504 | "P0485": "Fan Power/Ground Circuit", 505 | "P0486": "Exhaust Gas Recirculation Sensor 'B' Circuit", 506 | "P0487": "Exhaust Gas Recirculation Throttle Position Control Circuit", 507 | "P0488": "Exhaust Gas Recirculation Throttle Position Control Range/Performance", 508 | "P0489": "Exhaust Gas Recirculation Control Circuit Low", 509 | "P0490": "Exhaust Gas Recirculation Control Circuit High", 510 | "P0491": "Secondary Air Injection System Insufficient Flow", 511 | "P0492": "Secondary Air Injection System Insufficient Flow", 512 | "P0493": "Fan Overspeed", 513 | "P0494": "Fan Speed Low", 514 | "P0495": "Fan Speed High", 515 | "P0496": "Evaporative Emission System High Purge Flow", 516 | "P0497": "Evaporative Emission System Low Purge Flow", 517 | "P0498": "Evaporative Emission System Vent Valve Control Circuit Low", 518 | "P0499": "Evaporative Emission System Vent Valve Control Circuit High", 519 | "P0500": "Vehicle Speed Sensor 'A'", 520 | "P0501": "Vehicle Speed Sensor 'A' Range/Performance", 521 | "P0502": "Vehicle Speed Sensor 'A' Circuit Low Input", 522 | "P0503": "Vehicle Speed Sensor 'A' Intermittent/Erratic/High", 523 | "P0504": "Brake Switch 'A'/'B' Correlation", 524 | "P0505": "Idle Air Control System", 525 | "P0506": "Idle Air Control System RPM Lower Than Expected", 526 | "P0507": "Idle Air Control System RPM Higher Than Expected", 527 | "P0508": "Idle Air Control System Circuit Low", 528 | "P0509": "Idle Air Control System Circuit High", 529 | "P0510": "Closed Throttle Position Switch", 530 | "P0511": "Idle Air Control Circuit", 531 | "P0512": "Starter Request Circuit", 532 | "P0513": "Incorrect Immobilizer Key", 533 | "P0514": "Battery Temperature Sensor Circuit Range/Performance", 534 | "P0515": "Battery Temperature Sensor Circuit", 535 | "P0516": "Battery Temperature Sensor Circuit Low", 536 | "P0517": "Battery Temperature Sensor Circuit High", 537 | "P0518": "Idle Air Control Circuit Intermittent", 538 | "P0519": "Idle Air Control System Performance", 539 | "P0520": "Engine Oil Pressure Sensor/Switch Circuit", 540 | "P0521": "Engine Oil Pressure Sensor/Switch Range/Performance", 541 | "P0522": "Engine Oil Pressure Sensor/Switch Low Voltage", 542 | "P0523": "Engine Oil Pressure Sensor/Switch High Voltage", 543 | "P0524": "Engine Oil Pressure Too Low", 544 | "P0525": "Cruise Control Servo Control Circuit Range/Performance", 545 | "P0526": "Fan Speed Sensor Circuit", 546 | "P0527": "Fan Speed Sensor Circuit Range/Performance", 547 | "P0528": "Fan Speed Sensor Circuit No Signal", 548 | "P0529": "Fan Speed Sensor Circuit Intermittent", 549 | "P0530": "A/C Refrigerant Pressure Sensor 'A' Circuit", 550 | "P0531": "A/C Refrigerant Pressure Sensor 'A' Circuit Range/Performance", 551 | "P0532": "A/C Refrigerant Pressure Sensor 'A' Circuit Low", 552 | "P0533": "A/C Refrigerant Pressure Sensor 'A' Circuit High", 553 | "P0534": "Air Conditioner Refrigerant Charge Loss", 554 | "P0535": "A/C Evaporator Temperature Sensor Circuit", 555 | "P0536": "A/C Evaporator Temperature Sensor Circuit Range/Performance", 556 | "P0537": "A/C Evaporator Temperature Sensor Circuit Low", 557 | "P0538": "A/C Evaporator Temperature Sensor Circuit High", 558 | "P0539": "A/C Evaporator Temperature Sensor Circuit Intermittent", 559 | "P0540": "Intake Air Heater 'A' Circuit", 560 | "P0541": "Intake Air Heater 'A' Circuit Low", 561 | "P0542": "Intake Air Heater 'A' Circuit High", 562 | "P0543": "Intake Air Heater 'A' Circuit Open", 563 | "P0544": "Exhaust Gas Temperature Sensor Circuit", 564 | "P0545": "Exhaust Gas Temperature Sensor Circuit Low", 565 | "P0546": "Exhaust Gas Temperature Sensor Circuit High", 566 | "P0547": "Exhaust Gas Temperature Sensor Circuit", 567 | "P0548": "Exhaust Gas Temperature Sensor Circuit Low", 568 | "P0549": "Exhaust Gas Temperature Sensor Circuit High", 569 | "P0550": "Power Steering Pressure Sensor/Switch Circuit", 570 | "P0551": "Power Steering Pressure Sensor/Switch Circuit Range/Performance", 571 | "P0552": "Power Steering Pressure Sensor/Switch Circuit Low Input", 572 | "P0553": "Power Steering Pressure Sensor/Switch Circuit High Input", 573 | "P0554": "Power Steering Pressure Sensor/Switch Circuit Intermittent", 574 | "P0555": "Brake Booster Pressure Sensor Circuit", 575 | "P0556": "Brake Booster Pressure Sensor Circuit Range/Performance", 576 | "P0557": "Brake Booster Pressure Sensor Circuit Low Input", 577 | "P0558": "Brake Booster Pressure Sensor Circuit High Input", 578 | "P0559": "Brake Booster Pressure Sensor Circuit Intermittent", 579 | "P0560": "System Voltage", 580 | "P0561": "System Voltage Unstable", 581 | "P0562": "System Voltage Low", 582 | "P0563": "System Voltage High", 583 | "P0564": "Cruise Control Multi-Function Input 'A' Circuit", 584 | "P0565": "Cruise Control On Signal", 585 | "P0566": "Cruise Control Off Signal", 586 | "P0567": "Cruise Control Resume Signal", 587 | "P0568": "Cruise Control Set Signal", 588 | "P0569": "Cruise Control Coast Signal", 589 | "P0570": "Cruise Control Accelerate Signal", 590 | "P0571": "Brake Switch 'A' Circuit", 591 | "P0572": "Brake Switch 'A' Circuit Low", 592 | "P0573": "Brake Switch 'A' Circuit High", 593 | "P0574": "Cruise Control System - Vehicle Speed Too High", 594 | "P0575": "Cruise Control Input Circuit", 595 | "P0576": "Cruise Control Input Circuit Low", 596 | "P0577": "Cruise Control Input Circuit High", 597 | "P0578": "Cruise Control Multi-Function Input 'A' Circuit Stuck", 598 | "P0579": "Cruise Control Multi-Function Input 'A' Circuit Range/Performance", 599 | "P0580": "Cruise Control Multi-Function Input 'A' Circuit Low", 600 | "P0581": "Cruise Control Multi-Function Input 'A' Circuit High", 601 | "P0582": "Cruise Control Vacuum Control Circuit/Open", 602 | "P0583": "Cruise Control Vacuum Control Circuit Low", 603 | "P0584": "Cruise Control Vacuum Control Circuit High", 604 | "P0585": "Cruise Control Multi-Function Input 'A'/'B' Correlation", 605 | "P0586": "Cruise Control Vent Control Circuit/Open", 606 | "P0587": "Cruise Control Vent Control Circuit Low", 607 | "P0588": "Cruise Control Vent Control Circuit High", 608 | "P0589": "Cruise Control Multi-Function Input 'B' Circuit", 609 | "P0590": "Cruise Control Multi-Function Input 'B' Circuit Stuck", 610 | "P0591": "Cruise Control Multi-Function Input 'B' Circuit Range/Performance", 611 | "P0592": "Cruise Control Multi-Function Input 'B' Circuit Low", 612 | "P0593": "Cruise Control Multi-Function Input 'B' Circuit High", 613 | "P0594": "Cruise Control Servo Control Circuit/Open", 614 | "P0595": "Cruise Control Servo Control Circuit Low", 615 | "P0596": "Cruise Control Servo Control Circuit High", 616 | "P0597": "Thermostat Heater Control Circuit/Open", 617 | "P0598": "Thermostat Heater Control Circuit Low", 618 | "P0599": "Thermostat Heater Control Circuit High", 619 | "P0600": "Serial Communication Link", 620 | "P0601": "Internal Control Module Memory Check Sum Error", 621 | "P0602": "Control Module Programming Error", 622 | "P0603": "Internal Control Module Keep Alive Memory (KAM) Error", 623 | "P0604": "Internal Control Module Random Access Memory (RAM) Error", 624 | "P0605": "Internal Control Module Read Only Memory (ROM) Error", 625 | "P0606": "ECM/PCM Processor", 626 | "P0607": "Control Module Performance", 627 | "P0608": "Control Module VSS Output 'A'", 628 | "P0609": "Control Module VSS Output 'B'", 629 | "P0610": "Control Module Vehicle Options Error", 630 | "P0611": "Fuel Injector Control Module Performance", 631 | "P0612": "Fuel Injector Control Module Relay Control", 632 | "P0613": "TCM Processor", 633 | "P0614": "ECM / TCM Incompatible", 634 | "P0615": "Starter Relay Circuit", 635 | "P0616": "Starter Relay Circuit Low", 636 | "P0617": "Starter Relay Circuit High", 637 | "P0618": "Alternative Fuel Control Module KAM Error", 638 | "P0619": "Alternative Fuel Control Module RAM/ROM Error", 639 | "P0620": "Generator Control Circuit", 640 | "P0621": "Generator Lamp/L Terminal Circuit", 641 | "P0622": "Generator Field/F Terminal Circuit", 642 | "P0623": "Generator Lamp Control Circuit", 643 | "P0624": "Fuel Cap Lamp Control Circuit", 644 | "P0625": "Generator Field/F Terminal Circuit Low", 645 | "P0626": "Generator Field/F Terminal Circuit High", 646 | "P0627": "Fuel Pump 'A' Control Circuit /Open", 647 | "P0628": "Fuel Pump 'A' Control Circuit Low", 648 | "P0629": "Fuel Pump 'A' Control Circuit High", 649 | "P0630": "VIN Not Programmed or Incompatible - ECM/PCM", 650 | "P0631": "VIN Not Programmed or Incompatible - TCM", 651 | "P0632": "Odometer Not Programmed - ECM/PCM", 652 | "P0633": "Immobilizer Key Not Programmed - ECM/PCM", 653 | "P0634": "PCM/ECM/TCM Internal Temperature Too High", 654 | "P0635": "Power Steering Control Circuit", 655 | "P0636": "Power Steering Control Circuit Low", 656 | "P0637": "Power Steering Control Circuit High", 657 | "P0638": "Throttle Actuator Control Range/Performance", 658 | "P0639": "Throttle Actuator Control Range/Performance", 659 | "P0640": "Intake Air Heater Control Circuit", 660 | "P0641": "Sensor Reference Voltage 'A' Circuit/Open", 661 | "P0642": "Sensor Reference Voltage 'A' Circuit Low", 662 | "P0643": "Sensor Reference Voltage 'A' Circuit High", 663 | "P0644": "Driver Display Serial Communication Circuit", 664 | "P0645": "A/C Clutch Relay Control Circuit", 665 | "P0646": "A/C Clutch Relay Control Circuit Low", 666 | "P0647": "A/C Clutch Relay Control Circuit High", 667 | "P0648": "Immobilizer Lamp Control Circuit", 668 | "P0649": "Speed Control Lamp Control Circuit", 669 | "P0650": "Malfunction Indicator Lamp (MIL) Control Circuit", 670 | "P0651": "Sensor Reference Voltage 'B' Circuit/Open", 671 | "P0652": "Sensor Reference Voltage 'B' Circuit Low", 672 | "P0653": "Sensor Reference Voltage 'B' Circuit High", 673 | "P0654": "Engine RPM Output Circuit", 674 | "P0655": "Engine Hot Lamp Output Control Circuit", 675 | "P0656": "Fuel Level Output Circuit", 676 | "P0657": "Actuator Supply Voltage 'A' Circuit/Open", 677 | "P0658": "Actuator Supply Voltage 'A' Circuit Low", 678 | "P0659": "Actuator Supply Voltage 'A' Circuit High", 679 | "P0660": "Intake Manifold Tuning Valve Control Circuit/Open", 680 | "P0661": "Intake Manifold Tuning Valve Control Circuit Low", 681 | "P0662": "Intake Manifold Tuning Valve Control Circuit High", 682 | "P0663": "Intake Manifold Tuning Valve Control Circuit/Open", 683 | "P0664": "Intake Manifold Tuning Valve Control Circuit Low", 684 | "P0665": "Intake Manifold Tuning Valve Control Circuit High", 685 | "P0666": "PCM/ECM/TCM Internal Temperature Sensor Circuit", 686 | "P0667": "PCM/ECM/TCM Internal Temperature Sensor Range/Performance", 687 | "P0668": "PCM/ECM/TCM Internal Temperature Sensor Circuit Low", 688 | "P0669": "PCM/ECM/TCM Internal Temperature Sensor Circuit High", 689 | "P0670": "Glow Plug Module Control Circuit", 690 | "P0671": "Cylinder 1 Glow Plug Circuit", 691 | "P0672": "Cylinder 2 Glow Plug Circuit", 692 | "P0673": "Cylinder 3 Glow Plug Circuit", 693 | "P0674": "Cylinder 4 Glow Plug Circuit", 694 | "P0675": "Cylinder 5 Glow Plug Circuit", 695 | "P0676": "Cylinder 6 Glow Plug Circuit", 696 | "P0677": "Cylinder 7 Glow Plug Circuit", 697 | "P0678": "Cylinder 8 Glow Plug Circuit", 698 | "P0679": "Cylinder 9 Glow Plug Circuit", 699 | "P0680": "Cylinder 10 Glow Plug Circuit", 700 | "P0681": "Cylinder 11 Glow Plug Circuit", 701 | "P0682": "Cylinder 12 Glow Plug Circuit", 702 | "P0683": "Glow Plug Control Module to PCM Communication Circuit", 703 | "P0684": "Glow Plug Control Module to PCM Communication Circuit Range/Performance", 704 | "P0685": "ECM/PCM Power Relay Control Circuit /Open", 705 | "P0686": "ECM/PCM Power Relay Control Circuit Low", 706 | "P0687": "ECM/PCM Power Relay Control Circuit High", 707 | "P0688": "ECM/PCM Power Relay Sense Circuit /Open", 708 | "P0689": "ECM/PCM Power Relay Sense Circuit Low", 709 | "P0690": "ECM/PCM Power Relay Sense Circuit High", 710 | "P0691": "Fan 1 Control Circuit Low", 711 | "P0692": "Fan 1 Control Circuit High", 712 | "P0693": "Fan 2 Control Circuit Low", 713 | "P0694": "Fan 2 Control Circuit High", 714 | "P0695": "Fan 3 Control Circuit Low", 715 | "P0696": "Fan 3 Control Circuit High", 716 | "P0697": "Sensor Reference Voltage 'C' Circuit/Open", 717 | "P0698": "Sensor Reference Voltage 'C' Circuit Low", 718 | "P0699": "Sensor Reference Voltage 'C' Circuit High", 719 | "P0700": "Transmission Control System (MIL Request)", 720 | "P0701": "Transmission Control System Range/Performance", 721 | "P0702": "Transmission Control System Electrical", 722 | "P0703": "Brake Switch 'B' Circuit", 723 | "P0704": "Clutch Switch Input Circuit Malfunction", 724 | "P0705": "Transmission Range Sensor Circuit Malfunction (PRNDL Input)", 725 | "P0706": "Transmission Range Sensor Circuit Range/Performance", 726 | "P0707": "Transmission Range Sensor Circuit Low", 727 | "P0708": "Transmission Range Sensor Circuit High", 728 | "P0709": "Transmission Range Sensor Circuit Intermittent", 729 | "P0710": "Transmission Fluid Temperature Sensor 'A' Circuit", 730 | "P0711": "Transmission Fluid Temperature Sensor 'A' Circuit Range/Performance", 731 | "P0712": "Transmission Fluid Temperature Sensor 'A' Circuit Low", 732 | "P0713": "Transmission Fluid Temperature Sensor 'A' Circuit High", 733 | "P0714": "Transmission Fluid Temperature Sensor 'A' Circuit Intermittent", 734 | "P0715": "Input/Turbine Speed Sensor 'A' Circuit", 735 | "P0716": "Input/Turbine Speed Sensor 'A' Circuit Range/Performance", 736 | "P0717": "Input/Turbine Speed Sensor 'A' Circuit No Signal", 737 | "P0718": "Input/Turbine Speed Sensor 'A' Circuit Intermittent", 738 | "P0719": "Brake Switch 'B' Circuit Low", 739 | "P0720": "Output Speed Sensor Circuit", 740 | "P0721": "Output Speed Sensor Circuit Range/Performance", 741 | "P0722": "Output Speed Sensor Circuit No Signal", 742 | "P0723": "Output Speed Sensor Circuit Intermittent", 743 | "P0724": "Brake Switch 'B' Circuit High", 744 | "P0725": "Engine Speed Input Circuit", 745 | "P0726": "Engine Speed Input Circuit Range/Performance", 746 | "P0727": "Engine Speed Input Circuit No Signal", 747 | "P0728": "Engine Speed Input Circuit Intermittent", 748 | "P0729": "Gear 6 Incorrect Ratio", 749 | "P0730": "Incorrect Gear Ratio", 750 | "P0731": "Gear 1 Incorrect Ratio", 751 | "P0732": "Gear 2 Incorrect Ratio", 752 | "P0733": "Gear 3 Incorrect Ratio", 753 | "P0734": "Gear 4 Incorrect Ratio", 754 | "P0735": "Gear 5 Incorrect Ratio", 755 | "P0736": "Reverse Incorrect Ratio", 756 | "P0737": "TCM Engine Speed Output Circuit", 757 | "P0738": "TCM Engine Speed Output Circuit Low", 758 | "P0739": "TCM Engine Speed Output Circuit High", 759 | "P0740": "Torque Converter Clutch Circuit/Open", 760 | "P0741": "Torque Converter Clutch Circuit Performance or Stuck Off", 761 | "P0742": "Torque Converter Clutch Circuit Stuck On", 762 | "P0743": "Torque Converter Clutch Circuit Electrical", 763 | "P0744": "Torque Converter Clutch Circuit Intermittent", 764 | "P0745": "Pressure Control Solenoid 'A'", 765 | "P0746": "Pressure Control Solenoid 'A' Performance or Stuck Off", 766 | "P0747": "Pressure Control Solenoid 'A' Stuck On", 767 | "P0748": "Pressure Control Solenoid 'A' Electrical", 768 | "P0749": "Pressure Control Solenoid 'A' Intermittent", 769 | "P0750": "Shift Solenoid 'A'", 770 | "P0751": "Shift Solenoid 'A' Performance or Stuck Off", 771 | "P0752": "Shift Solenoid 'A' Stuck On", 772 | "P0753": "Shift Solenoid 'A' Electrical", 773 | "P0754": "Shift Solenoid 'A' Intermittent", 774 | "P0755": "Shift Solenoid 'B'", 775 | "P0756": "Shift Solenoid 'B' Performance or Stuck Off", 776 | "P0757": "Shift Solenoid 'B' Stuck On", 777 | "P0758": "Shift Solenoid 'B' Electrical", 778 | "P0759": "Shift Solenoid 'B' Intermittent", 779 | "P0760": "Shift Solenoid 'C'", 780 | "P0761": "Shift Solenoid 'C' Performance or Stuck Off", 781 | "P0762": "Shift Solenoid 'C' Stuck On", 782 | "P0763": "Shift Solenoid 'C' Electrical", 783 | "P0764": "Shift Solenoid 'C' Intermittent", 784 | "P0765": "Shift Solenoid 'D'", 785 | "P0766": "Shift Solenoid 'D' Performance or Stuck Off", 786 | "P0767": "Shift Solenoid 'D' Stuck On", 787 | "P0768": "Shift Solenoid 'D' Electrical", 788 | "P0769": "Shift Solenoid 'D' Intermittent", 789 | "P0770": "Shift Solenoid 'E'", 790 | "P0771": "Shift Solenoid 'E' Performance or Stuck Off", 791 | "P0772": "Shift Solenoid 'E' Stuck On", 792 | "P0773": "Shift Solenoid 'E' Electrical", 793 | "P0774": "Shift Solenoid 'E' Intermittent", 794 | "P0775": "Pressure Control Solenoid 'B'", 795 | "P0776": "Pressure Control Solenoid 'B' Performance or Stuck off", 796 | "P0777": "Pressure Control Solenoid 'B' Stuck On", 797 | "P0778": "Pressure Control Solenoid 'B' Electrical", 798 | "P0779": "Pressure Control Solenoid 'B' Intermittent", 799 | "P0780": "Shift Error", 800 | "P0781": "1-2 Shift", 801 | "P0782": "2-3 Shift", 802 | "P0783": "3-4 Shift", 803 | "P0784": "4-5 Shift", 804 | "P0785": "Shift/Timing Solenoid", 805 | "P0786": "Shift/Timing Solenoid Range/Performance", 806 | "P0787": "Shift/Timing Solenoid Low", 807 | "P0788": "Shift/Timing Solenoid High", 808 | "P0789": "Shift/Timing Solenoid Intermittent", 809 | "P0790": "Normal/Performance Switch Circuit", 810 | "P0791": "Intermediate Shaft Speed Sensor 'A' Circuit", 811 | "P0792": "Intermediate Shaft Speed Sensor 'A' Circuit Range/Performance", 812 | "P0793": "Intermediate Shaft Speed Sensor 'A' Circuit No Signal", 813 | "P0794": "Intermediate Shaft Speed Sensor 'A' Circuit Intermittent", 814 | "P0795": "Pressure Control Solenoid 'C'", 815 | "P0796": "Pressure Control Solenoid 'C' Performance or Stuck off", 816 | "P0797": "Pressure Control Solenoid 'C' Stuck On", 817 | "P0798": "Pressure Control Solenoid 'C' Electrical", 818 | "P0799": "Pressure Control Solenoid 'C' Intermittent", 819 | "P0800": "Transfer Case Control System (MIL Request)", 820 | "P0801": "Reverse Inhibit Control Circuit", 821 | "P0802": "Transmission Control System MIL Request Circuit/Open", 822 | "P0803": "1-4 Upshift (Skip Shift) Solenoid Control Circuit", 823 | "P0804": "1-4 Upshift (Skip Shift) Lamp Control Circuit", 824 | "P0805": "Clutch Position Sensor Circuit", 825 | "P0806": "Clutch Position Sensor Circuit Range/Performance", 826 | "P0807": "Clutch Position Sensor Circuit Low", 827 | "P0808": "Clutch Position Sensor Circuit High", 828 | "P0809": "Clutch Position Sensor Circuit Intermittent", 829 | "P0810": "Clutch Position Control Error", 830 | "P0811": "Excessive Clutch Slippage", 831 | "P0812": "Reverse Input Circuit", 832 | "P0813": "Reverse Output Circuit", 833 | "P0814": "Transmission Range Display Circuit", 834 | "P0815": "Upshift Switch Circuit", 835 | "P0816": "Downshift Switch Circuit", 836 | "P0817": "Starter Disable Circuit", 837 | "P0818": "Driveline Disconnect Switch Input Circuit", 838 | "P0819": "Up and Down Shift Switch to Transmission Range Correlation", 839 | "P0820": "Gear Lever X-Y Position Sensor Circuit", 840 | "P0821": "Gear Lever X Position Circuit", 841 | "P0822": "Gear Lever Y Position Circuit", 842 | "P0823": "Gear Lever X Position Circuit Intermittent", 843 | "P0824": "Gear Lever Y Position Circuit Intermittent", 844 | "P0825": "Gear Lever Push-Pull Switch (Shift Anticipate)", 845 | "P0826": "Up and Down Shift Switch Circuit", 846 | "P0827": "Up and Down Shift Switch Circuit Low", 847 | "P0828": "Up and Down Shift Switch Circuit High", 848 | "P0829": "5-6 Shift", 849 | "P0830": "Clutch Pedal Switch 'A' Circuit", 850 | "P0831": "Clutch Pedal Switch 'A' Circuit Low", 851 | "P0832": "Clutch Pedal Switch 'A' Circuit High", 852 | "P0833": "Clutch Pedal Switch 'B' Circuit", 853 | "P0834": "Clutch Pedal Switch 'B' Circuit Low", 854 | "P0835": "Clutch Pedal Switch 'B' Circuit High", 855 | "P0836": "Four Wheel Drive (4WD) Switch Circuit", 856 | "P0837": "Four Wheel Drive (4WD) Switch Circuit Range/Performance", 857 | "P0838": "Four Wheel Drive (4WD) Switch Circuit Low", 858 | "P0839": "Four Wheel Drive (4WD) Switch Circuit High", 859 | "P0840": "Transmission Fluid Pressure Sensor/Switch 'A' Circuit", 860 | "P0841": "Transmission Fluid Pressure Sensor/Switch 'A' Circuit Range/Performance", 861 | "P0842": "Transmission Fluid Pressure Sensor/Switch 'A' Circuit Low", 862 | "P0843": "Transmission Fluid Pressure Sensor/Switch 'A' Circuit High", 863 | "P0844": "Transmission Fluid Pressure Sensor/Switch 'A' Circuit Intermittent", 864 | "P0845": "Transmission Fluid Pressure Sensor/Switch 'B' Circuit", 865 | "P0846": "Transmission Fluid Pressure Sensor/Switch 'B' Circuit Range/Performance", 866 | "P0847": "Transmission Fluid Pressure Sensor/Switch 'B' Circuit Low", 867 | "P0848": "Transmission Fluid Pressure Sensor/Switch 'B' Circuit High", 868 | "P0849": "Transmission Fluid Pressure Sensor/Switch 'B' Circuit Intermittent", 869 | "P0850": "Park/Neutral Switch Input Circuit", 870 | "P0851": "Park/Neutral Switch Input Circuit Low", 871 | "P0852": "Park/Neutral Switch Input Circuit High", 872 | "P0853": "Drive Switch Input Circuit", 873 | "P0854": "Drive Switch Input Circuit Low", 874 | "P0855": "Drive Switch Input Circuit High", 875 | "P0856": "Traction Control Input Signal", 876 | "P0857": "Traction Control Input Signal Range/Performance", 877 | "P0858": "Traction Control Input Signal Low", 878 | "P0859": "Traction Control Input Signal High", 879 | "P0860": "Gear Shift Module Communication Circuit", 880 | "P0861": "Gear Shift Module Communication Circuit Low", 881 | "P0862": "Gear Shift Module Communication Circuit High", 882 | "P0863": "TCM Communication Circuit", 883 | "P0864": "TCM Communication Circuit Range/Performance", 884 | "P0865": "TCM Communication Circuit Low", 885 | "P0866": "TCM Communication Circuit High", 886 | "P0867": "Transmission Fluid Pressure", 887 | "P0868": "Transmission Fluid Pressure Low", 888 | "P0869": "Transmission Fluid Pressure High", 889 | "P0870": "Transmission Fluid Pressure Sensor/Switch 'C' Circuit", 890 | "P0871": "Transmission Fluid Pressure Sensor/Switch 'C' Circuit Range/Performance", 891 | "P0872": "Transmission Fluid Pressure Sensor/Switch 'C' Circuit Low", 892 | "P0873": "Transmission Fluid Pressure Sensor/Switch 'C' Circuit High", 893 | "P0874": "Transmission Fluid Pressure Sensor/Switch 'C' Circuit Intermittent", 894 | "P0875": "Transmission Fluid Pressure Sensor/Switch 'D' Circuit", 895 | "P0876": "Transmission Fluid Pressure Sensor/Switch 'D' Circuit Range/Performance", 896 | "P0877": "Transmission Fluid Pressure Sensor/Switch 'D' Circuit Low", 897 | "P0878": "Transmission Fluid Pressure Sensor/Switch 'D' Circuit High", 898 | "P0879": "Transmission Fluid Pressure Sensor/Switch 'D' Circuit Intermittent", 899 | "P0880": "TCM Power Input Signal", 900 | "P0881": "TCM Power Input Signal Range/Performance", 901 | "P0882": "TCM Power Input Signal Low", 902 | "P0883": "TCM Power Input Signal High", 903 | "P0884": "TCM Power Input Signal Intermittent", 904 | "P0885": "TCM Power Relay Control Circuit/Open", 905 | "P0886": "TCM Power Relay Control Circuit Low", 906 | "P0887": "TCM Power Relay Control Circuit High", 907 | "P0888": "TCM Power Relay Sense Circuit", 908 | "P0889": "TCM Power Relay Sense Circuit Range/Performance", 909 | "P0890": "TCM Power Relay Sense Circuit Low", 910 | "P0891": "TCM Power Relay Sense Circuit High", 911 | "P0892": "TCM Power Relay Sense Circuit Intermittent", 912 | "P0893": "Multiple Gears Engaged", 913 | "P0894": "Transmission Component Slipping", 914 | "P0895": "Shift Time Too Short", 915 | "P0896": "Shift Time Too Long", 916 | "P0897": "Transmission Fluid Deteriorated", 917 | "P0898": "Transmission Control System MIL Request Circuit Low", 918 | "P0899": "Transmission Control System MIL Request Circuit High", 919 | "P0900": "Clutch Actuator Circuit/Open", 920 | "P0901": "Clutch Actuator Circuit Range/Performance", 921 | "P0902": "Clutch Actuator Circuit Low", 922 | "P0903": "Clutch Actuator Circuit High", 923 | "P0904": "Gate Select Position Circuit", 924 | "P0905": "Gate Select Position Circuit Range/Performance", 925 | "P0906": "Gate Select Position Circuit Low", 926 | "P0907": "Gate Select Position Circuit High", 927 | "P0908": "Gate Select Position Circuit Intermittent", 928 | "P0909": "Gate Select Control Error", 929 | "P0910": "Gate Select Actuator Circuit/Open", 930 | "P0911": "Gate Select Actuator Circuit Range/Performance", 931 | "P0912": "Gate Select Actuator Circuit Low", 932 | "P0913": "Gate Select Actuator Circuit High", 933 | "P0914": "Gear Shift Position Circuit", 934 | "P0915": "Gear Shift Position Circuit Range/Performance", 935 | "P0916": "Gear Shift Position Circuit Low", 936 | "P0917": "Gear Shift Position Circuit High", 937 | "P0918": "Gear Shift Position Circuit Intermittent", 938 | "P0919": "Gear Shift Position Control Error", 939 | "P0920": "Gear Shift Forward Actuator Circuit/Open", 940 | "P0921": "Gear Shift Forward Actuator Circuit Range/Performance", 941 | "P0922": "Gear Shift Forward Actuator Circuit Low", 942 | "P0923": "Gear Shift Forward Actuator Circuit High", 943 | "P0924": "Gear Shift Reverse Actuator Circuit/Open", 944 | "P0925": "Gear Shift Reverse Actuator Circuit Range/Performance", 945 | "P0926": "Gear Shift Reverse Actuator Circuit Low", 946 | "P0927": "Gear Shift Reverse Actuator Circuit High", 947 | "P0928": "Gear Shift Lock Solenoid Control Circuit/Open", 948 | "P0929": "Gear Shift Lock Solenoid Control Circuit Range/Performance", 949 | "P0930": "Gear Shift Lock Solenoid Control Circuit Low", 950 | "P0931": "Gear Shift Lock Solenoid Control Circuit High", 951 | "P0932": "Hydraulic Pressure Sensor Circuit", 952 | "P0933": "Hydraulic Pressure Sensor Range/Performance", 953 | "P0934": "Hydraulic Pressure Sensor Circuit Low", 954 | "P0935": "Hydraulic Pressure Sensor Circuit High", 955 | "P0936": "Hydraulic Pressure Sensor Circuit Intermittent", 956 | "P0937": "Hydraulic Oil Temperature Sensor Circuit", 957 | "P0938": "Hydraulic Oil Temperature Sensor Range/Performance", 958 | "P0939": "Hydraulic Oil Temperature Sensor Circuit Low", 959 | "P0940": "Hydraulic Oil Temperature Sensor Circuit High", 960 | "P0941": "Hydraulic Oil Temperature Sensor Circuit Intermittent", 961 | "P0942": "Hydraulic Pressure Unit", 962 | "P0943": "Hydraulic Pressure Unit Cycling Period Too Short", 963 | "P0944": "Hydraulic Pressure Unit Loss of Pressure", 964 | "P0945": "Hydraulic Pump Relay Circuit/Open", 965 | "P0946": "Hydraulic Pump Relay Circuit Range/Performance", 966 | "P0947": "Hydraulic Pump Relay Circuit Low", 967 | "P0948": "Hydraulic Pump Relay Circuit High", 968 | "P0949": "Auto Shift Manual Adaptive Learning Not Complete", 969 | "P0950": "Auto Shift Manual Control Circuit", 970 | "P0951": "Auto Shift Manual Control Circuit Range/Performance", 971 | "P0952": "Auto Shift Manual Control Circuit Low", 972 | "P0953": "Auto Shift Manual Control Circuit High", 973 | "P0954": "Auto Shift Manual Control Circuit Intermittent", 974 | "P0955": "Auto Shift Manual Mode Circuit", 975 | "P0956": "Auto Shift Manual Mode Circuit Range/Performance", 976 | "P0957": "Auto Shift Manual Mode Circuit Low", 977 | "P0958": "Auto Shift Manual Mode Circuit High", 978 | "P0959": "Auto Shift Manual Mode Circuit Intermittent", 979 | "P0960": "Pressure Control Solenoid 'A' Control Circuit/Open", 980 | "P0961": "Pressure Control Solenoid 'A' Control Circuit Range/Performance", 981 | "P0962": "Pressure Control Solenoid 'A' Control Circuit Low", 982 | "P0963": "Pressure Control Solenoid 'A' Control Circuit High", 983 | "P0964": "Pressure Control Solenoid 'B' Control Circuit/Open", 984 | "P0965": "Pressure Control Solenoid 'B' Control Circuit Range/Performance", 985 | "P0966": "Pressure Control Solenoid 'B' Control Circuit Low", 986 | "P0967": "Pressure Control Solenoid 'B' Control Circuit High", 987 | "P0968": "Pressure Control Solenoid 'C' Control Circuit/Open", 988 | "P0969": "Pressure Control Solenoid 'C' Control Circuit Range/Performance", 989 | "P0970": "Pressure Control Solenoid 'C' Control Circuit Low", 990 | "P0971": "Pressure Control Solenoid 'C' Control Circuit High", 991 | "P0972": "Shift Solenoid 'A' Control Circuit Range/Performance", 992 | "P0973": "Shift Solenoid 'A' Control Circuit Low", 993 | "P0974": "Shift Solenoid 'A' Control Circuit High", 994 | "P0975": "Shift Solenoid 'B' Control Circuit Range/Performance", 995 | "P0976": "Shift Solenoid 'B' Control Circuit Low", 996 | "P0977": "Shift Solenoid 'B' Control Circuit High", 997 | "P0978": "Shift Solenoid 'C' Control Circuit Range/Performance", 998 | "P0979": "Shift Solenoid 'C' Control Circuit Low", 999 | "P0980": "Shift Solenoid 'C' Control Circuit High", 1000 | "P0981": "Shift Solenoid 'D' Control Circuit Range/Performance", 1001 | "P0982": "Shift Solenoid 'D' Control Circuit Low", 1002 | "P0983": "Shift Solenoid 'D' Control Circuit High", 1003 | "P0984": "Shift Solenoid 'E' Control Circuit Range/Performance", 1004 | "P0985": "Shift Solenoid 'E' Control Circuit Low", 1005 | "P0986": "Shift Solenoid 'E' Control Circuit High", 1006 | "P0987": "Transmission Fluid Pressure Sensor/Switch 'E' Circuit", 1007 | "P0988": "Transmission Fluid Pressure Sensor/Switch 'E' Circuit Range/Performance", 1008 | "P0989": "Transmission Fluid Pressure Sensor/Switch 'E' Circuit Low", 1009 | "P0990": "Transmission Fluid Pressure Sensor/Switch 'E' Circuit High", 1010 | "P0991": "Transmission Fluid Pressure Sensor/Switch 'E' Circuit Intermittent", 1011 | "P0992": "Transmission Fluid Pressure Sensor/Switch 'F' Circuit", 1012 | "P0993": "Transmission Fluid Pressure Sensor/Switch 'F' Circuit Range/Performance", 1013 | "P0994": "Transmission Fluid Pressure Sensor/Switch 'F' Circuit Low", 1014 | "P0995": "Transmission Fluid Pressure Sensor/Switch 'F' Circuit High", 1015 | "P0996": "Transmission Fluid Pressure Sensor/Switch 'F' Circuit Intermittent", 1016 | "P0997": "Shift Solenoid 'F' Control Circuit Range/Performance", 1017 | "P0998": "Shift Solenoid 'F' Control Circuit Low", 1018 | "P0999": "Shift Solenoid 'F' Control Circuit High", 1019 | "P0A00": "Motor Electronics Coolant Temperature Sensor Circuit", 1020 | "P0A01": "Motor Electronics Coolant Temperature Sensor Circuit Range/Performance", 1021 | "P0A02": "Motor Electronics Coolant Temperature Sensor Circuit Low", 1022 | "P0A03": "Motor Electronics Coolant Temperature Sensor Circuit High", 1023 | "P0A04": "Motor Electronics Coolant Temperature Sensor Circuit Intermittent", 1024 | "P0A05": "Motor Electronics Coolant Pump Control Circuit/Open", 1025 | "P0A06": "Motor Electronics Coolant Pump Control Circuit Low", 1026 | "P0A07": "Motor Electronics Coolant Pump Control Circuit High", 1027 | "P0A08": "DC/DC Converter Status Circuit", 1028 | "P0A09": "DC/DC Converter Status Circuit Low Input", 1029 | "P0A10": "DC/DC Converter Status Circuit High Input", 1030 | "P0A11": "DC/DC Converter Enable Circuit/Open", 1031 | "P0A12": "DC/DC Converter Enable Circuit Low", 1032 | "P0A13": "DC/DC Converter Enable Circuit High", 1033 | "P0A14": "Engine Mount Control Circuit/Open", 1034 | "P0A15": "Engine Mount Control Circuit Low", 1035 | "P0A16": "Engine Mount Control Circuit High", 1036 | "P0A17": "Motor Torque Sensor Circuit", 1037 | "P0A18": "Motor Torque Sensor Circuit Range/Performance", 1038 | "P0A19": "Motor Torque Sensor Circuit Low", 1039 | "P0A20": "Motor Torque Sensor Circuit High", 1040 | "P0A21": "Motor Torque Sensor Circuit Intermittent", 1041 | "P0A22": "Generator Torque Sensor Circuit", 1042 | "P0A23": "Generator Torque Sensor Circuit Range/Performance", 1043 | "P0A24": "Generator Torque Sensor Circuit Low", 1044 | "P0A25": "Generator Torque Sensor Circuit High", 1045 | "P0A26": "Generator Torque Sensor Circuit Intermittent", 1046 | "P0A27": "Battery Power Off Circuit", 1047 | "P0A28": "Battery Power Off Circuit Low", 1048 | "P0A29": "Battery Power Off Circuit High", 1049 | "P2000": "NOx Trap Efficiency Below Threshold", 1050 | "P2001": "NOx Trap Efficiency Below Threshold", 1051 | "P2002": "Particulate Trap Efficiency Below Threshold", 1052 | "P2003": "Particulate Trap Efficiency Below Threshold", 1053 | "P2004": "Intake Manifold Runner Control Stuck Open", 1054 | "P2005": "Intake Manifold Runner Control Stuck Open", 1055 | "P2006": "Intake Manifold Runner Control Stuck Closed", 1056 | "P2007": "Intake Manifold Runner Control Stuck Closed", 1057 | "P2008": "Intake Manifold Runner Control Circuit/Open", 1058 | "P2009": "Intake Manifold Runner Control Circuit Low", 1059 | "P2010": "Intake Manifold Runner Control Circuit High", 1060 | "P2011": "Intake Manifold Runner Control Circuit/Open", 1061 | "P2012": "Intake Manifold Runner Control Circuit Low", 1062 | "P2013": "Intake Manifold Runner Control Circuit High", 1063 | "P2014": "Intake Manifold Runner Position Sensor/Switch Circuit", 1064 | "P2015": "Intake Manifold Runner Position Sensor/Switch Circuit Range/Performance", 1065 | "P2016": "Intake Manifold Runner Position Sensor/Switch Circuit Low", 1066 | "P2017": "Intake Manifold Runner Position Sensor/Switch Circuit High", 1067 | "P2018": "Intake Manifold Runner Position Sensor/Switch Circuit Intermittent", 1068 | "P2019": "Intake Manifold Runner Position Sensor/Switch Circuit", 1069 | "P2020": "Intake Manifold Runner Position Sensor/Switch Circuit Range/Performance", 1070 | "P2021": "Intake Manifold Runner Position Sensor/Switch Circuit Low", 1071 | "P2022": "Intake Manifold Runner Position Sensor/Switch Circuit High", 1072 | "P2023": "Intake Manifold Runner Position Sensor/Switch Circuit Intermittent", 1073 | "P2024": "Evaporative Emissions (EVAP) Fuel Vapor Temperature Sensor Circuit", 1074 | "P2025": "Evaporative Emissions (EVAP) Fuel Vapor Temperature Sensor Performance", 1075 | "P2026": "Evaporative Emissions (EVAP) Fuel Vapor Temperature Sensor Circuit Low Voltage", 1076 | "P2027": "Evaporative Emissions (EVAP) Fuel Vapor Temperature Sensor Circuit High Voltage", 1077 | "P2028": "Evaporative Emissions (EVAP) Fuel Vapor Temperature Sensor Circuit Intermittent", 1078 | "P2029": "Fuel Fired Heater Disabled", 1079 | "P2030": "Fuel Fired Heater Performance", 1080 | "P2031": "Exhaust Gas Temperature Sensor Circuit", 1081 | "P2032": "Exhaust Gas Temperature Sensor Circuit Low", 1082 | "P2033": "Exhaust Gas Temperature Sensor Circuit High", 1083 | "P2034": "Exhaust Gas Temperature Sensor Circuit", 1084 | "P2035": "Exhaust Gas Temperature Sensor Circuit Low", 1085 | "P2036": "Exhaust Gas Temperature Sensor Circuit High", 1086 | "P2037": "Reductant Injection Air Pressure Sensor Circuit", 1087 | "P2038": "Reductant Injection Air Pressure Sensor Circuit Range/Performance", 1088 | "P2039": "Reductant Injection Air Pressure Sensor Circuit Low Input", 1089 | "P2040": "Reductant Injection Air Pressure Sensor Circuit High Input", 1090 | "P2041": "Reductant Injection Air Pressure Sensor Circuit Intermittent", 1091 | "P2042": "Reductant Temperature Sensor Circuit", 1092 | "P2043": "Reductant Temperature Sensor Circuit Range/Performance", 1093 | "P2044": "Reductant Temperature Sensor Circuit Low Input", 1094 | "P2045": "Reductant Temperature Sensor Circuit High Input", 1095 | "P2046": "Reductant Temperature Sensor Circuit Intermittent", 1096 | "P2047": "Reductant Injector Circuit/Open", 1097 | "P2048": "Reductant Injector Circuit Low", 1098 | "P2049": "Reductant Injector Circuit High", 1099 | "P2050": "Reductant Injector Circuit/Open", 1100 | "P2051": "Reductant Injector Circuit Low", 1101 | "P2052": "Reductant Injector Circuit High", 1102 | "P2053": "Reductant Injector Circuit/Open", 1103 | "P2054": "Reductant Injector Circuit Low", 1104 | "P2055": "Reductant Injector Circuit High", 1105 | "P2056": "Reductant Injector Circuit/Open", 1106 | "P2057": "Reductant Injector Circuit Low", 1107 | "P2058": "Reductant Injector Circuit High", 1108 | "P2059": "Reductant Injection Air Pump Control Circuit/Open", 1109 | "P2060": "Reductant Injection Air Pump Control Circuit Low", 1110 | "P2061": "Reductant Injection Air Pump Control Circuit High", 1111 | "P2062": "Reductant Supply Control Circuit/Open", 1112 | "P2063": "Reductant Supply Control Circuit Low", 1113 | "P2064": "Reductant Supply Control Circuit High", 1114 | "P2065": "Fuel Level Sensor 'B' Circuit", 1115 | "P2066": "Fuel Level Sensor 'B' Performance", 1116 | "P2067": "Fuel Level Sensor 'B' Circuit Low", 1117 | "P2068": "Fuel Level Sensor 'B' Circuit High", 1118 | "P2069": "Fuel Level Sensor 'B' Circuit Intermittent", 1119 | "P2070": "Intake Manifold Tuning (IMT) Valve Stuck Open", 1120 | "P2071": "Intake Manifold Tuning (IMT) Valve Stuck Closed", 1121 | "P2075": "Intake Manifold Tuning (IMT) Valve Position Sensor/Switch Circuit", 1122 | "P2076": "Intake Manifold Tuning (IMT) Valve Position Sensor/Switch Circuit Range/Performance", 1123 | "P2077": "Intake Manifold Tuning (IMT) Valve Position Sensor/Switch Circuit Low", 1124 | "P2078": "Intake Manifold Tuning (IMT) Valve Position Sensor/Switch Circuit High", 1125 | "P2079": "Intake Manifold Tuning (IMT) Valve Position Sensor/Switch Circuit Intermittent", 1126 | "P2080": "Exhaust Gas Temperature Sensor Circuit Range/Performance", 1127 | "P2081": "Exhaust Gas Temperature Sensor Circuit Intermittent", 1128 | "P2082": "Exhaust Gas Temperature Sensor Circuit Range/Performance", 1129 | "P2083": "Exhaust Gas Temperature Sensor Circuit Intermittent", 1130 | "P2084": "Exhaust Gas Temperature Sensor Circuit Range/Performance", 1131 | "P2085": "Exhaust Gas Temperature Sensor Circuit Intermittent", 1132 | "P2086": "Exhaust Gas Temperature Sensor Circuit Range/Performance", 1133 | "P2087": "Exhaust Gas Temperature Sensor Circuit Intermittent", 1134 | "P2088": "'A' Camshaft Position Actuator Control Circuit Low", 1135 | "P2089": "'A' Camshaft Position Actuator Control Circuit High", 1136 | "P2090": "'B' Camshaft Position Actuator Control Circuit Low", 1137 | "P2091": "'B' Camshaft Position Actuator Control Circuit High", 1138 | "P2092": "'A' Camshaft Position Actuator Control Circuit Low", 1139 | "P2093": "'A' Camshaft Position Actuator Control Circuit High", 1140 | "P2094": "'B' Camshaft Position Actuator Control Circuit Low", 1141 | "P2095": "'B' Camshaft Position Actuator Control Circuit High", 1142 | "P2096": "Post Catalyst Fuel Trim System Too Lean", 1143 | "P2097": "Post Catalyst Fuel Trim System Too Rich", 1144 | "P2098": "Post Catalyst Fuel Trim System Too Lean", 1145 | "P2099": "Post Catalyst Fuel Trim System Too Rich", 1146 | "P2100": "Throttle Actuator Control Motor Circuit/Open", 1147 | "P2101": "Throttle Actuator Control Motor Circuit Range/Performance", 1148 | "P2102": "Throttle Actuator Control Motor Circuit Low", 1149 | "P2103": "Throttle Actuator Control Motor Circuit High", 1150 | "P2104": "Throttle Actuator Control System - Forced Idle", 1151 | "P2105": "Throttle Actuator Control System - Forced Engine Shutdown", 1152 | "P2106": "Throttle Actuator Control System - Forced Limited Power", 1153 | "P2107": "Throttle Actuator Control Module Processor", 1154 | "P2108": "Throttle Actuator Control Module Performance", 1155 | "P2109": "Throttle/Pedal Position Sensor 'A' Minimum Stop Performance", 1156 | "P2110": "Throttle Actuator Control System - Forced Limited RPM", 1157 | "P2111": "Throttle Actuator Control System - Stuck Open", 1158 | "P2112": "Throttle Actuator Control System - Stuck Closed", 1159 | "P2113": "Throttle/Pedal Position Sensor 'B' Minimum Stop Performance", 1160 | "P2114": "Throttle/Pedal Position Sensor 'C' Minimum Stop Performance", 1161 | "P2115": "Throttle/Pedal Position Sensor 'D' Minimum Stop Performance", 1162 | "P2116": "Throttle/Pedal Position Sensor 'E' Minimum Stop Performance", 1163 | "P2117": "Throttle/Pedal Position Sensor 'F' Minimum Stop Performance", 1164 | "P2118": "Throttle Actuator Control Motor Current Range/Performance", 1165 | "P2119": "Throttle Actuator Control Throttle Body Range/Performance", 1166 | "P2120": "Throttle/Pedal Position Sensor/Switch 'D' Circuit", 1167 | "P2121": "Throttle/Pedal Position Sensor/Switch 'D' Circuit Range/Performance", 1168 | "P2122": "Throttle/Pedal Position Sensor/Switch 'D' Circuit Low Input", 1169 | "P2123": "Throttle/Pedal Position Sensor/Switch 'D' Circuit High Input", 1170 | "P2124": "Throttle/Pedal Position Sensor/Switch 'D' Circuit Intermittent", 1171 | "P2125": "Throttle/Pedal Position Sensor/Switch 'E' Circuit", 1172 | "P2126": "Throttle/Pedal Position Sensor/Switch 'E' Circuit Range/Performance", 1173 | "P2127": "Throttle/Pedal Position Sensor/Switch 'E' Circuit Low Input", 1174 | "P2128": "Throttle/Pedal Position Sensor/Switch 'E' Circuit High Input", 1175 | "P2129": "Throttle/Pedal Position Sensor/Switch 'E' Circuit Intermittent", 1176 | "P2130": "Throttle/Pedal Position Sensor/Switch 'F' Circuit", 1177 | "P2131": "Throttle/Pedal Position Sensor/Switch 'F' Circuit Range Performance", 1178 | "P2132": "Throttle/Pedal Position Sensor/Switch 'F' Circuit Low Input", 1179 | "P2133": "Throttle/Pedal Position Sensor/Switch 'F' Circuit High Input", 1180 | "P2134": "Throttle/Pedal Position Sensor/Switch 'F' Circuit Intermittent", 1181 | "P2135": "Throttle/Pedal Position Sensor/Switch 'A' / 'B' Voltage Correlation", 1182 | "P2136": "Throttle/Pedal Position Sensor/Switch 'A' / 'C' Voltage Correlation", 1183 | "P2137": "Throttle/Pedal Position Sensor/Switch 'B' / 'C' Voltage Correlation", 1184 | "P2138": "Throttle/Pedal Position Sensor/Switch 'D' / 'E' Voltage Correlation", 1185 | "P2139": "Throttle/Pedal Position Sensor/Switch 'D' / 'F' Voltage Correlation", 1186 | "P2140": "Throttle/Pedal Position Sensor/Switch 'E' / 'F' Voltage Correlation", 1187 | "P2141": "Exhaust Gas Recirculation Throttle Control Circuit Low", 1188 | "P2142": "Exhaust Gas Recirculation Throttle Control Circuit High", 1189 | "P2143": "Exhaust Gas Recirculation Vent Control Circuit/Open", 1190 | "P2144": "Exhaust Gas Recirculation Vent Control Circuit Low", 1191 | "P2145": "Exhaust Gas Recirculation Vent Control Circuit High", 1192 | "P2146": "Fuel Injector Group 'A' Supply Voltage Circuit/Open", 1193 | "P2147": "Fuel Injector Group 'A' Supply Voltage Circuit Low", 1194 | "P2148": "Fuel Injector Group 'A' Supply Voltage Circuit High", 1195 | "P2149": "Fuel Injector Group 'B' Supply Voltage Circuit/Open", 1196 | "P2150": "Fuel Injector Group 'B' Supply Voltage Circuit Low", 1197 | "P2151": "Fuel Injector Group 'B' Supply Voltage Circuit High", 1198 | "P2152": "Fuel Injector Group 'C' Supply Voltage Circuit/Open", 1199 | "P2153": "Fuel Injector Group 'C' Supply Voltage Circuit Low", 1200 | "P2154": "Fuel Injector Group 'C' Supply Voltage Circuit High", 1201 | "P2155": "Fuel Injector Group 'D' Supply Voltage Circuit/Open", 1202 | "P2156": "Fuel Injector Group 'D' Supply Voltage Circuit Low", 1203 | "P2157": "Fuel Injector Group 'D' Supply Voltage Circuit High", 1204 | "P2158": "Vehicle Speed Sensor 'B'", 1205 | "P2159": "Vehicle Speed Sensor 'B' Range/Performance", 1206 | "P2160": "Vehicle Speed Sensor 'B' Circuit Low", 1207 | "P2161": "Vehicle Speed Sensor 'B' Intermittent/Erratic", 1208 | "P2162": "Vehicle Speed Sensor 'A' / 'B' Correlation", 1209 | "P2163": "Throttle/Pedal Position Sensor 'A' Maximum Stop Performance", 1210 | "P2164": "Throttle/Pedal Position Sensor 'B' Maximum Stop Performance", 1211 | "P2165": "Throttle/Pedal Position Sensor 'C' Maximum Stop Performance", 1212 | "P2166": "Throttle/Pedal Position Sensor 'D' Maximum Stop Performance", 1213 | "P2167": "Throttle/Pedal Position Sensor 'E' Maximum Stop Performance", 1214 | "P2168": "Throttle/Pedal Position Sensor 'F' Maximum Stop Performance", 1215 | "P2169": "Exhaust Pressure Regulator Vent Solenoid Control Circuit/Open", 1216 | "P2170": "Exhaust Pressure Regulator Vent Solenoid Control Circuit Low", 1217 | "P2171": "Exhaust Pressure Regulator Vent Solenoid Control Circuit High", 1218 | "P2172": "Throttle Actuator Control System - Sudden High Airflow Detected", 1219 | "P2173": "Throttle Actuator Control System - High Airflow Detected", 1220 | "P2174": "Throttle Actuator Control System - Sudden Low Airflow Detected", 1221 | "P2175": "Throttle Actuator Control System - Low Airflow Detected", 1222 | "P2176": "Throttle Actuator Control System - Idle Position Not Learned", 1223 | "P2177": "System Too Lean Off Idle", 1224 | "P2178": "System Too Rich Off Idle", 1225 | "P2179": "System Too Lean Off Idle", 1226 | "P2180": "System Too Rich Off Idle", 1227 | "P2181": "Cooling System Performance", 1228 | "P2182": "Engine Coolant Temperature Sensor 2 Circuit", 1229 | "P2183": "Engine Coolant Temperature Sensor 2 Circuit Range/Performance", 1230 | "P2184": "Engine Coolant Temperature Sensor 2 Circuit Low", 1231 | "P2185": "Engine Coolant Temperature Sensor 2 Circuit High", 1232 | "P2186": "Engine Coolant Temperature Sensor 2 Circuit Intermittent/Erratic", 1233 | "P2187": "System Too Lean at Idle", 1234 | "P2188": "System Too Rich at Idle", 1235 | "P2189": "System Too Lean at Idle", 1236 | "P2190": "System Too Rich at Idle", 1237 | "P2191": "System Too Lean at Higher Load", 1238 | "P2192": "System Too Rich at Higher Load", 1239 | "P2193": "System Too Lean at Higher Load", 1240 | "P2194": "System Too Rich at Higher Load", 1241 | "P2195": "O2 Sensor Signal Stuck Lean", 1242 | "P2196": "O2 Sensor Signal Stuck Rich", 1243 | "P2197": "O2 Sensor Signal Stuck Lean", 1244 | "P2198": "O2 Sensor Signal Stuck Rich", 1245 | "P2199": "Intake Air Temperature Sensor 1 / 2 Correlation", 1246 | "P2200": "NOx Sensor Circuit", 1247 | "P2201": "NOx Sensor Circuit Range/Performance", 1248 | "P2202": "NOx Sensor Circuit Low Input", 1249 | "P2203": "NOx Sensor Circuit High Input", 1250 | "P2204": "NOx Sensor Circuit Intermittent Input", 1251 | "P2205": "NOx Sensor Heater Control Circuit/Open", 1252 | "P2206": "NOx Sensor Heater Control Circuit Low", 1253 | "P2207": "NOx Sensor Heater Control Circuit High", 1254 | "P2208": "NOx Sensor Heater Sense Circuit", 1255 | "P2209": "NOx Sensor Heater Sense Circuit Range/Performance", 1256 | "P2210": "NOx Sensor Heater Sense Circuit Low Input", 1257 | "P2211": "NOx Sensor Heater Sense Circuit High Input", 1258 | "P2212": "NOx Sensor Heater Sense Circuit Intermittent", 1259 | "P2213": "NOx Sensor Circuit", 1260 | "P2214": "NOx Sensor Circuit Range/Performance", 1261 | "P2215": "NOx Sensor Circuit Low Input", 1262 | "P2216": "NOx Sensor Circuit High Input", 1263 | "P2217": "NOx Sensor Circuit Intermittent Input", 1264 | "P2218": "NOx Sensor Heater Control Circuit/Open", 1265 | "P2219": "NOx Sensor Heater Control Circuit Low", 1266 | "P2220": "NOx Sensor Heater Control Circuit High", 1267 | "P2221": "NOx Sensor Heater Sense Circuit", 1268 | "P2222": "NOx Sensor Heater Sense Circuit Range/Performance", 1269 | "P2223": "NOx Sensor Heater Sense Circuit Low", 1270 | "P2224": "NOx Sensor Heater Sense Circuit High", 1271 | "P2225": "NOx Sensor Heater Sense Circuit Intermittent", 1272 | "P2226": "Barometric Pressure Circuit", 1273 | "P2227": "Barometric Pressure Circuit Range/Performance", 1274 | "P2228": "Barometric Pressure Circuit Low", 1275 | "P2229": "Barometric Pressure Circuit High", 1276 | "P2230": "Barometric Pressure Circuit Intermittent", 1277 | "P2231": "O2 Sensor Signal Circuit Shorted to Heater Circuit", 1278 | "P2232": "O2 Sensor Signal Circuit Shorted to Heater Circuit", 1279 | "P2233": "O2 Sensor Signal Circuit Shorted to Heater Circuit", 1280 | "P2234": "O2 Sensor Signal Circuit Shorted to Heater Circuit", 1281 | "P2235": "O2 Sensor Signal Circuit Shorted to Heater Circuit", 1282 | "P2236": "O2 Sensor Signal Circuit Shorted to Heater Circuit", 1283 | "P2237": "O2 Sensor Positive Current Control Circuit/Open", 1284 | "P2238": "O2 Sensor Positive Current Control Circuit Low", 1285 | "P2239": "O2 Sensor Positive Current Control Circuit High", 1286 | "P2240": "O2 Sensor Positive Current Control Circuit/Open", 1287 | "P2241": "O2 Sensor Positive Current Control Circuit Low", 1288 | "P2242": "O2 Sensor Positive Current Control Circuit High", 1289 | "P2243": "O2 Sensor Reference Voltage Circuit/Open", 1290 | "P2244": "O2 Sensor Reference Voltage Performance", 1291 | "P2245": "O2 Sensor Reference Voltage Circuit Low", 1292 | "P2246": "O2 Sensor Reference Voltage Circuit High", 1293 | "P2247": "O2 Sensor Reference Voltage Circuit/Open", 1294 | "P2248": "O2 Sensor Reference Voltage Performance", 1295 | "P2249": "O2 Sensor Reference Voltage Circuit Low", 1296 | "P2250": "O2 Sensor Reference Voltage Circuit High", 1297 | "P2251": "O2 Sensor Negative Current Control Circuit/Open", 1298 | "P2252": "O2 Sensor Negative Current Control Circuit Low", 1299 | "P2253": "O2 Sensor Negative Current Control Circuit High", 1300 | "P2254": "O2 Sensor Negative Current Control Circuit/Open", 1301 | "P2255": "O2 Sensor Negative Current Control Circuit Low", 1302 | "P2256": "O2 Sensor Negative Current Control Circuit High", 1303 | "P2257": "Secondary Air Injection System Control 'A' Circuit Low", 1304 | "P2258": "Secondary Air Injection System Control 'A' Circuit High", 1305 | "P2259": "Secondary Air Injection System Control 'B' Circuit Low", 1306 | "P2260": "Secondary Air Injection System Control 'B' Circuit High", 1307 | "P2261": "Turbo/Super Charger Bypass Valve - Mechanical", 1308 | "P2262": "Turbo Boost Pressure Not Detected - Mechanical", 1309 | "P2263": "Turbo/Super Charger Boost System Performance", 1310 | "P2264": "Water in Fuel Sensor Circuit", 1311 | "P2265": "Water in Fuel Sensor Circuit Range/Performance", 1312 | "P2266": "Water in Fuel Sensor Circuit Low", 1313 | "P2267": "Water in Fuel Sensor Circuit High", 1314 | "P2268": "Water in Fuel Sensor Circuit Intermittent", 1315 | "P2269": "Water in Fuel Condition", 1316 | "P2270": "O2 Sensor Signal Stuck Lean", 1317 | "P2271": "O2 Sensor Signal Stuck Rich", 1318 | "P2272": "O2 Sensor Signal Stuck Lean", 1319 | "P2273": "O2 Sensor Signal Stuck Rich", 1320 | "P2274": "O2 Sensor Signal Stuck Lean", 1321 | "P2275": "O2 Sensor Signal Stuck Rich", 1322 | "P2276": "O2 Sensor Signal Stuck Lean", 1323 | "P2277": "O2 Sensor Signal Stuck Rich", 1324 | "P2278": "O2 Sensor Signals Swapped Bank 1 Sensor 3 / Bank 2 Sensor 3", 1325 | "P2279": "Intake Air System Leak", 1326 | "P2280": "Air Flow Restriction / Air Leak Between Air Filter and MAF", 1327 | "P2281": "Air Leak Between MAF and Throttle Body", 1328 | "P2282": "Air Leak Between Throttle Body and Intake Valves", 1329 | "P2283": "Injector Control Pressure Sensor Circuit", 1330 | "P2284": "Injector Control Pressure Sensor Circuit Range/Performance", 1331 | "P2285": "Injector Control Pressure Sensor Circuit Low", 1332 | "P2286": "Injector Control Pressure Sensor Circuit High", 1333 | "P2287": "Injector Control Pressure Sensor Circuit Intermittent", 1334 | "P2288": "Injector Control Pressure Too High", 1335 | "P2289": "Injector Control Pressure Too High - Engine Off", 1336 | "P2290": "Injector Control Pressure Too Low", 1337 | "P2291": "Injector Control Pressure Too Low - Engine Cranking", 1338 | "P2292": "Injector Control Pressure Erratic", 1339 | "P2293": "Fuel Pressure Regulator 2 Performance", 1340 | "P2294": "Fuel Pressure Regulator 2 Control Circuit", 1341 | "P2295": "Fuel Pressure Regulator 2 Control Circuit Low", 1342 | "P2296": "Fuel Pressure Regulator 2 Control Circuit High", 1343 | "P2297": "O2 Sensor Out of Range During Deceleration", 1344 | "P2298": "O2 Sensor Out of Range During Deceleration", 1345 | "P2299": "Brake Pedal Position / Accelerator Pedal Position Incompatible", 1346 | "P2300": "Ignition Coil 'A' Primary Control Circuit Low", 1347 | "P2301": "Ignition Coil 'A' Primary Control Circuit High", 1348 | "P2302": "Ignition Coil 'A' Secondary Circuit", 1349 | "P2303": "Ignition Coil 'B' Primary Control Circuit Low", 1350 | "P2304": "Ignition Coil 'B' Primary Control Circuit High", 1351 | "P2305": "Ignition Coil 'B' Secondary Circuit", 1352 | "P2306": "Ignition Coil 'C' Primary Control Circuit Low", 1353 | "P2307": "Ignition Coil 'C' Primary Control Circuit High", 1354 | "P2308": "Ignition Coil 'C' Secondary Circuit", 1355 | "P2309": "Ignition Coil 'D' Primary Control Circuit Low", 1356 | "P2310": "Ignition Coil 'D' Primary Control Circuit High", 1357 | "P2311": "Ignition Coil 'D' Secondary Circuit", 1358 | "P2312": "Ignition Coil 'E' Primary Control Circuit Low", 1359 | "P2313": "Ignition Coil 'E' Primary Control Circuit High", 1360 | "P2314": "Ignition Coil 'E' Secondary Circuit", 1361 | "P2315": "Ignition Coil 'F' Primary Control Circuit Low", 1362 | "P2316": "Ignition Coil 'F' Primary Control Circuit High", 1363 | "P2317": "Ignition Coil 'F' Secondary Circuit", 1364 | "P2318": "Ignition Coil 'G' Primary Control Circuit Low", 1365 | "P2319": "Ignition Coil 'G' Primary Control Circuit High", 1366 | "P2320": "Ignition Coil 'G' Secondary Circuit", 1367 | "P2321": "Ignition Coil 'H' Primary Control Circuit Low", 1368 | "P2322": "Ignition Coil 'H' Primary Control Circuit High", 1369 | "P2323": "Ignition Coil 'H' Secondary Circuit", 1370 | "P2324": "Ignition Coil 'I' Primary Control Circuit Low", 1371 | "P2325": "Ignition Coil 'I' Primary Control Circuit High", 1372 | "P2326": "Ignition Coil 'I' Secondary Circuit", 1373 | "P2327": "Ignition Coil 'J' Primary Control Circuit Low", 1374 | "P2328": "Ignition Coil 'J' Primary Control Circuit High", 1375 | "P2329": "Ignition Coil 'J' Secondary Circuit", 1376 | "P2330": "Ignition Coil 'K' Primary Control Circuit Low", 1377 | "P2331": "Ignition Coil 'K' Primary Control Circuit High", 1378 | "P2332": "Ignition Coil 'K' Secondary Circuit", 1379 | "P2333": "Ignition Coil 'L' Primary Control Circuit Low", 1380 | "P2334": "Ignition Coil 'L' Primary Control Circuit High", 1381 | "P2335": "Ignition Coil 'L' Secondary Circuit", 1382 | "P2336": "Cylinder #1 Above Knock Threshold", 1383 | "P2337": "Cylinder #2 Above Knock Threshold", 1384 | "P2338": "Cylinder #3 Above Knock Threshold", 1385 | "P2339": "Cylinder #4 Above Knock Threshold", 1386 | "P2340": "Cylinder #5 Above Knock Threshold", 1387 | "P2341": "Cylinder #6 Above Knock Threshold", 1388 | "P2342": "Cylinder #7 Above Knock Threshold", 1389 | "P2343": "Cylinder #8 Above Knock Threshold", 1390 | "P2344": "Cylinder #9 Above Knock Threshold", 1391 | "P2345": "Cylinder #10 Above Knock Threshold", 1392 | "P2346": "Cylinder #11 Above Knock Threshold", 1393 | "P2347": "Cylinder #12 Above Knock Threshold", 1394 | "P2400": "Evaporative Emission System Leak Detection Pump Control Circuit/Open", 1395 | "P2401": "Evaporative Emission System Leak Detection Pump Control Circuit Low", 1396 | "P2402": "Evaporative Emission System Leak Detection Pump Control Circuit High", 1397 | "P2403": "Evaporative Emission System Leak Detection Pump Sense Circuit/Open", 1398 | "P2404": "Evaporative Emission System Leak Detection Pump Sense Circuit Range/Performance", 1399 | "P2405": "Evaporative Emission System Leak Detection Pump Sense Circuit Low", 1400 | "P2406": "Evaporative Emission System Leak Detection Pump Sense Circuit High", 1401 | "P2407": "Evaporative Emission System Leak Detection Pump Sense Circuit Intermittent/Erratic", 1402 | "P2408": "Fuel Cap Sensor/Switch Circuit", 1403 | "P2409": "Fuel Cap Sensor/Switch Circuit Range/Performance", 1404 | "P2410": "Fuel Cap Sensor/Switch Circuit Low", 1405 | "P2411": "Fuel Cap Sensor/Switch Circuit High", 1406 | "P2412": "Fuel Cap Sensor/Switch Circuit Intermittent/Erratic", 1407 | "P2413": "Exhaust Gas Recirculation System Performance", 1408 | "P2414": "O2 Sensor Exhaust Sample Error", 1409 | "P2415": "O2 Sensor Exhaust Sample Error", 1410 | "P2416": "O2 Sensor Signals Swapped Bank 1 Sensor 2 / Bank 1 Sensor 3", 1411 | "P2417": "O2 Sensor Signals Swapped Bank 2 Sensor 2 / Bank 2 Sensor 3", 1412 | "P2418": "Evaporative Emission System Switching Valve Control Circuit / Open", 1413 | "P2419": "Evaporative Emission System Switching Valve Control Circuit Low", 1414 | "P2420": "Evaporative Emission System Switching Valve Control Circuit High", 1415 | "P2421": "Evaporative Emission System Vent Valve Stuck Open", 1416 | "P2422": "Evaporative Emission System Vent Valve Stuck Closed", 1417 | "P2423": "HC Adsorption Catalyst Efficiency Below Threshold", 1418 | "P2424": "HC Adsorption Catalyst Efficiency Below Threshold", 1419 | "P2425": "Exhaust Gas Recirculation Cooling Valve Control Circuit/Open", 1420 | "P2426": "Exhaust Gas Recirculation Cooling Valve Control Circuit Low", 1421 | "P2427": "Exhaust Gas Recirculation Cooling Valve Control Circuit High", 1422 | "P2428": "Exhaust Gas Temperature Too High", 1423 | "P2429": "Exhaust Gas Temperature Too High", 1424 | "P2430": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit", 1425 | "P2431": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit Range/Performance", 1426 | "P2432": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit Low", 1427 | "P2433": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit High", 1428 | "P2434": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit Intermittent/Erratic", 1429 | "P2435": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit", 1430 | "P2436": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit Range/Performance", 1431 | "P2437": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit Low", 1432 | "P2438": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit High", 1433 | "P2439": "Secondary Air Injection System Air Flow/Pressure Sensor Circuit Intermittent/Erratic", 1434 | "P2440": "Secondary Air Injection System Switching Valve Stuck Open", 1435 | "P2441": "Secondary Air Injection System Switching Valve Stuck Closed", 1436 | "P2442": "Secondary Air Injection System Switching Valve Stuck Open", 1437 | "P2443": "Secondary Air Injection System Switching Valve Stuck Closed", 1438 | "P2444": "Secondary Air Injection System Pump Stuck On", 1439 | "P2445": "Secondary Air Injection System Pump Stuck Off", 1440 | "P2446": "Secondary Air Injection System Pump Stuck On", 1441 | "P2447": "Secondary Air Injection System Pump Stuck Off", 1442 | "P2500": "Generator Lamp/L-Terminal Circuit Low", 1443 | "P2501": "Generator Lamp/L-Terminal Circuit High", 1444 | "P2502": "Charging System Voltage", 1445 | "P2503": "Charging System Voltage Low", 1446 | "P2504": "Charging System Voltage High", 1447 | "P2505": "ECM/PCM Power Input Signal", 1448 | "P2506": "ECM/PCM Power Input Signal Range/Performance", 1449 | "P2507": "ECM/PCM Power Input Signal Low", 1450 | "P2508": "ECM/PCM Power Input Signal High", 1451 | "P2509": "ECM/PCM Power Input Signal Intermittent", 1452 | "P2510": "ECM/PCM Power Relay Sense Circuit Range/Performance", 1453 | "P2511": "ECM/PCM Power Relay Sense Circuit Intermittent", 1454 | "P2512": "Event Data Recorder Request Circuit/ Open", 1455 | "P2513": "Event Data Recorder Request Circuit Low", 1456 | "P2514": "Event Data Recorder Request Circuit High", 1457 | "P2515": "A/C Refrigerant Pressure Sensor 'B' Circuit", 1458 | "P2516": "A/C Refrigerant Pressure Sensor 'B' Circuit Range/Performance", 1459 | "P2517": "A/C Refrigerant Pressure Sensor 'B' Circuit Low", 1460 | "P2518": "A/C Refrigerant Pressure Sensor 'B' Circuit High", 1461 | "P2519": "A/C Request 'A' Circuit", 1462 | "P2520": "A/C Request 'A' Circuit Low", 1463 | "P2521": "A/C Request 'A' Circuit High", 1464 | "P2522": "A/C Request 'B' Circuit", 1465 | "P2523": "A/C Request 'B' Circuit Low", 1466 | "P2524": "A/C Request 'B' Circuit High", 1467 | "P2525": "Vacuum Reservoir Pressure Sensor Circuit", 1468 | "P2526": "Vacuum Reservoir Pressure Sensor Circuit Range/Performance", 1469 | "P2527": "Vacuum Reservoir Pressure Sensor Circuit Low", 1470 | "P2528": "Vacuum Reservoir Pressure Sensor Circuit High", 1471 | "P2529": "Vacuum Reservoir Pressure Sensor Circuit Intermittent", 1472 | "P2530": "Ignition Switch Run Position Circuit", 1473 | "P2531": "Ignition Switch Run Position Circuit Low", 1474 | "P2532": "Ignition Switch Run Position Circuit High", 1475 | "P2533": "Ignition Switch Run/Start Position Circuit", 1476 | "P2534": "Ignition Switch Run/Start Position Circuit Low", 1477 | "P2535": "Ignition Switch Run/Start Position Circuit High", 1478 | "P2536": "Ignition Switch Accessory Position Circuit", 1479 | "P2537": "Ignition Switch Accessory Position Circuit Low", 1480 | "P2538": "Ignition Switch Accessory Position Circuit High", 1481 | "P2539": "Low Pressure Fuel System Sensor Circuit", 1482 | "P2540": "Low Pressure Fuel System Sensor Circuit Range/Performance", 1483 | "P2541": "Low Pressure Fuel System Sensor Circuit Low", 1484 | "P2542": "Low Pressure Fuel System Sensor Circuit High", 1485 | "P2543": "Low Pressure Fuel System Sensor Circuit Intermittent", 1486 | "P2544": "Torque Management Request Input Signal 'A'", 1487 | "P2545": "Torque Management Request Input Signal 'A' Range/Performance", 1488 | "P2546": "Torque Management Request Input Signal 'A' Low", 1489 | "P2547": "Torque Management Request Input Signal 'A' High", 1490 | "P2548": "Torque Management Request Input Signal 'B'", 1491 | "P2549": "Torque Management Request Input Signal 'B' Range/Performance", 1492 | "P2550": "Torque Management Request Input Signal 'B' Low", 1493 | "P2551": "Torque Management Request Input Signal 'B' High", 1494 | "P2552": "Throttle/Fuel Inhibit Circuit", 1495 | "P2553": "Throttle/Fuel Inhibit Circuit Range/Performance", 1496 | "P2554": "Throttle/Fuel Inhibit Circuit Low", 1497 | "P2555": "Throttle/Fuel Inhibit Circuit High", 1498 | "P2556": "Engine Coolant Level Sensor/Switch Circuit", 1499 | "P2557": "Engine Coolant Level Sensor/Switch Circuit Range/Performance", 1500 | "P2558": "Engine Coolant Level Sensor/Switch Circuit Low", 1501 | "P2559": "Engine Coolant Level Sensor/Switch Circuit High", 1502 | "P2560": "Engine Coolant Level Low", 1503 | "P2561": "A/C Control Module Requested MIL Illumination", 1504 | "P2562": "Turbocharger Boost Control Position Sensor Circuit", 1505 | "P2563": "Turbocharger Boost Control Position Sensor Circuit Range/Performance", 1506 | "P2564": "Turbocharger Boost Control Position Sensor Circuit Low", 1507 | "P2565": "Turbocharger Boost Control Position Sensor Circuit High", 1508 | "P2566": "Turbocharger Boost Control Position Sensor Circuit Intermittent", 1509 | "P2567": "Direct Ozone Reduction Catalyst Temperature Sensor Circuit", 1510 | "P2568": "Direct Ozone Reduction Catalyst Temperature Sensor Circuit Range/Performance", 1511 | "P2569": "Direct Ozone Reduction Catalyst Temperature Sensor Circuit Low", 1512 | "P2570": "Direct Ozone Reduction Catalyst Temperature Sensor Circuit High", 1513 | "P2571": "Direct Ozone Reduction Catalyst Temperature Sensor Circuit Intermittent/Erratic", 1514 | "P2572": "Direct Ozone Reduction Catalyst Deterioration Sensor Circuit", 1515 | "P2573": "Direct Ozone Reduction Catalyst Deterioration Sensor Circuit Range/Performance", 1516 | "P2574": "Direct Ozone Reduction Catalyst Deterioration Sensor Circuit Low", 1517 | "P2575": "Direct Ozone Reduction Catalyst Deterioration Sensor Circuit High", 1518 | "P2576": "Direct Ozone Reduction Catalyst Deterioration Sensor Circuit Intermittent/Erratic", 1519 | "P2577": "Direct Ozone Reduction Catalyst Efficiency Below Threshold", 1520 | "P2600": "Coolant Pump Control Circuit/Open", 1521 | "P2601": "Coolant Pump Control Circuit Range/Performance", 1522 | "P2602": "Coolant Pump Control Circuit Low", 1523 | "P2603": "Coolant Pump Control Circuit High", 1524 | "P2604": "Intake Air Heater 'A' Circuit Range/Performance", 1525 | "P2605": "Intake Air Heater 'A' Circuit/Open", 1526 | "P2606": "Intake Air Heater 'B' Circuit Range/Performance", 1527 | "P2607": "Intake Air Heater 'B' Circuit Low", 1528 | "P2608": "Intake Air Heater 'B' Circuit High", 1529 | "P2609": "Intake Air Heater System Performance", 1530 | "P2610": "ECM/PCM Internal Engine Off Timer Performance", 1531 | "P2611": "A/C Refrigerant Distribution Valve Control Circuit/Open", 1532 | "P2612": "A/C Refrigerant Distribution Valve Control Circuit Low", 1533 | "P2613": "A/C Refrigerant Distribution Valve Control Circuit High", 1534 | "P2614": "Camshaft Position Signal Output Circuit/Open", 1535 | "P2615": "Camshaft Position Signal Output Circuit Low", 1536 | "P2616": "Camshaft Position Signal Output Circuit High", 1537 | "P2617": "Crankshaft Position Signal Output Circuit/Open", 1538 | "P2618": "Crankshaft Position Signal Output Circuit Low", 1539 | "P2619": "Crankshaft Position Signal Output Circuit High", 1540 | "P2620": "Throttle Position Output Circuit/Open", 1541 | "P2621": "Throttle Position Output Circuit Low", 1542 | "P2622": "Throttle Position Output Circuit High", 1543 | "P2623": "Injector Control Pressure Regulator Circuit/Open", 1544 | "P2624": "Injector Control Pressure Regulator Circuit Low", 1545 | "P2625": "Injector Control Pressure Regulator Circuit High", 1546 | "P2626": "O2 Sensor Pumping Current Trim Circuit/Open", 1547 | "P2627": "O2 Sensor Pumping Current Trim Circuit Low", 1548 | "P2628": "O2 Sensor Pumping Current Trim Circuit High", 1549 | "P2629": "O2 Sensor Pumping Current Trim Circuit/Open", 1550 | "P2630": "O2 Sensor Pumping Current Trim Circuit Low", 1551 | "P2631": "O2 Sensor Pumping Current Trim Circuit High", 1552 | "P2632": "Fuel Pump 'B' Control Circuit /Open", 1553 | "P2633": "Fuel Pump 'B' Control Circuit Low", 1554 | "P2634": "Fuel Pump 'B' Control Circuit High", 1555 | "P2635": "Fuel Pump 'A' Low Flow / Performance", 1556 | "P2636": "Fuel Pump 'B' Low Flow / Performance", 1557 | "P2637": "Torque Management Feedback Signal 'A'", 1558 | "P2638": "Torque Management Feedback Signal 'A' Range/Performance", 1559 | "P2639": "Torque Management Feedback Signal 'A' Low", 1560 | "P2640": "Torque Management Feedback Signal 'A' High", 1561 | "P2641": "Torque Management Feedback Signal 'B'", 1562 | "P2642": "Torque Management Feedback Signal 'B' Range/Performance", 1563 | "P2643": "Torque Management Feedback Signal 'B' Low", 1564 | "P2644": "Torque Management Feedback Signal 'B' High", 1565 | "P2645": "'A' Rocker Arm Actuator Control Circuit/Open", 1566 | "P2646": "'A' Rocker Arm Actuator System Performance or Stuck Off", 1567 | "P2647": "'A' Rocker Arm Actuator System Stuck On", 1568 | "P2648": "'A' Rocker Arm Actuator Control Circuit Low", 1569 | "P2649": "'A' Rocker Arm Actuator Control Circuit High", 1570 | "P2650": "'B' Rocker Arm Actuator Control Circuit/Open", 1571 | "P2651": "'B' Rocker Arm Actuator System Performance or Stuck Off", 1572 | "P2652": "'B' Rocker Arm Actuator System Stuck On", 1573 | "P2653": "'B' Rocker Arm Actuator Control Circuit Low", 1574 | "P2654": "'B' Rocker Arm Actuator Control Circuit High", 1575 | "P2655": "'A' Rocker Arm Actuator Control Circuit/Open", 1576 | "P2656": "'A' Rocker Arm Actuator System Performance or Stuck Off", 1577 | "P2657": "'A' Rocker Arm Actuator System Stuck On", 1578 | "P2658": "'A' Rocker Arm Actuator Control Circuit Low", 1579 | "P2659": "'A' Rocker Arm Actuator Control Circuit High", 1580 | "P2660": "'B' Rocker Arm Actuator Control Circuit/Open", 1581 | "P2661": "'B' Rocker Arm Actuator System Performance or Stuck Off", 1582 | "P2662": "'B' Rocker Arm Actuator System Stuck On", 1583 | "P2663": "'B' Rocker Arm Actuator Control Circuit Low", 1584 | "P2664": "'B' Rocker Arm Actuator Control Circuit High", 1585 | "P2665": "Fuel Shutoff Valve 'B' Control Circuit/Open", 1586 | "P2666": "Fuel Shutoff Valve 'B' Control Circuit Low", 1587 | "P2667": "Fuel Shutoff Valve 'B' Control Circuit High", 1588 | "P2668": "Fuel Mode Indicator Lamp Control Circuit", 1589 | "P2669": "Actuator Supply Voltage 'B' Circuit /Open", 1590 | "P2670": "Actuator Supply Voltage 'B' Circuit Low", 1591 | "P2671": "Actuator Supply Voltage 'B' Circuit High", 1592 | "P2700": "Transmission Friction Element 'A' Apply Time Range/Performance", 1593 | "P2701": "Transmission Friction Element 'B' Apply Time Range/Performance", 1594 | "P2702": "Transmission Friction Element 'C' Apply Time Range/Performance", 1595 | "P2703": "Transmission Friction Element 'D' Apply Time Range/Performance", 1596 | "P2704": "Transmission Friction Element 'E' Apply Time Range/Performance", 1597 | "P2705": "Transmission Friction Element 'F' Apply Time Range/Performance", 1598 | "P2706": "Shift Solenoid 'F'", 1599 | "P2707": "Shift Solenoid 'F' Performance or Stuck Off", 1600 | "P2708": "Shift Solenoid 'F' Stuck On", 1601 | "P2709": "Shift Solenoid 'F' Electrical", 1602 | "P2710": "Shift Solenoid 'F' Intermittent", 1603 | "P2711": "Unexpected Mechanical Gear Disengagement", 1604 | "P2712": "Hydraulic Power Unit Leakage", 1605 | "P2713": "Pressure Control Solenoid 'D'", 1606 | "P2714": "Pressure Control Solenoid 'D' Performance or Stuck Off", 1607 | "P2715": "Pressure Control Solenoid 'D' Stuck On", 1608 | "P2716": "Pressure Control Solenoid 'D' Electrical", 1609 | "P2717": "Pressure Control Solenoid 'D' Intermittent", 1610 | "P2718": "Pressure Control Solenoid 'D' Control Circuit / Open", 1611 | "P2719": "Pressure Control Solenoid 'D' Control Circuit Range/Performance", 1612 | "P2720": "Pressure Control Solenoid 'D' Control Circuit Low", 1613 | "P2721": "Pressure Control Solenoid 'D' Control Circuit High", 1614 | "P2722": "Pressure Control Solenoid 'E'", 1615 | "P2723": "Pressure Control Solenoid 'E' Performance or Stuck Off", 1616 | "P2724": "Pressure Control Solenoid 'E' Stuck On", 1617 | "P2725": "Pressure Control Solenoid 'E' Electrical", 1618 | "P2726": "Pressure Control Solenoid 'E' Intermittent", 1619 | "P2727": "Pressure Control Solenoid 'E' Control Circuit / Open", 1620 | "P2728": "Pressure Control Solenoid 'E' Control Circuit Range/Performance", 1621 | "P2729": "Pressure Control Solenoid 'E' Control Circuit Low", 1622 | "P2730": "Pressure Control Solenoid 'E' Control Circuit High", 1623 | "P2731": "Pressure Control Solenoid 'F'", 1624 | "P2732": "Pressure Control Solenoid 'F' Performance or Stuck Off", 1625 | "P2733": "Pressure Control Solenoid 'F' Stuck On", 1626 | "P2734": "Pressure Control Solenoid 'F' Electrical", 1627 | "P2735": "Pressure Control Solenoid 'F' Intermittent", 1628 | "P2736": "Pressure Control Solenoid 'F' Control Circuit/Open", 1629 | "P2737": "Pressure Control Solenoid 'F' Control Circuit Range/Performance", 1630 | "P2738": "Pressure Control Solenoid 'F' Control Circuit Low", 1631 | "P2739": "Pressure Control Solenoid 'F' Control Circuit High", 1632 | "P2740": "Transmission Fluid Temperature Sensor 'B' Circuit", 1633 | "P2741": "Transmission Fluid Temperature Sensor 'B' Circuit Range Performance", 1634 | "P2742": "Transmission Fluid Temperature Sensor 'B' Circuit Low", 1635 | "P2743": "Transmission Fluid Temperature Sensor 'B' Circuit High", 1636 | "P2744": "Transmission Fluid Temperature Sensor 'B' Circuit Intermittent", 1637 | "P2745": "Intermediate Shaft Speed Sensor 'B' Circuit", 1638 | "P2746": "Intermediate Shaft Speed Sensor 'B' Circuit Range/Performance", 1639 | "P2747": "Intermediate Shaft Speed Sensor 'B' Circuit No Signal", 1640 | "P2748": "Intermediate Shaft Speed Sensor 'B' Circuit Intermittent", 1641 | "P2749": "Intermediate Shaft Speed Sensor 'C' Circuit", 1642 | "P2750": "Intermediate Shaft Speed Sensor 'C' Circuit Range/Performance", 1643 | "P2751": "Intermediate Shaft Speed Sensor 'C' Circuit No Signal", 1644 | "P2752": "Intermediate Shaft Speed Sensor 'C' Circuit Intermittent", 1645 | "P2753": "Transmission Fluid Cooler Control Circuit/Open", 1646 | "P2754": "Transmission Fluid Cooler Control Circuit Low", 1647 | "P2755": "Transmission Fluid Cooler Control Circuit High", 1648 | "P2756": "Torque Converter Clutch Pressure Control Solenoid", 1649 | "P2757": "Torque Converter Clutch Pressure Control Solenoid Control Circuit Performance or Stuck Off", 1650 | "P2758": "Torque Converter Clutch Pressure Control Solenoid Control Circuit Stuck On", 1651 | "P2759": "Torque Converter Clutch Pressure Control Solenoid Control Circuit Electrical", 1652 | "P2760": "Torque Converter Clutch Pressure Control Solenoid Control Circuit Intermittent", 1653 | "P2761": "Torque Converter Clutch Pressure Control Solenoid Control Circuit/Open", 1654 | "P2762": "Torque Converter Clutch Pressure Control Solenoid Control Circuit Range/Performance", 1655 | "P2763": "Torque Converter Clutch Pressure Control Solenoid Control Circuit High", 1656 | "P2764": "Torque Converter Clutch Pressure Control Solenoid Control Circuit Low", 1657 | "P2765": "Input/Turbine Speed Sensor 'B' Circuit", 1658 | "P2766": "Input/Turbine Speed Sensor 'B' Circuit Range/Performance", 1659 | "P2767": "Input/Turbine Speed Sensor 'B' Circuit No Signal", 1660 | "P2768": "Input/Turbine Speed Sensor 'B' Circuit Intermittent", 1661 | "P2769": "Torque Converter Clutch Circuit Low", 1662 | "P2770": "Torque Converter Clutch Circuit High", 1663 | "P2771": "Four Wheel Drive (4WD) Low Switch Circuit", 1664 | "P2772": "Four Wheel Drive (4WD) Low Switch Circuit Range/Performance", 1665 | "P2773": "Four Wheel Drive (4WD) Low Switch Circuit Low", 1666 | "P2774": "Four Wheel Drive (4WD) Low Switch Circuit High", 1667 | "P2775": "Upshift Switch Circuit Range/Performance", 1668 | "P2776": "Upshift Switch Circuit Low", 1669 | "P2777": "Upshift Switch Circuit High", 1670 | "P2778": "Upshift Switch Circuit Intermittent/Erratic", 1671 | "P2779": "Downshift Switch Circuit Range/Performance", 1672 | "P2780": "Downshift Switch Circuit Low", 1673 | "P2781": "Downshift Switch Circuit High", 1674 | "P2782": "Downshift Switch Circuit Intermittent/Erratic", 1675 | "P2783": "Torque Converter Temperature Too High", 1676 | "P2784": "Input/Turbine Speed Sensor 'A'/'B' Correlation", 1677 | "P2785": "Clutch Actuator Temperature Too High", 1678 | "P2786": "Gear Shift Actuator Temperature Too High", 1679 | "P2787": "Clutch Temperature Too High", 1680 | "P2788": "Auto Shift Manual Adaptive Learning at Limit", 1681 | "P2789": "Clutch Adaptive Learning at Limit", 1682 | "P2790": "Gate Select Direction Circuit", 1683 | "P2791": "Gate Select Direction Circuit Low", 1684 | "P2792": "Gate Select Direction Circuit High", 1685 | "P2793": "Gear Shift Direction Circuit", 1686 | "P2794": "Gear Shift Direction Circuit Low", 1687 | "P2795": "Gear Shift Direction Circuit High", 1688 | "P2A00": "O2 Sensor Circuit Range/Performance", 1689 | "P2A01": "O2 Sensor Circuit Range/Performance", 1690 | "P2A02": "O2 Sensor Circuit Range/Performance", 1691 | "P2A03": "O2 Sensor Circuit Range/Performance", 1692 | "P2A04": "O2 Sensor Circuit Range/Performance", 1693 | "P2A05": "O2 Sensor Circuit Range/Performance", 1694 | "P3400": "Cylinder Deactivation System", 1695 | "P3401": "Cylinder 1 Deactivation/lntake Valve Control Circuit/Open", 1696 | "P3402": "Cylinder 1 Deactivation/lntake Valve Control Performance", 1697 | "P3403": "Cylinder 1 Deactivation/lntake Valve Control Circuit Low", 1698 | "P3404": "Cylinder 1 Deactivation/lntake Valve Control Circuit High", 1699 | "P3405": "Cylinder 1 Exhaust Valve Control Circuit/Open", 1700 | "P3406": "Cylinder 1 Exhaust Valve Control Performance", 1701 | "P3407": "Cylinder 1 Exhaust Valve Control Circuit Low", 1702 | "P3408": "Cylinder 1 Exhaust Valve Control Circuit High", 1703 | "P3409": "Cylinder 2 Deactivation/lntake Valve Control Circuit/Open", 1704 | "P3410": "Cylinder 2 Deactivation/lntake Valve Control Performance", 1705 | "P3411": "Cylinder 2 Deactivation/lntake Valve Control Circuit Low", 1706 | "P3412": "Cylinder 2 Deactivation/lntake Valve Control Circuit High", 1707 | "P3413": "Cylinder 2 Exhaust Valve Control Circuit/Open", 1708 | "P3414": "Cylinder 2 Exhaust Valve Control Performance", 1709 | "P3415": "Cylinder 2 Exhaust Valve Control Circuit Low", 1710 | "P3416": "Cylinder 2 Exhaust Valve Control Circuit High", 1711 | "P3417": "Cylinder 3 Deactivation/lntake Valve Control Circuit/Open", 1712 | "P3418": "Cylinder 3 Deactivation/lntake Valve Control Performance", 1713 | "P3419": "Cylinder 3 Deactivation/lntake Valve Control Circuit Low", 1714 | "P3420": "Cylinder 3 Deactivation/lntake Valve Control Circuit High", 1715 | "P3421": "Cylinder 3 Exhaust Valve Control Circuit/Open", 1716 | "P3422": "Cylinder 3 Exhaust Valve Control Performance", 1717 | "P3423": "Cylinder 3 Exhaust Valve Control Circuit Low", 1718 | "P3424": "Cylinder 3 Exhaust Valve Control Circuit High", 1719 | "P3425": "Cylinder 4 Deactivation/lntake Valve Control Circuit/Open", 1720 | "P3426": "Cylinder 4 Deactivation/lntake Valve Control Performance", 1721 | "P3427": "Cylinder 4 Deactivation/lntake Valve Control Circuit Low", 1722 | "P3428": "Cylinder 4 Deactivation/lntake Valve Control Circuit High", 1723 | "P3429": "Cylinder 4 Exhaust Valve Control Circuit/Open", 1724 | "P3430": "Cylinder 4 Exhaust Valve Control Performance", 1725 | "P3431": "Cylinder 4 Exhaust Valve Control Circuit Low", 1726 | "P3432": "Cylinder 4 Exhaust Valve Control Circuit High", 1727 | "P3433": "Cylinder 5 Deactivation/lntake Valve Control Circuit/Open", 1728 | "P3434": "Cylinder 5 Deactivation/lntake Valve Control Performance", 1729 | "P3435": "Cylinder 5 Deactivation/lntake Valve Control Circuit Low", 1730 | "P3436": "Cylinder 5 Deactivation/lntake Valve Control Circuit High", 1731 | "P3437": "Cylinder 5 Exhaust Valve Control Circuit/Open", 1732 | "P3438": "Cylinder 5 Exhaust Valve Control Performance", 1733 | "P3439": "Cylinder 5 Exhaust Valve Control Circuit Low", 1734 | "P3440": "Cylinder 5 Exhaust Valve Control Circuit High", 1735 | "P3441": "Cylinder 6 Deactivation/lntake Valve Control Circuit/Open", 1736 | "P3442": "Cylinder 6 Deactivation/lntake Valve Control Performance", 1737 | "P3443": "Cylinder 6 Deactivation/lntake Valve Control Circuit Low", 1738 | "P3444": "Cylinder 6 Deactivation/lntake Valve Control Circuit High", 1739 | "P3445": "Cylinder 6 Exhaust Valve Control Circuit/Open", 1740 | "P3446": "Cylinder 6 Exhaust Valve Control Performance", 1741 | "P3447": "Cylinder 6 Exhaust Valve Control Circuit Low", 1742 | "P3448": "Cylinder 6 Exhaust Valve Control Circuit High", 1743 | "P3449": "Cylinder 7 Deactivation/lntake Valve Control Circuit/Open", 1744 | "P3450": "Cylinder 7 Deactivation/lntake Valve Control Performance", 1745 | "P3451": "Cylinder 7 Deactivation/lntake Valve Control Circuit Low", 1746 | "P3452": "Cylinder 7 Deactivation/lntake Valve Control Circuit High", 1747 | "P3453": "Cylinder 7 Exhaust Valve Control Circuit/Open", 1748 | "P3454": "Cylinder 7 Exhaust Valve Control Performance", 1749 | "P3455": "Cylinder 7 Exhaust Valve Control Circuit Low", 1750 | "P3456": "Cylinder 7 Exhaust Valve Control Circuit High", 1751 | "P3457": "Cylinder 8 Deactivation/lntake Valve Control Circuit/Open", 1752 | "P3458": "Cylinder 8 Deactivation/lntake Valve Control Performance", 1753 | "P3459": "Cylinder 8 Deactivation/lntake Valve Control Circuit Low", 1754 | "P3460": "Cylinder 8 Deactivation/lntake Valve Control Circuit High", 1755 | "P3461": "Cylinder 8 Exhaust Valve Control Circuit/Open", 1756 | "P3462": "Cylinder 8 Exhaust Valve Control Performance", 1757 | "P3463": "Cylinder 8 Exhaust Valve Control Circuit Low", 1758 | "P3464": "Cylinder 8 Exhaust Valve Control Circuit High", 1759 | "P3465": "Cylinder 9 Deactivation/lntake Valve Control Circuit/Open", 1760 | "P3466": "Cylinder 9 Deactivation/lntake Valve Control Performance", 1761 | "P3467": "Cylinder 9 Deactivation/lntake Valve Control Circuit Low", 1762 | "P3468": "Cylinder 9 Deactivation/lntake Valve Control Circuit High", 1763 | "P3469": "Cylinder 9 Exhaust Valve Control Circuit/Open", 1764 | "P3470": "Cylinder 9 Exhaust Valve Control Performance", 1765 | "P3471": "Cylinder 9 Exhaust Valve Control Circuit Low", 1766 | "P3472": "Cylinder 9 Exhaust Valve Control Circuit High", 1767 | "P3473": "Cylinder 10 Deactivation/lntake Valve Control Circuit/Open", 1768 | "P3474": "Cylinder 10 Deactivation/lntake Valve Control Performance", 1769 | "P3475": "Cylinder 10 Deactivation/lntake Valve Control Circuit Low", 1770 | "P3476": "Cylinder 10 Deactivation/lntake Valve Control Circuit High", 1771 | "P3477": "Cylinder 10 Exhaust Valve Control Circuit/Open", 1772 | "P3478": "Cylinder 10 Exhaust Valve Control Performance", 1773 | "P3479": "Cylinder 10 Exhaust Valve Control Circuit Low", 1774 | "P3480": "Cylinder 10 Exhaust Valve Control Circuit High", 1775 | "P3481": "Cylinder 11 Deactivation/lntake Valve Control Circuit/Open", 1776 | "P3482": "Cylinder 11 Deactivation/lntake Valve Control Performance", 1777 | "P3483": "Cylinder 11 Deactivation/lntake Valve Control Circuit Low", 1778 | "P3484": "Cylinder 11 Deactivation/lntake Valve Control Circuit High", 1779 | "P3485": "Cylinder 11 Exhaust Valve Control Circuit/Open", 1780 | "P3486": "Cylinder 11 Exhaust Valve Control Performance", 1781 | "P3487": "Cylinder 11 Exhaust Valve Control Circuit Low", 1782 | "P3488": "Cylinder 11 Exhaust Valve Control Circuit High", 1783 | "P3489": "Cylinder 12 Deactivation/lntake Valve Control Circuit/Open", 1784 | "P3490": "Cylinder 12 Deactivation/lntake Valve Control Performance", 1785 | "P3491": "Cylinder 12 Deactivation/lntake Valve Control Circuit Low", 1786 | "P3492": "Cylinder 12 Deactivation/lntake Valve Control Circuit High", 1787 | "P3493": "Cylinder 12 Exhaust Valve Control Circuit/Open", 1788 | "P3494": "Cylinder 12 Exhaust Valve Control Performance", 1789 | "P3495": "Cylinder 12 Exhaust Valve Control Circuit Low", 1790 | "P3496": "Cylinder 12 Exhaust Valve Control Circuit High", 1791 | "P3497": "Cylinder Deactivation System", 1792 | "U0001" : "High Speed CAN Communication Bus" , 1793 | "U0002" : "High Speed CAN Communication Bus (Performance)" , 1794 | "U0003" : "High Speed CAN Communication Bus (Open)" , 1795 | "U0004" : "High Speed CAN Communication Bus (Low)" , 1796 | "U0005" : "High Speed CAN Communication Bus (High)" , 1797 | "U0006" : "High Speed CAN Communication Bus (Open)" , 1798 | "U0007" : "High Speed CAN Communication Bus (Low)" , 1799 | "U0008" : "High Speed CAN Communication Bus (High)" , 1800 | "U0009" : "High Speed CAN Communication Bus (shorted to Bus)" , 1801 | "U0010" : "Medium Speed CAN Communication Bus" , 1802 | "U0011" : "Medium Speed CAN Communication Bus (Performance)" , 1803 | "U0012" : "Medium Speed CAN Communication Bus (Open)" , 1804 | "U0013" : "Medium Speed CAN Communication Bus (Low)" , 1805 | "U0014" : "Medium Speed CAN Communication Bus (High)" , 1806 | "U0015" : "Medium Speed CAN Communication Bus (Open)" , 1807 | "U0016" : "Medium Speed CAN Communication Bus (Low)" , 1808 | "U0017" : "Medium Speed CAN Communication Bus (High)" , 1809 | "U0018" : "Medium Speed CAN Communication Bus (shorted to Bus)" , 1810 | "U0019" : "Low Speed CAN Communication Bus" , 1811 | "U0020" : "Low Speed CAN Communication Bus (Performance)" , 1812 | "U0021" : "Low Speed CAN Communication Bus (Open)" , 1813 | "U0022" : "Low Speed CAN Communication Bus (Low)" , 1814 | "U0023" : "Low Speed CAN Communication Bus (High)" , 1815 | "U0024" : "Low Speed CAN Communication Bus (Open)" , 1816 | "U0025" : "Low Speed CAN Communication Bus (Low)" , 1817 | "U0026" : "Low Speed CAN Communication Bus (High)" , 1818 | "U0027" : "Low Speed CAN Communication Bus (shorted to Bus)" , 1819 | "U0028" : "Vehicle Communication Bus A" , 1820 | "U0029" : "Vehicle Communication Bus A (Performance)" , 1821 | "U0030" : "Vehicle Communication Bus A (Open)" , 1822 | "U0031" : "Vehicle Communication Bus A (Low)" , 1823 | "U0032" : "Vehicle Communication Bus A (High)" , 1824 | "U0033" : "Vehicle Communication Bus A (Open)" , 1825 | "U0034" : "Vehicle Communication Bus A (Low)" , 1826 | "U0035" : "Vehicle Communication Bus A (High)" , 1827 | "U0036" : "Vehicle Communication Bus A (shorted to Bus A)" , 1828 | "U0037" : "Vehicle Communication Bus B" , 1829 | "U0038" : "Vehicle Communication Bus B (Performance)" , 1830 | "U0039" : "Vehicle Communication Bus B (Open)" , 1831 | "U0040" : "Vehicle Communication Bus B (Low)" , 1832 | "U0041" : "Vehicle Communication Bus B (High)" , 1833 | "U0042" : "Vehicle Communication Bus B (Open)" , 1834 | "U0043" : "Vehicle Communication Bus B (Low)" , 1835 | "U0044" : "Vehicle Communication Bus B (High)" , 1836 | "U0045" : "Vehicle Communication Bus B (shorted to Bus B)" , 1837 | "U0046" : "Vehicle Communication Bus C" , 1838 | "U0047" : "Vehicle Communication Bus C (Performance)" , 1839 | "U0048" : "Vehicle Communication Bus C (Open)" , 1840 | "U0049" : "Vehicle Communication Bus C (Low)" , 1841 | "U0050" : "Vehicle Communication Bus C (High)" , 1842 | "U0051" : "Vehicle Communication Bus C (Open)" , 1843 | "U0052" : "Vehicle Communication Bus C (Low)" , 1844 | "U0053" : "Vehicle Communication Bus C (High)" , 1845 | "U0054" : "Vehicle Communication Bus C (shorted to Bus C)" , 1846 | "U0055" : "Vehicle Communication Bus D" , 1847 | "U0056" : "Vehicle Communication Bus D (Performance)" , 1848 | "U0057" : "Vehicle Communication Bus D (Open)" , 1849 | "U0058" : "Vehicle Communication Bus D (Low)" , 1850 | "U0059" : "Vehicle Communication Bus D (High)" , 1851 | "U0060" : "Vehicle Communication Bus D (Open)" , 1852 | "U0061" : "Vehicle Communication Bus D (Low)" , 1853 | "U0062" : "Vehicle Communication Bus D (High)" , 1854 | "U0063" : "Vehicle Communication Bus D (shorted to Bus D)" , 1855 | "U0064" : "Vehicle Communication Bus E" , 1856 | "U0065" : "Vehicle Communication Bus E (Performance)" , 1857 | "U0066" : "Vehicle Communication Bus E (Open)" , 1858 | "U0067" : "Vehicle Communication Bus E (Low)" , 1859 | "U0068" : "Vehicle Communication Bus E (High)" , 1860 | "U0069" : "Vehicle Communication Bus E (Open)" , 1861 | "U0070" : "Vehicle Communication Bus E (Low)" , 1862 | "U0071" : "Vehicle Communication Bus E (High)" , 1863 | "U0072" : "Vehicle Communication Bus E (shorted to Bus E)" , 1864 | "U0073" : "Control Module Communication Bus Off" , 1865 | "U0074" : "Reserved by J2012" , 1866 | "U0075" : "Reserved by J2012" , 1867 | "U0076" : "Reserved by J2012" , 1868 | "U0077" : "Reserved by J2012" , 1869 | "U0078" : "Reserved by J2012" , 1870 | "U0079" : "Reserved by J2012" , 1871 | "U0080" : "Reserved by J2012" , 1872 | "U0081" : "Reserved by J2012" , 1873 | "U0082" : "Reserved by J2012" , 1874 | "U0083" : "Reserved by J2012" , 1875 | "U0084" : "Reserved by J2012" , 1876 | "U0085" : "Reserved by J2012" , 1877 | "U0086" : "Reserved by J2012" , 1878 | "U0087" : "Reserved by J2012" , 1879 | "U0088" : "Reserved by J2012" , 1880 | "U0089" : "Reserved by J2012" , 1881 | "U0090" : "Reserved by J2012" , 1882 | "U0091" : "Reserved by J2012" , 1883 | "U0092" : "Reserved by J2012" , 1884 | "U0093" : "Reserved by J2012" , 1885 | "U0094" : "Reserved by J2012" , 1886 | "U0095" : "Reserved by J2012" , 1887 | "U0096" : "Reserved by J2012" , 1888 | "U0097" : "Reserved by J2012" , 1889 | "U0098" : "Reserved by J2012" , 1890 | "U0099" : "Reserved by J2012" , 1891 | "U0100" : "Lost Communication With ECM/PCM A" , 1892 | "U0101" : "Lost Communication with TCM" , 1893 | "U0102" : "Lost Communication with Transfer Case Control Module" , 1894 | "U0103" : "Lost Communication With Gear Shift Module" , 1895 | "U0104" : "Lost Communication With Cruise Control Module" , 1896 | "U0105" : "Lost Communication With Fuel Injector Control Module" , 1897 | "U0106" : "Lost Communication With Glow Plug Control Module" , 1898 | "U0107" : "Lost Communication With Throttle Actuator Control Module" , 1899 | "U0108" : "Lost Communication With Alternative Fuel Control Module" , 1900 | "U0109" : "Lost Communication With Fuel Pump Control Module" , 1901 | "U0110" : "Lost Communication With Drive Motor Control Module" , 1902 | "U0111" : "Lost Communication With Battery Energy Control Module 'A'" , 1903 | "U0112" : "Lost Communication With Battery Energy Control Module 'B'" , 1904 | "U0113" : "Lost Communication With Emissions Critical Control Information" , 1905 | "U0114" : "Lost Communication With Four-Wheel Drive Clutch Control Module" , 1906 | "U0115" : "Lost Communication With ECM/PCM B" , 1907 | "U0116" : "Reserved by J2012" , 1908 | "U0117" : "Reserved by J2012" , 1909 | "U0118" : "Reserved by J2012" , 1910 | "U0119" : "Reserved by J2012" , 1911 | "U0120" : "Reserved by J2012" , 1912 | "U0121" : "Lost Communication With Anti-Lock Brake System (ABS) Control Module" , 1913 | "U0122" : "Lost Communication With Vehicle Dynamics Control Module" , 1914 | "U0123" : "Lost Communication With Yaw Rate Sensor Module" , 1915 | "U0124" : "Lost Communication With Lateral Acceleration Sensor Module" , 1916 | "U0125" : "Lost Communication With Multi-axis Acceleration Sensor Module" , 1917 | "U0126" : "Lost Communication With Steering Angle Sensor Module" , 1918 | "U0127" : "Lost Communication With Tire Pressure Monitor Module" , 1919 | "U0128" : "Lost Communication With Park Brake Control Module" , 1920 | "U0129" : "Lost Communication With Brake System Control Module" , 1921 | "U0130" : "Lost Communication With Steering Effort Control Module" , 1922 | "U0131" : "Lost Communication With Power Steering Control Module" , 1923 | "U0132" : "Lost Communication With Ride Level Control Module" , 1924 | "U0133" : "Reserved by J2012" , 1925 | "U0134" : "Reserved by J2012" , 1926 | "U0135" : "Reserved by J2012" , 1927 | "U0136" : "Reserved by J2012" , 1928 | "U0137" : "Reserved by J2012" , 1929 | "U0138" : "Reserved by J2012" , 1930 | "U0139" : "Reserved by J2012" , 1931 | "U0140" : "Lost Communication With Body Control Module" , 1932 | "U0141" : "Lost Communication With Body Control Module 'A'" , 1933 | "U0142" : "Lost Communication With Body Control Module 'B'" , 1934 | "U0143" : "Lost Communication With Body Control Module 'C'" , 1935 | "U0144" : "Lost Communication With Body Control Module 'D'" , 1936 | "U0145" : "Lost Communication With Body Control Module 'E'" , 1937 | "U0146" : "Lost Communication With Gateway 'A'" , 1938 | "U0147" : "Lost Communication With Gateway 'B'" , 1939 | "U0148" : "Lost Communication With Gateway 'C'" , 1940 | "U0149" : "Lost Communication With Gateway 'D'" , 1941 | "U0150" : "Lost Communication With Gateway 'E'" , 1942 | "U0151" : "Lost Communication With Restraints Control Module" , 1943 | "U0152" : "Lost Communication With Side Restraints Control Module Left" , 1944 | "U0153" : "Lost Communication With Side Restraints Control Module Right" , 1945 | "U0154" : "Lost Communication With Restraints Occupant Sensing Control Module" , 1946 | "U0155" : "Lost Communication With Instrument Panel Cluster (IPC) Control Module" , 1947 | "U0156" : "Lost Communication With Information Center 'A'" , 1948 | "U0157" : "Lost Communication With Information Center 'B'" , 1949 | "U0158" : "Lost Communication With Head Up Display" , 1950 | "U0159" : "Lost Communication With Parking Assist Control Module" , 1951 | "U0160" : "Lost Communication With Audible Alert Control Module" , 1952 | "U0161" : "Lost Communication With Compass Module" , 1953 | "U0162" : "Lost Communication With Navigation Display Module" , 1954 | "U0163" : "Lost Communication With Navigation Control Module" , 1955 | "U0164" : "Lost Communication With HVAC Control Module" , 1956 | "U0165" : "Lost Communication With HVAC Control Module Rear" , 1957 | "U0166" : "Lost Communication With Auxiliary Heater Control Module" , 1958 | "U0167" : "Lost Communication With Vehicle Immobilizer Control Module" , 1959 | "U0168" : "Lost Communication With Vehicle Security Control Module" , 1960 | "U0169" : "Lost Communication With Sunroof Control Module" , 1961 | "U0170" : "Lost Communication With 'Restraints System Sensor A'" , 1962 | "U0171" : "Lost Communication With 'Restraints System Sensor B'" , 1963 | "U0172" : "Lost Communication With 'Restraints System Sensor C'" , 1964 | "U0173" : "Lost Communication With 'Restraints System Sensor D'" , 1965 | "U0174" : "Lost Communication With 'Restraints System Sensor E'" , 1966 | "U0175" : "Lost Communication With 'Restraints System Sensor F'" , 1967 | "U0176" : "Lost Communication With 'Restraints System Sensor G'" , 1968 | "U0177" : "Lost Communication With 'Restraints System Sensor H'" , 1969 | "U0178" : "Lost Communication With 'Restraints System Sensor I'" , 1970 | "U0179" : "Lost Communication With 'Restraints System Sensor J'" , 1971 | "U0180" : "Lost Communication With Automatic Lighting Control Module" , 1972 | "U0181" : "Lost Communication With Headlamp Leveling Control Module" , 1973 | "U0182" : "Lost Communication With Lighting Control Module Front" , 1974 | "U0183" : "Lost Communication With Lighting Control Module Rear" , 1975 | "U0184" : "Lost Communication With Radio" , 1976 | "U0185" : "Lost Communication With Antenna Control Module" , 1977 | "U0186" : "Lost Communication With Audio Amplifier" , 1978 | "U0187" : "Lost Communication With Digital Disc Player/Changer Module 'A'" , 1979 | "U0188" : "Lost Communication With Digital Disc Player/Changer Module 'B'" , 1980 | "U0189" : "Lost Communication With Digital Disc Player/Changer Module 'C'" , 1981 | "U0190" : "Lost Communication With Digital Disc Player/Changer Module 'D'" , 1982 | "U0191" : "Lost Communication With Television" , 1983 | "U0192" : "Lost Communication With Personal Computer" , 1984 | "U0193" : "Lost Communication With 'Digital Audio Control Module A'" , 1985 | "U0194" : "Lost Communication With 'Digital Audio Control Module B'" , 1986 | "U0195" : "Lost Communication With Subscription Entertainment Receiver Module" , 1987 | "U0196" : "Lost Communication With Rear Seat Entertainment Control Module" , 1988 | "U0197" : "Lost Communication With Telephone Control Module" , 1989 | "U0198" : "Lost Communication With Telematic Control Module" , 1990 | "U0199" : "Lost Communication With 'Door Control Module A'" , 1991 | "U0200" : "Lost Communication With 'Door Control Module B'" , 1992 | "U0201" : "Lost Communication With 'Door Control Module C'" , 1993 | "U0202" : "Lost Communication With 'Door Control Module D'" , 1994 | "U0203" : "Lost Communication With 'Door Control Module E'" , 1995 | "U0204" : "Lost Communication With 'Door Control Module F'" , 1996 | "U0205" : "Lost Communication With 'Door Control Module G'" , 1997 | "U0206" : "Lost Communication With Folding Top Control Module" , 1998 | "U0207" : "Lost Communication With Moveable Roof Control Module" , 1999 | "U0208" : "Lost Communication With 'Seat Control Module A'" , 2000 | "U0209" : "Lost Communication With 'Seat Control Module B'" , 2001 | "U0210" : "Lost Communication With 'Seat Control Module C'" , 2002 | "U0211" : "Lost Communication With 'Seat Control Module D'" , 2003 | "U0212" : "Lost Communication With Steering Column Control Module" , 2004 | "U0213" : "Lost Communication With Mirror Control Module" , 2005 | "U0214" : "Lost Communication With Remote Function Actuation" , 2006 | "U0215" : "Lost Communication With 'Door Switch A'" , 2007 | "U0216" : "Lost Communication With 'Door Switch B'" , 2008 | "U0217" : "Lost Communication With 'Door Switch C'" , 2009 | "U0218" : "Lost Communication With 'Door Switch D'" , 2010 | "U0219" : "Lost Communication With 'Door Switch E'" , 2011 | "U0220" : "Lost Communication With 'Door Switch F'" , 2012 | "U0221" : "Lost Communication With 'Door Switch G'" , 2013 | "U0222" : "Lost Communication With 'Door Window Motor A'" , 2014 | "U0223" : "Lost Communication With 'Door Window Motor B'" , 2015 | "U0224" : "Lost Communication With 'Door Window Motor C'" , 2016 | "U0225" : "Lost Communication With 'Door Window Motor D'" , 2017 | "U0226" : "Lost Communication With 'Door Window Motor E'" , 2018 | "U0227" : "Lost Communication With 'Door Window Motor F'" , 2019 | "U0228" : "Lost Communication With 'Door Window Motor G'" , 2020 | "U0229" : "Lost Communication With Heated Steering Wheel Module" , 2021 | "U0230" : "Lost Communication With Rear Gate Module" , 2022 | "U0231" : "Lost Communication With Rain Sensing Module" , 2023 | "U0232" : "Lost Communication With Side Obstacle Detection Control Module Left" , 2024 | "U0233" : "Lost Communication With Side Obstacle Detection Control Module Right" , 2025 | "U0234" : "Lost Communication With Convenience Recall Module" , 2026 | "U0235" : "Lost Communication With Cruise Control Front Distance Range Sensor" , 2027 | "U0300" : "Internal Control Module Software Incompatibility" , 2028 | "U0301" : "Software Incompatibility with ECM/PCM" , 2029 | "U0302" : "Software Incompatibility with Transmission Control Module" , 2030 | "U0303" : "Software Incompatibility with Transfer Case Control Module" , 2031 | "U0304" : "Software Incompatibility with Gear Shift Control Module" , 2032 | "U0305" : "Software Incompatibility with Cruise Control Module" , 2033 | "U0306" : "Software Incompatibility with Fuel Injector Control Module" , 2034 | "U0307" : "Software Incompatibility with Glow Plug Control Module" , 2035 | "U0308" : "Software Incompatibility with Throttle Actuator Control Module" , 2036 | "U0309" : "Software Incompatibility with Alternative Fuel Control Module" , 2037 | "U0310" : "Software Incompatibility with Fuel Pump Control Module" , 2038 | "U0311" : "Software Incompatibility with Drive Motor Control Module" , 2039 | "U0312" : "Software Incompatibility with Battery Energy Control Module A" , 2040 | "U0313" : "Software Incompatibility with Battery Energy Control Module B" , 2041 | "U0314" : "Software Incompatibility with Four-Wheel Drive Clutch Control Module" , 2042 | "U0315" : "Software Incompatibility with Anti-Lock Brake System Control Module" , 2043 | "U0316" : "Software Incompatibility with Vehicle Dynamics Control Module" , 2044 | "U0317" : "Software Incompatibility with Park Brake Control Module" , 2045 | "U0318" : "Software Incompatibility with Brake System Control Module" , 2046 | "U0319" : "Software Incompatibility with Steering Effort Control Module" , 2047 | "U0320" : "Software Incompatibility with Power Steering Control Module" , 2048 | "U0321" : "Software Incompatibility with Ride Level Control Module" , 2049 | "U0322" : "Software Incompatibility with Body Control Module" , 2050 | "U0323" : "Software Incompatibility with Instrument Panel Control Module" , 2051 | "U0324" : "Software Incompatibility with HVAC Control Module" , 2052 | "U0325" : "Software Incompatibility with Auxiliary Heater Control Module" , 2053 | "U0326" : "Software Incompatibility with Vehicle Immobilizer Control Module" , 2054 | "U0327" : "Software Incompatibility with Vehicle Security Control Module" , 2055 | "U0328" : "Software Incompatibility with Steering Angle Sensor Module" , 2056 | "U0329" : "Software Incompatibility with Steering Column Control Module" , 2057 | "U0330" : "Software Incompatibility with Tire Pressure Monitor Module" , 2058 | "U0331" : "Software Incompatibility with Body Control Module 'A'" , 2059 | "U0400" : "Invalid Data Received" , 2060 | "U0401" : "Invalid Data Received From ECM/PCM" , 2061 | "U0402" : "Invalid Data Received From Transmission Control Module" , 2062 | "U0403" : "Invalid Data Received From Transfer Case Control Module" , 2063 | "U0404" : "Invalid Data Received From Gear Shift Control Module" , 2064 | "U0405" : "Invalid Data Received From Cruise Control Module" , 2065 | "U0406" : "Invalid Data Received From Fuel Injector Control Module" , 2066 | "U0407" : "Invalid Data Received From Glow Plug Control Module" , 2067 | "U0408" : "Invalid Data Received From Throttle Actuator Control Module" , 2068 | "U0409" : "Invalid Data Received From Alternative Fuel Control Module" , 2069 | "U0410" : "Invalid Data Received From Fuel Pump Control Module" , 2070 | "U0411" : "Invalid Data Received From Drive Motor Control Module" , 2071 | "U0412" : "Invalid Data Received From Battery Energy Control Module A" , 2072 | "U0413" : "Invalid Data Received From Battery Energy Control Module B" , 2073 | "U0414" : "Invalid Data Received From Four-Wheel Drive Clutch Control Module" , 2074 | "U0415" : "Invalid Data Received From Anti-Lock Brake System Control Module" , 2075 | "U0416" : "Invalid Data Received From Vehicle Dynamics Control Module" , 2076 | "U0417" : "Invalid Data Received From Park Brake Control Module" , 2077 | "U0418" : "Invalid Data Received From Brake System Control Module" , 2078 | "U0419" : "Invalid Data Received From Steering Effort Control Module" , 2079 | "U0420" : "Invalid Data Received From Power Steering Control Module" , 2080 | "U0421" : "Invalid Data Received From Ride Level Control Module" , 2081 | "U0422" : "Invalid Data Received From Body Control Module" , 2082 | "U0423" : "Invalid Data Received From Instrument Panel Control Module" , 2083 | "U0424" : "Invalid Data Received From HVAC Control Module" , 2084 | "U0425" : "Invalid Data Received From Auxiliary Heater Control Module" , 2085 | "U0426" : "Invalid Data Received From Vehicle Immobilizer Control Module" , 2086 | "U0427" : "Invalid Data Received From Vehicle Security Control Module" , 2087 | "U0428" : "Invalid Data Received From Steering Angle Sensor Module" , 2088 | "U0429" : "Invalid Data Received From Steering Column Control Module" , 2089 | "U0430" : "Invalid Data Received From Tire Pressure Monitor Module" , 2090 | "U0431" : "Invalid Data Received From Body Control Module 'A'" 2091 | 2092 | } 2093 | 2094 | pcode_classes = { 2095 | "P00XX": "Fuel and Air Metering and Auxiliary Emission Controls", 2096 | "P01XX": "Fuel and Air Merering", 2097 | "P02XX": "Fuel and Air Merering", 2098 | "P03XX": "Ignition System or Misfire", 2099 | "P04XX": "Auxiliary Emission Controls", 2100 | "P05XX": "Vehicle Speed, Idle Control, and Auxiliary Inputs", 2101 | "P06XX": "Computer and Auxiliary Outputs", 2102 | "P07XX": "Transmission", 2103 | "P08XX": "Transmission", 2104 | "P09XX": "Transmission", 2105 | "P0AXX": "Hybrid Propulsion", 2106 | "P10XX": "Manufacturer Controlled Fuel and Air Metering and Auxiliary Emission Controls", 2107 | "P11XX": "Manufacturer Controlled Fuel and Air Merering", 2108 | "P12XX": "Fuel and Air Merering", 2109 | "P13XX": "Ignition System or Misfire", 2110 | "P14XX": "Auxiliary Emission Controls", 2111 | "P15XX": "Vehicle Speed, Idle Control, and Auxiliary Inputs", 2112 | "P16XX": "Computer and Auxiliary Outputs", 2113 | "P17XX": "Transmission", 2114 | "P18XX": "Transmission", 2115 | "P19XX": "Transmission", 2116 | 2117 | } 2118 | 2119 | ptest= [ 2120 | "DTCs:", 2121 | "MIL:", 2122 | #A 2123 | "Misfire:", 2124 | "Fuel system:", 2125 | "Components:", 2126 | #B,D 2127 | "Catalyst:", 2128 | "Heated Catalyst:", 2129 | "Evaporative system:", 2130 | "Secondary Air System:", 2131 | "A/C Refrigerant:" , 2132 | "Oxygen Sensor:", 2133 | "Oxygen Sensor Heater:", 2134 | "EGR SystemC7:" , 2135 | ] 2136 | --------------------------------------------------------------------------------