oscura 0.5.0__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- oscura/__init__.py +169 -167
- oscura/analyzers/__init__.py +3 -0
- oscura/analyzers/classification.py +659 -0
- oscura/analyzers/digital/__init__.py +0 -48
- oscura/analyzers/digital/edges.py +325 -65
- oscura/analyzers/digital/extraction.py +0 -195
- oscura/analyzers/digital/quality.py +293 -166
- oscura/analyzers/digital/timing.py +260 -115
- oscura/analyzers/digital/timing_numba.py +334 -0
- oscura/analyzers/entropy.py +605 -0
- oscura/analyzers/eye/diagram.py +176 -109
- oscura/analyzers/eye/metrics.py +5 -5
- oscura/analyzers/jitter/__init__.py +6 -4
- oscura/analyzers/jitter/ber.py +52 -52
- oscura/analyzers/jitter/classification.py +156 -0
- oscura/analyzers/jitter/decomposition.py +163 -113
- oscura/analyzers/jitter/spectrum.py +80 -64
- oscura/analyzers/ml/__init__.py +39 -0
- oscura/analyzers/ml/features.py +600 -0
- oscura/analyzers/ml/signal_classifier.py +604 -0
- oscura/analyzers/packet/daq.py +246 -158
- oscura/analyzers/packet/parser.py +12 -1
- oscura/analyzers/packet/payload.py +50 -2110
- oscura/analyzers/packet/payload_analysis.py +361 -181
- oscura/analyzers/packet/payload_patterns.py +133 -70
- oscura/analyzers/packet/stream.py +84 -23
- oscura/analyzers/patterns/__init__.py +26 -5
- oscura/analyzers/patterns/anomaly_detection.py +908 -0
- oscura/analyzers/patterns/clustering.py +169 -108
- oscura/analyzers/patterns/clustering_optimized.py +227 -0
- oscura/analyzers/patterns/discovery.py +1 -1
- oscura/analyzers/patterns/matching.py +581 -197
- oscura/analyzers/patterns/pattern_mining.py +778 -0
- oscura/analyzers/patterns/periodic.py +121 -38
- oscura/analyzers/patterns/sequences.py +175 -78
- oscura/analyzers/power/conduction.py +1 -1
- oscura/analyzers/power/soa.py +6 -6
- oscura/analyzers/power/switching.py +250 -110
- oscura/analyzers/protocol/__init__.py +17 -1
- oscura/analyzers/protocols/__init__.py +1 -22
- oscura/analyzers/protocols/base.py +6 -6
- oscura/analyzers/protocols/ble/__init__.py +38 -0
- oscura/analyzers/protocols/ble/analyzer.py +809 -0
- oscura/analyzers/protocols/ble/uuids.py +288 -0
- oscura/analyzers/protocols/can.py +257 -127
- oscura/analyzers/protocols/can_fd.py +107 -80
- oscura/analyzers/protocols/flexray.py +139 -80
- oscura/analyzers/protocols/hdlc.py +93 -58
- oscura/analyzers/protocols/i2c.py +247 -106
- oscura/analyzers/protocols/i2s.py +138 -86
- oscura/analyzers/protocols/industrial/__init__.py +40 -0
- oscura/analyzers/protocols/industrial/bacnet/__init__.py +33 -0
- oscura/analyzers/protocols/industrial/bacnet/analyzer.py +708 -0
- oscura/analyzers/protocols/industrial/bacnet/encoding.py +412 -0
- oscura/analyzers/protocols/industrial/bacnet/services.py +622 -0
- oscura/analyzers/protocols/industrial/ethercat/__init__.py +30 -0
- oscura/analyzers/protocols/industrial/ethercat/analyzer.py +474 -0
- oscura/analyzers/protocols/industrial/ethercat/mailbox.py +339 -0
- oscura/analyzers/protocols/industrial/ethercat/topology.py +166 -0
- oscura/analyzers/protocols/industrial/modbus/__init__.py +31 -0
- oscura/analyzers/protocols/industrial/modbus/analyzer.py +525 -0
- oscura/analyzers/protocols/industrial/modbus/crc.py +79 -0
- oscura/analyzers/protocols/industrial/modbus/functions.py +436 -0
- oscura/analyzers/protocols/industrial/opcua/__init__.py +21 -0
- oscura/analyzers/protocols/industrial/opcua/analyzer.py +552 -0
- oscura/analyzers/protocols/industrial/opcua/datatypes.py +446 -0
- oscura/analyzers/protocols/industrial/opcua/services.py +264 -0
- oscura/analyzers/protocols/industrial/profinet/__init__.py +23 -0
- oscura/analyzers/protocols/industrial/profinet/analyzer.py +441 -0
- oscura/analyzers/protocols/industrial/profinet/dcp.py +263 -0
- oscura/analyzers/protocols/industrial/profinet/ptcp.py +200 -0
- oscura/analyzers/protocols/jtag.py +180 -98
- oscura/analyzers/protocols/lin.py +219 -114
- oscura/analyzers/protocols/manchester.py +4 -4
- oscura/analyzers/protocols/onewire.py +253 -149
- oscura/analyzers/protocols/parallel_bus/__init__.py +20 -0
- oscura/analyzers/protocols/parallel_bus/centronics.py +92 -0
- oscura/analyzers/protocols/parallel_bus/gpib.py +137 -0
- oscura/analyzers/protocols/spi.py +192 -95
- oscura/analyzers/protocols/swd.py +321 -167
- oscura/analyzers/protocols/uart.py +267 -125
- oscura/analyzers/protocols/usb.py +235 -131
- oscura/analyzers/side_channel/power.py +17 -12
- oscura/analyzers/signal/__init__.py +15 -0
- oscura/analyzers/signal/timing_analysis.py +1086 -0
- oscura/analyzers/signal_integrity/__init__.py +4 -1
- oscura/analyzers/signal_integrity/sparams.py +2 -19
- oscura/analyzers/spectral/chunked.py +129 -60
- oscura/analyzers/spectral/chunked_fft.py +300 -94
- oscura/analyzers/spectral/chunked_wavelet.py +100 -80
- oscura/analyzers/statistical/checksum.py +376 -217
- oscura/analyzers/statistical/classification.py +229 -107
- oscura/analyzers/statistical/entropy.py +78 -53
- oscura/analyzers/statistics/correlation.py +407 -211
- oscura/analyzers/statistics/outliers.py +2 -2
- oscura/analyzers/statistics/streaming.py +30 -5
- oscura/analyzers/validation.py +216 -101
- oscura/analyzers/waveform/measurements.py +9 -0
- oscura/analyzers/waveform/measurements_with_uncertainty.py +31 -15
- oscura/analyzers/waveform/spectral.py +500 -228
- oscura/api/__init__.py +31 -5
- oscura/api/dsl/__init__.py +582 -0
- oscura/{dsl → api/dsl}/commands.py +43 -76
- oscura/{dsl → api/dsl}/interpreter.py +26 -51
- oscura/{dsl → api/dsl}/parser.py +107 -77
- oscura/{dsl → api/dsl}/repl.py +2 -2
- oscura/api/dsl.py +1 -1
- oscura/{integrations → api/integrations}/__init__.py +1 -1
- oscura/{integrations → api/integrations}/llm.py +201 -102
- oscura/api/operators.py +3 -3
- oscura/api/optimization.py +144 -30
- oscura/api/rest_server.py +921 -0
- oscura/api/server/__init__.py +17 -0
- oscura/api/server/dashboard.py +850 -0
- oscura/api/server/static/README.md +34 -0
- oscura/api/server/templates/base.html +181 -0
- oscura/api/server/templates/export.html +120 -0
- oscura/api/server/templates/home.html +284 -0
- oscura/api/server/templates/protocols.html +58 -0
- oscura/api/server/templates/reports.html +43 -0
- oscura/api/server/templates/session_detail.html +89 -0
- oscura/api/server/templates/sessions.html +83 -0
- oscura/api/server/templates/waveforms.html +73 -0
- oscura/automotive/__init__.py +8 -1
- oscura/automotive/can/__init__.py +10 -0
- oscura/automotive/can/checksum.py +3 -1
- oscura/automotive/can/dbc_generator.py +590 -0
- oscura/automotive/can/message_wrapper.py +121 -74
- oscura/automotive/can/patterns.py +98 -21
- oscura/automotive/can/session.py +292 -56
- oscura/automotive/can/state_machine.py +6 -3
- oscura/automotive/can/stimulus_response.py +97 -75
- oscura/automotive/dbc/__init__.py +10 -2
- oscura/automotive/dbc/generator.py +84 -56
- oscura/automotive/dbc/parser.py +6 -6
- oscura/automotive/dtc/data.json +2763 -0
- oscura/automotive/dtc/database.py +2 -2
- oscura/automotive/flexray/__init__.py +31 -0
- oscura/automotive/flexray/analyzer.py +504 -0
- oscura/automotive/flexray/crc.py +185 -0
- oscura/automotive/flexray/fibex.py +449 -0
- oscura/automotive/j1939/__init__.py +45 -8
- oscura/automotive/j1939/analyzer.py +605 -0
- oscura/automotive/j1939/spns.py +326 -0
- oscura/automotive/j1939/transport.py +306 -0
- oscura/automotive/lin/__init__.py +47 -0
- oscura/automotive/lin/analyzer.py +612 -0
- oscura/automotive/loaders/blf.py +13 -2
- oscura/automotive/loaders/csv_can.py +143 -72
- oscura/automotive/loaders/dispatcher.py +50 -2
- oscura/automotive/loaders/mdf.py +86 -45
- oscura/automotive/loaders/pcap.py +111 -61
- oscura/automotive/uds/__init__.py +4 -0
- oscura/automotive/uds/analyzer.py +725 -0
- oscura/automotive/uds/decoder.py +140 -58
- oscura/automotive/uds/models.py +7 -1
- oscura/automotive/visualization.py +1 -1
- oscura/cli/analyze.py +348 -0
- oscura/cli/batch.py +142 -122
- oscura/cli/benchmark.py +275 -0
- oscura/cli/characterize.py +137 -82
- oscura/cli/compare.py +224 -131
- oscura/cli/completion.py +250 -0
- oscura/cli/config_cmd.py +361 -0
- oscura/cli/decode.py +164 -87
- oscura/cli/export.py +286 -0
- oscura/cli/main.py +115 -31
- oscura/{onboarding → cli/onboarding}/__init__.py +3 -3
- oscura/{onboarding → cli/onboarding}/help.py +80 -58
- oscura/{onboarding → cli/onboarding}/tutorials.py +97 -72
- oscura/{onboarding → cli/onboarding}/wizard.py +55 -36
- oscura/cli/progress.py +147 -0
- oscura/cli/shell.py +157 -135
- oscura/cli/validate_cmd.py +204 -0
- oscura/cli/visualize.py +158 -0
- oscura/convenience.py +125 -79
- oscura/core/__init__.py +4 -2
- oscura/core/backend_selector.py +3 -3
- oscura/core/cache.py +126 -15
- oscura/core/cancellation.py +1 -1
- oscura/{config → core/config}/__init__.py +20 -11
- oscura/{config → core/config}/defaults.py +1 -1
- oscura/{config → core/config}/loader.py +7 -5
- oscura/{config → core/config}/memory.py +5 -5
- oscura/{config → core/config}/migration.py +1 -1
- oscura/{config → core/config}/pipeline.py +99 -23
- oscura/{config → core/config}/preferences.py +1 -1
- oscura/{config → core/config}/protocol.py +3 -3
- oscura/{config → core/config}/schema.py +426 -272
- oscura/{config → core/config}/settings.py +1 -1
- oscura/{config → core/config}/thresholds.py +195 -153
- oscura/core/correlation.py +5 -6
- oscura/core/cross_domain.py +0 -2
- oscura/core/debug.py +9 -5
- oscura/{extensibility → core/extensibility}/docs.py +158 -70
- oscura/{extensibility → core/extensibility}/extensions.py +160 -76
- oscura/{extensibility → core/extensibility}/logging.py +1 -1
- oscura/{extensibility → core/extensibility}/measurements.py +1 -1
- oscura/{extensibility → core/extensibility}/plugins.py +1 -1
- oscura/{extensibility → core/extensibility}/templates.py +73 -3
- oscura/{extensibility → core/extensibility}/validation.py +1 -1
- oscura/core/gpu_backend.py +11 -7
- oscura/core/log_query.py +101 -11
- oscura/core/logging.py +126 -54
- oscura/core/logging_advanced.py +5 -5
- oscura/core/memory_limits.py +108 -70
- oscura/core/memory_monitor.py +2 -2
- oscura/core/memory_progress.py +7 -7
- oscura/core/memory_warnings.py +1 -1
- oscura/core/numba_backend.py +13 -13
- oscura/{plugins → core/plugins}/__init__.py +9 -9
- oscura/{plugins → core/plugins}/base.py +7 -7
- oscura/{plugins → core/plugins}/cli.py +3 -3
- oscura/{plugins → core/plugins}/discovery.py +186 -106
- oscura/{plugins → core/plugins}/lifecycle.py +1 -1
- oscura/{plugins → core/plugins}/manager.py +7 -7
- oscura/{plugins → core/plugins}/registry.py +3 -3
- oscura/{plugins → core/plugins}/versioning.py +1 -1
- oscura/core/progress.py +16 -1
- oscura/core/provenance.py +8 -2
- oscura/{schemas → core/schemas}/__init__.py +2 -2
- oscura/core/schemas/bus_configuration.json +322 -0
- oscura/core/schemas/device_mapping.json +182 -0
- oscura/core/schemas/packet_format.json +418 -0
- oscura/core/schemas/protocol_definition.json +363 -0
- oscura/core/types.py +4 -0
- oscura/core/uncertainty.py +3 -3
- oscura/correlation/__init__.py +52 -0
- oscura/correlation/multi_protocol.py +811 -0
- oscura/discovery/auto_decoder.py +117 -35
- oscura/discovery/comparison.py +191 -86
- oscura/discovery/quality_validator.py +155 -68
- oscura/discovery/signal_detector.py +196 -79
- oscura/export/__init__.py +18 -20
- oscura/export/kaitai_struct.py +513 -0
- oscura/export/scapy_layer.py +801 -0
- oscura/export/wireshark/README.md +15 -15
- oscura/export/wireshark/generator.py +1 -1
- oscura/export/wireshark/templates/dissector.lua.j2 +2 -2
- oscura/export/wireshark_dissector.py +746 -0
- oscura/guidance/wizard.py +207 -111
- oscura/hardware/__init__.py +19 -0
- oscura/{acquisition → hardware/acquisition}/__init__.py +4 -4
- oscura/{acquisition → hardware/acquisition}/file.py +2 -2
- oscura/{acquisition → hardware/acquisition}/hardware.py +7 -7
- oscura/{acquisition → hardware/acquisition}/saleae.py +15 -12
- oscura/{acquisition → hardware/acquisition}/socketcan.py +1 -1
- oscura/{acquisition → hardware/acquisition}/streaming.py +2 -2
- oscura/{acquisition → hardware/acquisition}/synthetic.py +3 -3
- oscura/{acquisition → hardware/acquisition}/visa.py +33 -11
- oscura/hardware/firmware/__init__.py +29 -0
- oscura/hardware/firmware/pattern_recognition.py +874 -0
- oscura/hardware/hal_detector.py +736 -0
- oscura/hardware/security/__init__.py +37 -0
- oscura/hardware/security/side_channel_detector.py +1126 -0
- oscura/inference/__init__.py +4 -0
- oscura/inference/active_learning/README.md +7 -7
- oscura/inference/active_learning/observation_table.py +4 -1
- oscura/inference/alignment.py +216 -123
- oscura/inference/bayesian.py +113 -33
- oscura/inference/crc_reverse.py +101 -55
- oscura/inference/logic.py +6 -2
- oscura/inference/message_format.py +342 -183
- oscura/inference/protocol.py +95 -44
- oscura/inference/protocol_dsl.py +180 -82
- oscura/inference/signal_intelligence.py +1439 -706
- oscura/inference/spectral.py +99 -57
- oscura/inference/state_machine.py +810 -158
- oscura/inference/stream.py +270 -110
- oscura/iot/__init__.py +34 -0
- oscura/iot/coap/__init__.py +32 -0
- oscura/iot/coap/analyzer.py +668 -0
- oscura/iot/coap/options.py +212 -0
- oscura/iot/lorawan/__init__.py +21 -0
- oscura/iot/lorawan/crypto.py +206 -0
- oscura/iot/lorawan/decoder.py +801 -0
- oscura/iot/lorawan/mac_commands.py +341 -0
- oscura/iot/mqtt/__init__.py +27 -0
- oscura/iot/mqtt/analyzer.py +999 -0
- oscura/iot/mqtt/properties.py +315 -0
- oscura/iot/zigbee/__init__.py +31 -0
- oscura/iot/zigbee/analyzer.py +615 -0
- oscura/iot/zigbee/security.py +153 -0
- oscura/iot/zigbee/zcl.py +349 -0
- oscura/jupyter/display.py +125 -45
- oscura/{exploratory → jupyter/exploratory}/__init__.py +8 -8
- oscura/{exploratory → jupyter/exploratory}/error_recovery.py +298 -141
- oscura/jupyter/exploratory/fuzzy.py +746 -0
- oscura/{exploratory → jupyter/exploratory}/fuzzy_advanced.py +258 -100
- oscura/{exploratory → jupyter/exploratory}/legacy.py +464 -242
- oscura/{exploratory → jupyter/exploratory}/parse.py +167 -145
- oscura/{exploratory → jupyter/exploratory}/recovery.py +119 -87
- oscura/jupyter/exploratory/sync.py +612 -0
- oscura/{exploratory → jupyter/exploratory}/unknown.py +299 -176
- oscura/jupyter/magic.py +4 -4
- oscura/{ui → jupyter/ui}/__init__.py +2 -2
- oscura/{ui → jupyter/ui}/formatters.py +3 -3
- oscura/{ui → jupyter/ui}/progressive_display.py +153 -82
- oscura/loaders/__init__.py +171 -63
- oscura/loaders/binary.py +88 -1
- oscura/loaders/chipwhisperer.py +153 -137
- oscura/loaders/configurable.py +208 -86
- oscura/loaders/csv_loader.py +458 -215
- oscura/loaders/hdf5_loader.py +278 -119
- oscura/loaders/lazy.py +87 -54
- oscura/loaders/mmap_loader.py +1 -1
- oscura/loaders/numpy_loader.py +253 -116
- oscura/loaders/pcap.py +226 -151
- oscura/loaders/rigol.py +110 -49
- oscura/loaders/sigrok.py +201 -78
- oscura/loaders/tdms.py +81 -58
- oscura/loaders/tektronix.py +291 -174
- oscura/loaders/touchstone.py +182 -87
- oscura/loaders/vcd.py +215 -117
- oscura/loaders/wav.py +155 -68
- oscura/reporting/__init__.py +9 -7
- oscura/reporting/analyze.py +352 -146
- oscura/reporting/argument_preparer.py +69 -14
- oscura/reporting/auto_report.py +97 -61
- oscura/reporting/batch.py +131 -58
- oscura/reporting/chart_selection.py +57 -45
- oscura/reporting/comparison.py +63 -17
- oscura/reporting/content/executive.py +76 -24
- oscura/reporting/core_formats/multi_format.py +11 -8
- oscura/reporting/engine.py +312 -158
- oscura/reporting/enhanced_reports.py +949 -0
- oscura/reporting/export.py +86 -43
- oscura/reporting/formatting/numbers.py +69 -42
- oscura/reporting/html.py +139 -58
- oscura/reporting/index.py +137 -65
- oscura/reporting/output.py +158 -67
- oscura/reporting/pdf.py +67 -102
- oscura/reporting/plots.py +191 -112
- oscura/reporting/sections.py +88 -47
- oscura/reporting/standards.py +104 -61
- oscura/reporting/summary_generator.py +75 -55
- oscura/reporting/tables.py +138 -54
- oscura/reporting/templates/enhanced/protocol_re.html +525 -0
- oscura/reporting/templates/index.md +13 -13
- oscura/sessions/__init__.py +14 -23
- oscura/sessions/base.py +3 -3
- oscura/sessions/blackbox.py +106 -10
- oscura/sessions/generic.py +2 -2
- oscura/sessions/legacy.py +783 -0
- oscura/side_channel/__init__.py +63 -0
- oscura/side_channel/dpa.py +1025 -0
- oscura/utils/__init__.py +15 -1
- oscura/utils/autodetect.py +1 -5
- oscura/utils/bitwise.py +118 -0
- oscura/{builders → utils/builders}/__init__.py +1 -1
- oscura/{comparison → utils/comparison}/__init__.py +6 -6
- oscura/{comparison → utils/comparison}/compare.py +202 -101
- oscura/{comparison → utils/comparison}/golden.py +83 -63
- oscura/{comparison → utils/comparison}/limits.py +313 -89
- oscura/{comparison → utils/comparison}/mask.py +151 -45
- oscura/{comparison → utils/comparison}/trace_diff.py +1 -1
- oscura/{comparison → utils/comparison}/visualization.py +147 -89
- oscura/{component → utils/component}/__init__.py +3 -3
- oscura/{component → utils/component}/impedance.py +122 -58
- oscura/{component → utils/component}/reactive.py +165 -168
- oscura/{component → utils/component}/transmission_line.py +3 -3
- oscura/{filtering → utils/filtering}/__init__.py +6 -6
- oscura/{filtering → utils/filtering}/base.py +1 -1
- oscura/{filtering → utils/filtering}/convenience.py +2 -2
- oscura/{filtering → utils/filtering}/design.py +169 -93
- oscura/{filtering → utils/filtering}/filters.py +2 -2
- oscura/{filtering → utils/filtering}/introspection.py +2 -2
- oscura/utils/geometry.py +31 -0
- oscura/utils/imports.py +184 -0
- oscura/utils/lazy.py +1 -1
- oscura/{math → utils/math}/__init__.py +2 -2
- oscura/{math → utils/math}/arithmetic.py +114 -48
- oscura/{math → utils/math}/interpolation.py +139 -106
- oscura/utils/memory.py +129 -66
- oscura/utils/memory_advanced.py +92 -9
- oscura/utils/memory_extensions.py +10 -8
- oscura/{optimization → utils/optimization}/__init__.py +1 -1
- oscura/{optimization → utils/optimization}/search.py +2 -2
- oscura/utils/performance/__init__.py +58 -0
- oscura/utils/performance/caching.py +889 -0
- oscura/utils/performance/lsh_clustering.py +333 -0
- oscura/utils/performance/memory_optimizer.py +699 -0
- oscura/utils/performance/optimizations.py +675 -0
- oscura/utils/performance/parallel.py +654 -0
- oscura/utils/performance/profiling.py +661 -0
- oscura/{pipeline → utils/pipeline}/base.py +1 -1
- oscura/{pipeline → utils/pipeline}/composition.py +11 -3
- oscura/{pipeline → utils/pipeline}/parallel.py +3 -2
- oscura/{pipeline → utils/pipeline}/pipeline.py +1 -1
- oscura/{pipeline → utils/pipeline}/reverse_engineering.py +412 -221
- oscura/{search → utils/search}/__init__.py +3 -3
- oscura/{search → utils/search}/anomaly.py +188 -58
- oscura/utils/search/context.py +294 -0
- oscura/{search → utils/search}/pattern.py +138 -10
- oscura/utils/serial.py +51 -0
- oscura/utils/storage/__init__.py +61 -0
- oscura/utils/storage/database.py +1166 -0
- oscura/{streaming → utils/streaming}/chunked.py +302 -143
- oscura/{streaming → utils/streaming}/progressive.py +1 -1
- oscura/{streaming → utils/streaming}/realtime.py +3 -2
- oscura/{triggering → utils/triggering}/__init__.py +6 -6
- oscura/{triggering → utils/triggering}/base.py +6 -6
- oscura/{triggering → utils/triggering}/edge.py +2 -2
- oscura/{triggering → utils/triggering}/pattern.py +2 -2
- oscura/{triggering → utils/triggering}/pulse.py +115 -74
- oscura/{triggering → utils/triggering}/window.py +2 -2
- oscura/utils/validation.py +32 -0
- oscura/validation/__init__.py +121 -0
- oscura/{compliance → validation/compliance}/__init__.py +5 -5
- oscura/{compliance → validation/compliance}/advanced.py +5 -5
- oscura/{compliance → validation/compliance}/masks.py +1 -1
- oscura/{compliance → validation/compliance}/reporting.py +127 -53
- oscura/{compliance → validation/compliance}/testing.py +114 -52
- oscura/validation/compliance_tests.py +915 -0
- oscura/validation/fuzzer.py +990 -0
- oscura/validation/grammar_tests.py +596 -0
- oscura/validation/grammar_validator.py +904 -0
- oscura/validation/hil_testing.py +977 -0
- oscura/{quality → validation/quality}/__init__.py +4 -4
- oscura/{quality → validation/quality}/ensemble.py +251 -171
- oscura/{quality → validation/quality}/explainer.py +3 -3
- oscura/{quality → validation/quality}/scoring.py +1 -1
- oscura/{quality → validation/quality}/warnings.py +4 -4
- oscura/validation/regression_suite.py +808 -0
- oscura/validation/replay.py +788 -0
- oscura/{testing → validation/testing}/__init__.py +2 -2
- oscura/{testing → validation/testing}/synthetic.py +5 -5
- oscura/visualization/__init__.py +9 -0
- oscura/visualization/accessibility.py +1 -1
- oscura/visualization/annotations.py +64 -67
- oscura/visualization/colors.py +7 -7
- oscura/visualization/digital.py +180 -81
- oscura/visualization/eye.py +236 -85
- oscura/visualization/interactive.py +320 -143
- oscura/visualization/jitter.py +587 -247
- oscura/visualization/layout.py +169 -134
- oscura/visualization/optimization.py +103 -52
- oscura/visualization/palettes.py +1 -1
- oscura/visualization/power.py +427 -211
- oscura/visualization/power_extended.py +626 -297
- oscura/visualization/presets.py +2 -0
- oscura/visualization/protocols.py +495 -181
- oscura/visualization/render.py +79 -63
- oscura/visualization/reverse_engineering.py +171 -124
- oscura/visualization/signal_integrity.py +460 -279
- oscura/visualization/specialized.py +190 -100
- oscura/visualization/spectral.py +670 -255
- oscura/visualization/thumbnails.py +166 -137
- oscura/visualization/waveform.py +150 -63
- oscura/workflows/__init__.py +3 -0
- oscura/{batch → workflows/batch}/__init__.py +5 -5
- oscura/{batch → workflows/batch}/advanced.py +150 -75
- oscura/workflows/batch/aggregate.py +531 -0
- oscura/workflows/batch/analyze.py +236 -0
- oscura/{batch → workflows/batch}/logging.py +2 -2
- oscura/{batch → workflows/batch}/metrics.py +1 -1
- oscura/workflows/complete_re.py +1144 -0
- oscura/workflows/compliance.py +44 -54
- oscura/workflows/digital.py +197 -51
- oscura/workflows/legacy/__init__.py +12 -0
- oscura/{workflow → workflows/legacy}/dag.py +4 -1
- oscura/workflows/multi_trace.py +9 -9
- oscura/workflows/power.py +42 -62
- oscura/workflows/protocol.py +82 -49
- oscura/workflows/reverse_engineering.py +351 -150
- oscura/workflows/signal_integrity.py +157 -82
- oscura-0.6.0.dist-info/METADATA +643 -0
- oscura-0.6.0.dist-info/RECORD +590 -0
- oscura/analyzers/digital/ic_database.py +0 -498
- oscura/analyzers/digital/timing_paths.py +0 -339
- oscura/analyzers/digital/vintage.py +0 -377
- oscura/analyzers/digital/vintage_result.py +0 -148
- oscura/analyzers/protocols/parallel_bus.py +0 -449
- oscura/batch/aggregate.py +0 -300
- oscura/batch/analyze.py +0 -139
- oscura/dsl/__init__.py +0 -73
- oscura/exceptions.py +0 -59
- oscura/exploratory/fuzzy.py +0 -513
- oscura/exploratory/sync.py +0 -384
- oscura/export/wavedrom.py +0 -430
- oscura/exporters/__init__.py +0 -94
- oscura/exporters/csv.py +0 -303
- oscura/exporters/exporters.py +0 -44
- oscura/exporters/hdf5.py +0 -217
- oscura/exporters/html_export.py +0 -701
- oscura/exporters/json_export.py +0 -338
- oscura/exporters/markdown_export.py +0 -367
- oscura/exporters/matlab_export.py +0 -354
- oscura/exporters/npz_export.py +0 -219
- oscura/exporters/spice_export.py +0 -210
- oscura/exporters/vintage_logic_csv.py +0 -247
- oscura/reporting/vintage_logic_report.py +0 -523
- oscura/search/context.py +0 -149
- oscura/session/__init__.py +0 -34
- oscura/session/annotations.py +0 -289
- oscura/session/history.py +0 -313
- oscura/session/session.py +0 -520
- oscura/visualization/digital_advanced.py +0 -718
- oscura/visualization/figure_manager.py +0 -156
- oscura/workflow/__init__.py +0 -13
- oscura-0.5.0.dist-info/METADATA +0 -407
- oscura-0.5.0.dist-info/RECORD +0 -486
- /oscura/core/{config.py → config/legacy.py} +0 -0
- /oscura/{extensibility → core/extensibility}/__init__.py +0 -0
- /oscura/{extensibility → core/extensibility}/registry.py +0 -0
- /oscura/{plugins → core/plugins}/isolation.py +0 -0
- /oscura/{builders → utils/builders}/signal_builder.py +0 -0
- /oscura/{optimization → utils/optimization}/parallel.py +0 -0
- /oscura/{pipeline → utils/pipeline}/__init__.py +0 -0
- /oscura/{streaming → utils/streaming}/__init__.py +0 -0
- {oscura-0.5.0.dist-info → oscura-0.6.0.dist-info}/WHEEL +0 -0
- {oscura-0.5.0.dist-info → oscura-0.6.0.dist-info}/entry_points.txt +0 -0
- {oscura-0.5.0.dist-info → oscura-0.6.0.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,2763 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"format": "dtc-database",
|
|
4
|
+
"metadata": {
|
|
5
|
+
"total_codes": 210,
|
|
6
|
+
"categories": {
|
|
7
|
+
"Powertrain": 105,
|
|
8
|
+
"Chassis": 41,
|
|
9
|
+
"Body": 40,
|
|
10
|
+
"Network": 24
|
|
11
|
+
},
|
|
12
|
+
"standards": ["SAE J2012", "ISO 14229"],
|
|
13
|
+
"description": "Diagnostic Trouble Code database for automotive diagnostics"
|
|
14
|
+
},
|
|
15
|
+
"dtcs": {
|
|
16
|
+
"P0001": {
|
|
17
|
+
"code": "P0001",
|
|
18
|
+
"description": "Fuel Volume Regulator Control Circuit/Open",
|
|
19
|
+
"category": "Powertrain",
|
|
20
|
+
"severity": "Medium",
|
|
21
|
+
"system": "Fuel System",
|
|
22
|
+
"possible_causes": [
|
|
23
|
+
"Faulty fuel volume regulator",
|
|
24
|
+
"Wiring harness open or shorted",
|
|
25
|
+
"Poor electrical connection",
|
|
26
|
+
"Faulty fuel pump control module"
|
|
27
|
+
]
|
|
28
|
+
},
|
|
29
|
+
"P0002": {
|
|
30
|
+
"code": "P0002",
|
|
31
|
+
"description": "Fuel Volume Regulator Control Circuit Range/Performance",
|
|
32
|
+
"category": "Powertrain",
|
|
33
|
+
"severity": "Medium",
|
|
34
|
+
"system": "Fuel System",
|
|
35
|
+
"possible_causes": [
|
|
36
|
+
"Fuel volume regulator stuck",
|
|
37
|
+
"Fuel pressure sensor malfunction",
|
|
38
|
+
"Fuel pump performance issue",
|
|
39
|
+
"Electrical circuit resistance"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
"P0010": {
|
|
43
|
+
"code": "P0010",
|
|
44
|
+
"description": "Intake Camshaft Position Actuator Circuit/Open (Bank 1)",
|
|
45
|
+
"category": "Powertrain",
|
|
46
|
+
"severity": "Medium",
|
|
47
|
+
"system": "Variable Valve Timing",
|
|
48
|
+
"possible_causes": [
|
|
49
|
+
"Faulty VVT actuator solenoid",
|
|
50
|
+
"Engine oil level low or dirty",
|
|
51
|
+
"Wiring harness problem",
|
|
52
|
+
"ECM fault"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"P0011": {
|
|
56
|
+
"code": "P0011",
|
|
57
|
+
"description": "Intake Camshaft Position Timing Over-Advanced (Bank 1)",
|
|
58
|
+
"category": "Powertrain",
|
|
59
|
+
"severity": "Medium",
|
|
60
|
+
"system": "Variable Valve Timing",
|
|
61
|
+
"possible_causes": [
|
|
62
|
+
"Camshaft position sensor malfunction",
|
|
63
|
+
"Engine oil viscosity too low",
|
|
64
|
+
"VVT actuator stuck in advanced position",
|
|
65
|
+
"Timing chain stretched"
|
|
66
|
+
]
|
|
67
|
+
},
|
|
68
|
+
"P0016": {
|
|
69
|
+
"code": "P0016",
|
|
70
|
+
"description": "Crankshaft/Camshaft Position Correlation (Bank 1 Sensor A)",
|
|
71
|
+
"category": "Powertrain",
|
|
72
|
+
"severity": "High",
|
|
73
|
+
"system": "Engine Timing",
|
|
74
|
+
"possible_causes": [
|
|
75
|
+
"Timing chain/belt jumped or broken",
|
|
76
|
+
"Crankshaft position sensor fault",
|
|
77
|
+
"Camshaft position sensor fault",
|
|
78
|
+
"Engine mechanical problem"
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
"P0101": {
|
|
82
|
+
"code": "P0101",
|
|
83
|
+
"description": "Mass Air Flow (MAF) Circuit Range/Performance",
|
|
84
|
+
"category": "Powertrain",
|
|
85
|
+
"severity": "Medium",
|
|
86
|
+
"system": "Air Metering",
|
|
87
|
+
"possible_causes": [
|
|
88
|
+
"Dirty or contaminated MAF sensor",
|
|
89
|
+
"Air leak after MAF sensor",
|
|
90
|
+
"Faulty MAF sensor",
|
|
91
|
+
"Exhaust leak"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
"P0102": {
|
|
95
|
+
"code": "P0102",
|
|
96
|
+
"description": "Mass Air Flow (MAF) Circuit Low Input",
|
|
97
|
+
"category": "Powertrain",
|
|
98
|
+
"severity": "Medium",
|
|
99
|
+
"system": "Air Metering",
|
|
100
|
+
"possible_causes": [
|
|
101
|
+
"Faulty MAF sensor",
|
|
102
|
+
"MAF sensor circuit shorted to ground",
|
|
103
|
+
"Intake air leak",
|
|
104
|
+
"Poor electrical connection"
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"P0103": {
|
|
108
|
+
"code": "P0103",
|
|
109
|
+
"description": "Mass Air Flow (MAF) Circuit High Input",
|
|
110
|
+
"category": "Powertrain",
|
|
111
|
+
"severity": "Medium",
|
|
112
|
+
"system": "Air Metering",
|
|
113
|
+
"possible_causes": [
|
|
114
|
+
"Faulty MAF sensor",
|
|
115
|
+
"MAF sensor circuit shorted to voltage",
|
|
116
|
+
"Wiring harness fault",
|
|
117
|
+
"ECM problem"
|
|
118
|
+
]
|
|
119
|
+
},
|
|
120
|
+
"P0106": {
|
|
121
|
+
"code": "P0106",
|
|
122
|
+
"description": "Manifold Absolute Pressure (MAP) Circuit Range/Performance",
|
|
123
|
+
"category": "Powertrain",
|
|
124
|
+
"severity": "Medium",
|
|
125
|
+
"system": "Air Metering",
|
|
126
|
+
"possible_causes": [
|
|
127
|
+
"Faulty MAP sensor",
|
|
128
|
+
"Vacuum leak",
|
|
129
|
+
"MAP sensor hose disconnected",
|
|
130
|
+
"Intake manifold gasket leak"
|
|
131
|
+
]
|
|
132
|
+
},
|
|
133
|
+
"P0107": {
|
|
134
|
+
"code": "P0107",
|
|
135
|
+
"description": "Manifold Absolute Pressure (MAP) Circuit Low Input",
|
|
136
|
+
"category": "Powertrain",
|
|
137
|
+
"severity": "Medium",
|
|
138
|
+
"system": "Air Metering",
|
|
139
|
+
"possible_causes": [
|
|
140
|
+
"MAP sensor circuit shorted to ground",
|
|
141
|
+
"Faulty MAP sensor",
|
|
142
|
+
"Wiring harness fault",
|
|
143
|
+
"Poor electrical connection"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"P0108": {
|
|
147
|
+
"code": "P0108",
|
|
148
|
+
"description": "Manifold Absolute Pressure (MAP) Circuit High Input",
|
|
149
|
+
"category": "Powertrain",
|
|
150
|
+
"severity": "Medium",
|
|
151
|
+
"system": "Air Metering",
|
|
152
|
+
"possible_causes": [
|
|
153
|
+
"MAP sensor circuit shorted to voltage",
|
|
154
|
+
"Faulty MAP sensor",
|
|
155
|
+
"Blocked MAP sensor hose",
|
|
156
|
+
"Wiring harness fault"
|
|
157
|
+
]
|
|
158
|
+
},
|
|
159
|
+
"P0110": {
|
|
160
|
+
"code": "P0110",
|
|
161
|
+
"description": "Intake Air Temperature (IAT) Circuit Malfunction",
|
|
162
|
+
"category": "Powertrain",
|
|
163
|
+
"severity": "Low",
|
|
164
|
+
"system": "Air Metering",
|
|
165
|
+
"possible_causes": [
|
|
166
|
+
"Faulty IAT sensor",
|
|
167
|
+
"IAT sensor circuit open or short",
|
|
168
|
+
"Poor electrical connection",
|
|
169
|
+
"ECM fault"
|
|
170
|
+
]
|
|
171
|
+
},
|
|
172
|
+
"P0115": {
|
|
173
|
+
"code": "P0115",
|
|
174
|
+
"description": "Engine Coolant Temperature (ECT) Circuit Malfunction",
|
|
175
|
+
"category": "Powertrain",
|
|
176
|
+
"severity": "Medium",
|
|
177
|
+
"system": "Engine Temperature",
|
|
178
|
+
"possible_causes": [
|
|
179
|
+
"Faulty coolant temperature sensor",
|
|
180
|
+
"Wiring harness open or shorted",
|
|
181
|
+
"Coolant level low",
|
|
182
|
+
"Thermostat stuck open"
|
|
183
|
+
]
|
|
184
|
+
},
|
|
185
|
+
"P0116": {
|
|
186
|
+
"code": "P0116",
|
|
187
|
+
"description": "Engine Coolant Temperature Circuit Range/Performance",
|
|
188
|
+
"category": "Powertrain",
|
|
189
|
+
"severity": "Medium",
|
|
190
|
+
"system": "Engine Temperature",
|
|
191
|
+
"possible_causes": [
|
|
192
|
+
"Coolant temperature sensor drift",
|
|
193
|
+
"Thermostat malfunction",
|
|
194
|
+
"Coolant flow restriction",
|
|
195
|
+
"ECM problem"
|
|
196
|
+
]
|
|
197
|
+
},
|
|
198
|
+
"P0117": {
|
|
199
|
+
"code": "P0117",
|
|
200
|
+
"description": "Engine Coolant Temperature Circuit Low Input",
|
|
201
|
+
"category": "Powertrain",
|
|
202
|
+
"severity": "Medium",
|
|
203
|
+
"system": "Engine Temperature",
|
|
204
|
+
"possible_causes": [
|
|
205
|
+
"Coolant sensor circuit shorted to ground",
|
|
206
|
+
"Faulty coolant temperature sensor",
|
|
207
|
+
"Wiring harness fault",
|
|
208
|
+
"Poor electrical connection"
|
|
209
|
+
]
|
|
210
|
+
},
|
|
211
|
+
"P0118": {
|
|
212
|
+
"code": "P0118",
|
|
213
|
+
"description": "Engine Coolant Temperature Circuit High Input",
|
|
214
|
+
"category": "Powertrain",
|
|
215
|
+
"severity": "Medium",
|
|
216
|
+
"system": "Engine Temperature",
|
|
217
|
+
"possible_causes": [
|
|
218
|
+
"Coolant sensor circuit open or shorted to voltage",
|
|
219
|
+
"Faulty coolant temperature sensor",
|
|
220
|
+
"Wiring harness fault",
|
|
221
|
+
"Engine overheating"
|
|
222
|
+
]
|
|
223
|
+
},
|
|
224
|
+
"P0120": {
|
|
225
|
+
"code": "P0120",
|
|
226
|
+
"description": "Throttle Position Sensor/Switch Circuit Malfunction",
|
|
227
|
+
"category": "Powertrain",
|
|
228
|
+
"severity": "High",
|
|
229
|
+
"system": "Throttle Control",
|
|
230
|
+
"possible_causes": [
|
|
231
|
+
"Faulty throttle position sensor",
|
|
232
|
+
"Wiring harness problem",
|
|
233
|
+
"Throttle body malfunction",
|
|
234
|
+
"ECM fault"
|
|
235
|
+
]
|
|
236
|
+
},
|
|
237
|
+
"P0121": {
|
|
238
|
+
"code": "P0121",
|
|
239
|
+
"description": "Throttle Position Sensor Circuit Range/Performance",
|
|
240
|
+
"category": "Powertrain",
|
|
241
|
+
"severity": "High",
|
|
242
|
+
"system": "Throttle Control",
|
|
243
|
+
"possible_causes": [
|
|
244
|
+
"TPS sensor out of range",
|
|
245
|
+
"Throttle body dirty or stuck",
|
|
246
|
+
"Accelerator pedal position sensor fault",
|
|
247
|
+
"Wiring problem"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
250
|
+
"P0122": {
|
|
251
|
+
"code": "P0122",
|
|
252
|
+
"description": "Throttle Position Sensor Circuit Low Input",
|
|
253
|
+
"category": "Powertrain",
|
|
254
|
+
"severity": "High",
|
|
255
|
+
"system": "Throttle Control",
|
|
256
|
+
"possible_causes": [
|
|
257
|
+
"TPS circuit shorted to ground",
|
|
258
|
+
"Faulty TPS sensor",
|
|
259
|
+
"Wiring harness fault",
|
|
260
|
+
"Poor electrical connection"
|
|
261
|
+
]
|
|
262
|
+
},
|
|
263
|
+
"P0123": {
|
|
264
|
+
"code": "P0123",
|
|
265
|
+
"description": "Throttle Position Sensor Circuit High Input",
|
|
266
|
+
"category": "Powertrain",
|
|
267
|
+
"severity": "High",
|
|
268
|
+
"system": "Throttle Control",
|
|
269
|
+
"possible_causes": [
|
|
270
|
+
"TPS circuit shorted to voltage",
|
|
271
|
+
"Faulty TPS sensor",
|
|
272
|
+
"Wiring harness open",
|
|
273
|
+
"ECM problem"
|
|
274
|
+
]
|
|
275
|
+
},
|
|
276
|
+
"P0125": {
|
|
277
|
+
"code": "P0125",
|
|
278
|
+
"description": "Insufficient Coolant Temperature for Closed Loop Fuel Control",
|
|
279
|
+
"category": "Powertrain",
|
|
280
|
+
"severity": "Low",
|
|
281
|
+
"system": "Engine Temperature",
|
|
282
|
+
"possible_causes": [
|
|
283
|
+
"Thermostat stuck open",
|
|
284
|
+
"Coolant temperature sensor fault",
|
|
285
|
+
"Low coolant level",
|
|
286
|
+
"Engine not reaching operating temperature"
|
|
287
|
+
]
|
|
288
|
+
},
|
|
289
|
+
"P0128": {
|
|
290
|
+
"code": "P0128",
|
|
291
|
+
"description": "Coolant Thermostat (Coolant Temperature Below Thermostat Regulating Temperature)",
|
|
292
|
+
"category": "Powertrain",
|
|
293
|
+
"severity": "Low",
|
|
294
|
+
"system": "Engine Temperature",
|
|
295
|
+
"possible_causes": [
|
|
296
|
+
"Thermostat stuck open",
|
|
297
|
+
"Coolant temperature sensor fault",
|
|
298
|
+
"Low ambient temperature operation",
|
|
299
|
+
"Cooling fan stuck on"
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
"P0130": {
|
|
303
|
+
"code": "P0130",
|
|
304
|
+
"description": "O2 Sensor Circuit Malfunction (Bank 1 Sensor 1)",
|
|
305
|
+
"category": "Powertrain",
|
|
306
|
+
"severity": "Medium",
|
|
307
|
+
"system": "Oxygen Sensors",
|
|
308
|
+
"possible_causes": [
|
|
309
|
+
"Faulty oxygen sensor",
|
|
310
|
+
"Oxygen sensor heater circuit fault",
|
|
311
|
+
"Wiring harness problem",
|
|
312
|
+
"Exhaust leak near sensor"
|
|
313
|
+
]
|
|
314
|
+
},
|
|
315
|
+
"P0131": {
|
|
316
|
+
"code": "P0131",
|
|
317
|
+
"description": "O2 Sensor Circuit Low Voltage (Bank 1 Sensor 1)",
|
|
318
|
+
"category": "Powertrain",
|
|
319
|
+
"severity": "Medium",
|
|
320
|
+
"system": "Oxygen Sensors",
|
|
321
|
+
"possible_causes": [
|
|
322
|
+
"Oxygen sensor contaminated",
|
|
323
|
+
"Exhaust leak near sensor",
|
|
324
|
+
"Oxygen sensor circuit shorted to ground",
|
|
325
|
+
"Faulty oxygen sensor"
|
|
326
|
+
]
|
|
327
|
+
},
|
|
328
|
+
"P0132": {
|
|
329
|
+
"code": "P0132",
|
|
330
|
+
"description": "O2 Sensor Circuit High Voltage (Bank 1 Sensor 1)",
|
|
331
|
+
"category": "Powertrain",
|
|
332
|
+
"severity": "Medium",
|
|
333
|
+
"system": "Oxygen Sensors",
|
|
334
|
+
"possible_causes": [
|
|
335
|
+
"Oxygen sensor circuit shorted to voltage",
|
|
336
|
+
"Fuel pressure too high",
|
|
337
|
+
"Faulty oxygen sensor",
|
|
338
|
+
"Wiring harness fault"
|
|
339
|
+
]
|
|
340
|
+
},
|
|
341
|
+
"P0133": {
|
|
342
|
+
"code": "P0133",
|
|
343
|
+
"description": "O2 Sensor Circuit Slow Response (Bank 1 Sensor 1)",
|
|
344
|
+
"category": "Powertrain",
|
|
345
|
+
"severity": "Medium",
|
|
346
|
+
"system": "Oxygen Sensors",
|
|
347
|
+
"possible_causes": [
|
|
348
|
+
"Oxygen sensor aged or contaminated",
|
|
349
|
+
"Exhaust leak",
|
|
350
|
+
"Engine vacuum leak",
|
|
351
|
+
"Faulty MAF sensor"
|
|
352
|
+
]
|
|
353
|
+
},
|
|
354
|
+
"P0134": {
|
|
355
|
+
"code": "P0134",
|
|
356
|
+
"description": "O2 Sensor Circuit No Activity Detected (Bank 1 Sensor 1)",
|
|
357
|
+
"category": "Powertrain",
|
|
358
|
+
"severity": "Medium",
|
|
359
|
+
"system": "Oxygen Sensors",
|
|
360
|
+
"possible_causes": [
|
|
361
|
+
"Faulty oxygen sensor",
|
|
362
|
+
"Oxygen sensor heater circuit fault",
|
|
363
|
+
"Wiring harness open circuit",
|
|
364
|
+
"Poor electrical connection"
|
|
365
|
+
]
|
|
366
|
+
},
|
|
367
|
+
"P0135": {
|
|
368
|
+
"code": "P0135",
|
|
369
|
+
"description": "O2 Sensor Heater Circuit Malfunction (Bank 1 Sensor 1)",
|
|
370
|
+
"category": "Powertrain",
|
|
371
|
+
"severity": "Medium",
|
|
372
|
+
"system": "Oxygen Sensors",
|
|
373
|
+
"possible_causes": [
|
|
374
|
+
"Faulty oxygen sensor heater",
|
|
375
|
+
"Heater circuit fuse blown",
|
|
376
|
+
"Wiring harness open or shorted",
|
|
377
|
+
"ECM fault"
|
|
378
|
+
]
|
|
379
|
+
},
|
|
380
|
+
"P0136": {
|
|
381
|
+
"code": "P0136",
|
|
382
|
+
"description": "O2 Sensor Circuit Malfunction (Bank 1 Sensor 2)",
|
|
383
|
+
"category": "Powertrain",
|
|
384
|
+
"severity": "Medium",
|
|
385
|
+
"system": "Oxygen Sensors",
|
|
386
|
+
"possible_causes": [
|
|
387
|
+
"Faulty oxygen sensor",
|
|
388
|
+
"Oxygen sensor heater circuit fault",
|
|
389
|
+
"Wiring harness problem",
|
|
390
|
+
"Exhaust leak near sensor"
|
|
391
|
+
]
|
|
392
|
+
},
|
|
393
|
+
"P0137": {
|
|
394
|
+
"code": "P0137",
|
|
395
|
+
"description": "O2 Sensor Circuit Low Voltage (Bank 1 Sensor 2)",
|
|
396
|
+
"category": "Powertrain",
|
|
397
|
+
"severity": "Medium",
|
|
398
|
+
"system": "Oxygen Sensors",
|
|
399
|
+
"possible_causes": [
|
|
400
|
+
"Oxygen sensor circuit shorted to ground",
|
|
401
|
+
"Faulty catalytic converter",
|
|
402
|
+
"Exhaust leak",
|
|
403
|
+
"Faulty oxygen sensor"
|
|
404
|
+
]
|
|
405
|
+
},
|
|
406
|
+
"P0138": {
|
|
407
|
+
"code": "P0138",
|
|
408
|
+
"description": "O2 Sensor Circuit High Voltage (Bank 1 Sensor 2)",
|
|
409
|
+
"category": "Powertrain",
|
|
410
|
+
"severity": "Medium",
|
|
411
|
+
"system": "Oxygen Sensors",
|
|
412
|
+
"possible_causes": [
|
|
413
|
+
"Oxygen sensor circuit shorted to voltage",
|
|
414
|
+
"Faulty catalytic converter",
|
|
415
|
+
"Fuel pressure too high",
|
|
416
|
+
"Faulty oxygen sensor"
|
|
417
|
+
]
|
|
418
|
+
},
|
|
419
|
+
"P0140": {
|
|
420
|
+
"code": "P0140",
|
|
421
|
+
"description": "O2 Sensor Circuit No Activity Detected (Bank 1 Sensor 2)",
|
|
422
|
+
"category": "Powertrain",
|
|
423
|
+
"severity": "Medium",
|
|
424
|
+
"system": "Oxygen Sensors",
|
|
425
|
+
"possible_causes": [
|
|
426
|
+
"Faulty oxygen sensor",
|
|
427
|
+
"Oxygen sensor heater circuit fault",
|
|
428
|
+
"Wiring harness open circuit",
|
|
429
|
+
"Poor electrical connection"
|
|
430
|
+
]
|
|
431
|
+
},
|
|
432
|
+
"P0141": {
|
|
433
|
+
"code": "P0141",
|
|
434
|
+
"description": "O2 Sensor Heater Circuit Malfunction (Bank 1 Sensor 2)",
|
|
435
|
+
"category": "Powertrain",
|
|
436
|
+
"severity": "Medium",
|
|
437
|
+
"system": "Oxygen Sensors",
|
|
438
|
+
"possible_causes": [
|
|
439
|
+
"Faulty oxygen sensor heater",
|
|
440
|
+
"Heater circuit fuse blown",
|
|
441
|
+
"Wiring harness open or shorted",
|
|
442
|
+
"ECM fault"
|
|
443
|
+
]
|
|
444
|
+
},
|
|
445
|
+
"P0150": {
|
|
446
|
+
"code": "P0150",
|
|
447
|
+
"description": "O2 Sensor Circuit Malfunction (Bank 2 Sensor 1)",
|
|
448
|
+
"category": "Powertrain",
|
|
449
|
+
"severity": "Medium",
|
|
450
|
+
"system": "Oxygen Sensors",
|
|
451
|
+
"possible_causes": [
|
|
452
|
+
"Faulty oxygen sensor",
|
|
453
|
+
"Oxygen sensor heater circuit fault",
|
|
454
|
+
"Wiring harness problem",
|
|
455
|
+
"Exhaust leak near sensor"
|
|
456
|
+
]
|
|
457
|
+
},
|
|
458
|
+
"P0151": {
|
|
459
|
+
"code": "P0151",
|
|
460
|
+
"description": "O2 Sensor Circuit Low Voltage (Bank 2 Sensor 1)",
|
|
461
|
+
"category": "Powertrain",
|
|
462
|
+
"severity": "Medium",
|
|
463
|
+
"system": "Oxygen Sensors",
|
|
464
|
+
"possible_causes": [
|
|
465
|
+
"Oxygen sensor contaminated",
|
|
466
|
+
"Exhaust leak near sensor",
|
|
467
|
+
"Oxygen sensor circuit shorted to ground",
|
|
468
|
+
"Faulty oxygen sensor"
|
|
469
|
+
]
|
|
470
|
+
},
|
|
471
|
+
"P0152": {
|
|
472
|
+
"code": "P0152",
|
|
473
|
+
"description": "O2 Sensor Circuit High Voltage (Bank 2 Sensor 1)",
|
|
474
|
+
"category": "Powertrain",
|
|
475
|
+
"severity": "Medium",
|
|
476
|
+
"system": "Oxygen Sensors",
|
|
477
|
+
"possible_causes": [
|
|
478
|
+
"Oxygen sensor circuit shorted to voltage",
|
|
479
|
+
"Fuel pressure too high",
|
|
480
|
+
"Faulty oxygen sensor",
|
|
481
|
+
"Wiring harness fault"
|
|
482
|
+
]
|
|
483
|
+
},
|
|
484
|
+
"P0171": {
|
|
485
|
+
"code": "P0171",
|
|
486
|
+
"description": "System Too Lean (Bank 1)",
|
|
487
|
+
"category": "Powertrain",
|
|
488
|
+
"severity": "Medium",
|
|
489
|
+
"system": "Fuel Trim",
|
|
490
|
+
"possible_causes": [
|
|
491
|
+
"Vacuum leak",
|
|
492
|
+
"MAF sensor dirty or faulty",
|
|
493
|
+
"Fuel pressure low",
|
|
494
|
+
"Injector clogged",
|
|
495
|
+
"Oxygen sensor fault"
|
|
496
|
+
]
|
|
497
|
+
},
|
|
498
|
+
"P0172": {
|
|
499
|
+
"code": "P0172",
|
|
500
|
+
"description": "System Too Rich (Bank 1)",
|
|
501
|
+
"category": "Powertrain",
|
|
502
|
+
"severity": "Medium",
|
|
503
|
+
"system": "Fuel Trim",
|
|
504
|
+
"possible_causes": [
|
|
505
|
+
"Fuel pressure too high",
|
|
506
|
+
"Leaking fuel injector",
|
|
507
|
+
"Dirty air filter",
|
|
508
|
+
"MAF sensor fault",
|
|
509
|
+
"Oxygen sensor fault"
|
|
510
|
+
]
|
|
511
|
+
},
|
|
512
|
+
"P0174": {
|
|
513
|
+
"code": "P0174",
|
|
514
|
+
"description": "System Too Lean (Bank 2)",
|
|
515
|
+
"category": "Powertrain",
|
|
516
|
+
"severity": "Medium",
|
|
517
|
+
"system": "Fuel Trim",
|
|
518
|
+
"possible_causes": [
|
|
519
|
+
"Vacuum leak",
|
|
520
|
+
"MAF sensor dirty or faulty",
|
|
521
|
+
"Fuel pressure low",
|
|
522
|
+
"Injector clogged",
|
|
523
|
+
"Oxygen sensor fault"
|
|
524
|
+
]
|
|
525
|
+
},
|
|
526
|
+
"P0175": {
|
|
527
|
+
"code": "P0175",
|
|
528
|
+
"description": "System Too Rich (Bank 2)",
|
|
529
|
+
"category": "Powertrain",
|
|
530
|
+
"severity": "Medium",
|
|
531
|
+
"system": "Fuel Trim",
|
|
532
|
+
"possible_causes": [
|
|
533
|
+
"Fuel pressure too high",
|
|
534
|
+
"Leaking fuel injector",
|
|
535
|
+
"Dirty air filter",
|
|
536
|
+
"MAF sensor fault",
|
|
537
|
+
"Oxygen sensor fault"
|
|
538
|
+
]
|
|
539
|
+
},
|
|
540
|
+
"P0200": {
|
|
541
|
+
"code": "P0200",
|
|
542
|
+
"description": "Injector Circuit Malfunction",
|
|
543
|
+
"category": "Powertrain",
|
|
544
|
+
"severity": "High",
|
|
545
|
+
"system": "Fuel Injection",
|
|
546
|
+
"possible_causes": [
|
|
547
|
+
"Faulty fuel injector",
|
|
548
|
+
"Injector circuit open or shorted",
|
|
549
|
+
"ECM fault",
|
|
550
|
+
"Wiring harness problem"
|
|
551
|
+
]
|
|
552
|
+
},
|
|
553
|
+
"P0201": {
|
|
554
|
+
"code": "P0201",
|
|
555
|
+
"description": "Injector Circuit Malfunction - Cylinder 1",
|
|
556
|
+
"category": "Powertrain",
|
|
557
|
+
"severity": "High",
|
|
558
|
+
"system": "Fuel Injection",
|
|
559
|
+
"possible_causes": [
|
|
560
|
+
"Faulty cylinder 1 injector",
|
|
561
|
+
"Injector circuit open or shorted",
|
|
562
|
+
"Poor electrical connection",
|
|
563
|
+
"ECM driver circuit fault"
|
|
564
|
+
]
|
|
565
|
+
},
|
|
566
|
+
"P0202": {
|
|
567
|
+
"code": "P0202",
|
|
568
|
+
"description": "Injector Circuit Malfunction - Cylinder 2",
|
|
569
|
+
"category": "Powertrain",
|
|
570
|
+
"severity": "High",
|
|
571
|
+
"system": "Fuel Injection",
|
|
572
|
+
"possible_causes": [
|
|
573
|
+
"Faulty cylinder 2 injector",
|
|
574
|
+
"Injector circuit open or shorted",
|
|
575
|
+
"Poor electrical connection",
|
|
576
|
+
"ECM driver circuit fault"
|
|
577
|
+
]
|
|
578
|
+
},
|
|
579
|
+
"P0203": {
|
|
580
|
+
"code": "P0203",
|
|
581
|
+
"description": "Injector Circuit Malfunction - Cylinder 3",
|
|
582
|
+
"category": "Powertrain",
|
|
583
|
+
"severity": "High",
|
|
584
|
+
"system": "Fuel Injection",
|
|
585
|
+
"possible_causes": [
|
|
586
|
+
"Faulty cylinder 3 injector",
|
|
587
|
+
"Injector circuit open or shorted",
|
|
588
|
+
"Poor electrical connection",
|
|
589
|
+
"ECM driver circuit fault"
|
|
590
|
+
]
|
|
591
|
+
},
|
|
592
|
+
"P0204": {
|
|
593
|
+
"code": "P0204",
|
|
594
|
+
"description": "Injector Circuit Malfunction - Cylinder 4",
|
|
595
|
+
"category": "Powertrain",
|
|
596
|
+
"severity": "High",
|
|
597
|
+
"system": "Fuel Injection",
|
|
598
|
+
"possible_causes": [
|
|
599
|
+
"Faulty cylinder 4 injector",
|
|
600
|
+
"Injector circuit open or shorted",
|
|
601
|
+
"Poor electrical connection",
|
|
602
|
+
"ECM driver circuit fault"
|
|
603
|
+
]
|
|
604
|
+
},
|
|
605
|
+
"P0205": {
|
|
606
|
+
"code": "P0205",
|
|
607
|
+
"description": "Injector Circuit Malfunction - Cylinder 5",
|
|
608
|
+
"category": "Powertrain",
|
|
609
|
+
"severity": "High",
|
|
610
|
+
"system": "Fuel Injection",
|
|
611
|
+
"possible_causes": [
|
|
612
|
+
"Faulty cylinder 5 injector",
|
|
613
|
+
"Injector circuit open or shorted",
|
|
614
|
+
"Poor electrical connection",
|
|
615
|
+
"ECM driver circuit fault"
|
|
616
|
+
]
|
|
617
|
+
},
|
|
618
|
+
"P0206": {
|
|
619
|
+
"code": "P0206",
|
|
620
|
+
"description": "Injector Circuit Malfunction - Cylinder 6",
|
|
621
|
+
"category": "Powertrain",
|
|
622
|
+
"severity": "High",
|
|
623
|
+
"system": "Fuel Injection",
|
|
624
|
+
"possible_causes": [
|
|
625
|
+
"Faulty cylinder 6 injector",
|
|
626
|
+
"Injector circuit open or shorted",
|
|
627
|
+
"Poor electrical connection",
|
|
628
|
+
"ECM driver circuit fault"
|
|
629
|
+
]
|
|
630
|
+
},
|
|
631
|
+
"P0207": {
|
|
632
|
+
"code": "P0207",
|
|
633
|
+
"description": "Injector Circuit Malfunction - Cylinder 7",
|
|
634
|
+
"category": "Powertrain",
|
|
635
|
+
"severity": "High",
|
|
636
|
+
"system": "Fuel Injection",
|
|
637
|
+
"possible_causes": [
|
|
638
|
+
"Faulty cylinder 7 injector",
|
|
639
|
+
"Injector circuit open or shorted",
|
|
640
|
+
"Poor electrical connection",
|
|
641
|
+
"ECM driver circuit fault"
|
|
642
|
+
]
|
|
643
|
+
},
|
|
644
|
+
"P0208": {
|
|
645
|
+
"code": "P0208",
|
|
646
|
+
"description": "Injector Circuit Malfunction - Cylinder 8",
|
|
647
|
+
"category": "Powertrain",
|
|
648
|
+
"severity": "High",
|
|
649
|
+
"system": "Fuel Injection",
|
|
650
|
+
"possible_causes": [
|
|
651
|
+
"Faulty cylinder 8 injector",
|
|
652
|
+
"Injector circuit open or shorted",
|
|
653
|
+
"Poor electrical connection",
|
|
654
|
+
"ECM driver circuit fault"
|
|
655
|
+
]
|
|
656
|
+
},
|
|
657
|
+
"P0300": {
|
|
658
|
+
"code": "P0300",
|
|
659
|
+
"description": "Random/Multiple Cylinder Misfire Detected",
|
|
660
|
+
"category": "Powertrain",
|
|
661
|
+
"severity": "High",
|
|
662
|
+
"system": "Ignition System",
|
|
663
|
+
"possible_causes": [
|
|
664
|
+
"Worn spark plugs",
|
|
665
|
+
"Faulty ignition coils",
|
|
666
|
+
"Vacuum leak",
|
|
667
|
+
"Low fuel pressure",
|
|
668
|
+
"Dirty fuel injectors",
|
|
669
|
+
"Engine mechanical problem"
|
|
670
|
+
]
|
|
671
|
+
},
|
|
672
|
+
"P0301": {
|
|
673
|
+
"code": "P0301",
|
|
674
|
+
"description": "Cylinder 1 Misfire Detected",
|
|
675
|
+
"category": "Powertrain",
|
|
676
|
+
"severity": "High",
|
|
677
|
+
"system": "Ignition System",
|
|
678
|
+
"possible_causes": [
|
|
679
|
+
"Faulty spark plug (cylinder 1)",
|
|
680
|
+
"Faulty ignition coil (cylinder 1)",
|
|
681
|
+
"Fuel injector problem (cylinder 1)",
|
|
682
|
+
"Low compression (cylinder 1)",
|
|
683
|
+
"Vacuum leak at cylinder 1"
|
|
684
|
+
]
|
|
685
|
+
},
|
|
686
|
+
"P0302": {
|
|
687
|
+
"code": "P0302",
|
|
688
|
+
"description": "Cylinder 2 Misfire Detected",
|
|
689
|
+
"category": "Powertrain",
|
|
690
|
+
"severity": "High",
|
|
691
|
+
"system": "Ignition System",
|
|
692
|
+
"possible_causes": [
|
|
693
|
+
"Faulty spark plug (cylinder 2)",
|
|
694
|
+
"Faulty ignition coil (cylinder 2)",
|
|
695
|
+
"Fuel injector problem (cylinder 2)",
|
|
696
|
+
"Low compression (cylinder 2)",
|
|
697
|
+
"Vacuum leak at cylinder 2"
|
|
698
|
+
]
|
|
699
|
+
},
|
|
700
|
+
"P0303": {
|
|
701
|
+
"code": "P0303",
|
|
702
|
+
"description": "Cylinder 3 Misfire Detected",
|
|
703
|
+
"category": "Powertrain",
|
|
704
|
+
"severity": "High",
|
|
705
|
+
"system": "Ignition System",
|
|
706
|
+
"possible_causes": [
|
|
707
|
+
"Faulty spark plug (cylinder 3)",
|
|
708
|
+
"Faulty ignition coil (cylinder 3)",
|
|
709
|
+
"Fuel injector problem (cylinder 3)",
|
|
710
|
+
"Low compression (cylinder 3)",
|
|
711
|
+
"Vacuum leak at cylinder 3"
|
|
712
|
+
]
|
|
713
|
+
},
|
|
714
|
+
"P0304": {
|
|
715
|
+
"code": "P0304",
|
|
716
|
+
"description": "Cylinder 4 Misfire Detected",
|
|
717
|
+
"category": "Powertrain",
|
|
718
|
+
"severity": "High",
|
|
719
|
+
"system": "Ignition System",
|
|
720
|
+
"possible_causes": [
|
|
721
|
+
"Faulty spark plug (cylinder 4)",
|
|
722
|
+
"Faulty ignition coil (cylinder 4)",
|
|
723
|
+
"Fuel injector problem (cylinder 4)",
|
|
724
|
+
"Low compression (cylinder 4)",
|
|
725
|
+
"Vacuum leak at cylinder 4"
|
|
726
|
+
]
|
|
727
|
+
},
|
|
728
|
+
"P0305": {
|
|
729
|
+
"code": "P0305",
|
|
730
|
+
"description": "Cylinder 5 Misfire Detected",
|
|
731
|
+
"category": "Powertrain",
|
|
732
|
+
"severity": "High",
|
|
733
|
+
"system": "Ignition System",
|
|
734
|
+
"possible_causes": [
|
|
735
|
+
"Faulty spark plug (cylinder 5)",
|
|
736
|
+
"Faulty ignition coil (cylinder 5)",
|
|
737
|
+
"Fuel injector problem (cylinder 5)",
|
|
738
|
+
"Low compression (cylinder 5)",
|
|
739
|
+
"Vacuum leak at cylinder 5"
|
|
740
|
+
]
|
|
741
|
+
},
|
|
742
|
+
"P0306": {
|
|
743
|
+
"code": "P0306",
|
|
744
|
+
"description": "Cylinder 6 Misfire Detected",
|
|
745
|
+
"category": "Powertrain",
|
|
746
|
+
"severity": "High",
|
|
747
|
+
"system": "Ignition System",
|
|
748
|
+
"possible_causes": [
|
|
749
|
+
"Faulty spark plug (cylinder 6)",
|
|
750
|
+
"Faulty ignition coil (cylinder 6)",
|
|
751
|
+
"Fuel injector problem (cylinder 6)",
|
|
752
|
+
"Low compression (cylinder 6)",
|
|
753
|
+
"Vacuum leak at cylinder 6"
|
|
754
|
+
]
|
|
755
|
+
},
|
|
756
|
+
"P0307": {
|
|
757
|
+
"code": "P0307",
|
|
758
|
+
"description": "Cylinder 7 Misfire Detected",
|
|
759
|
+
"category": "Powertrain",
|
|
760
|
+
"severity": "High",
|
|
761
|
+
"system": "Ignition System",
|
|
762
|
+
"possible_causes": [
|
|
763
|
+
"Faulty spark plug (cylinder 7)",
|
|
764
|
+
"Faulty ignition coil (cylinder 7)",
|
|
765
|
+
"Fuel injector problem (cylinder 7)",
|
|
766
|
+
"Low compression (cylinder 7)",
|
|
767
|
+
"Vacuum leak at cylinder 7"
|
|
768
|
+
]
|
|
769
|
+
},
|
|
770
|
+
"P0308": {
|
|
771
|
+
"code": "P0308",
|
|
772
|
+
"description": "Cylinder 8 Misfire Detected",
|
|
773
|
+
"category": "Powertrain",
|
|
774
|
+
"severity": "High",
|
|
775
|
+
"system": "Ignition System",
|
|
776
|
+
"possible_causes": [
|
|
777
|
+
"Faulty spark plug (cylinder 8)",
|
|
778
|
+
"Faulty ignition coil (cylinder 8)",
|
|
779
|
+
"Fuel injector problem (cylinder 8)",
|
|
780
|
+
"Low compression (cylinder 8)",
|
|
781
|
+
"Vacuum leak at cylinder 8"
|
|
782
|
+
]
|
|
783
|
+
},
|
|
784
|
+
"P0320": {
|
|
785
|
+
"code": "P0320",
|
|
786
|
+
"description": "Ignition/Distributor Engine Speed Input Circuit Malfunction",
|
|
787
|
+
"category": "Powertrain",
|
|
788
|
+
"severity": "Critical",
|
|
789
|
+
"system": "Ignition System",
|
|
790
|
+
"possible_causes": [
|
|
791
|
+
"Faulty crankshaft position sensor",
|
|
792
|
+
"Wiring harness problem",
|
|
793
|
+
"Poor electrical connection",
|
|
794
|
+
"ECM fault"
|
|
795
|
+
]
|
|
796
|
+
},
|
|
797
|
+
"P0325": {
|
|
798
|
+
"code": "P0325",
|
|
799
|
+
"description": "Knock Sensor 1 Circuit Malfunction (Bank 1)",
|
|
800
|
+
"category": "Powertrain",
|
|
801
|
+
"severity": "Medium",
|
|
802
|
+
"system": "Ignition System",
|
|
803
|
+
"possible_causes": [
|
|
804
|
+
"Faulty knock sensor",
|
|
805
|
+
"Wiring harness open or shorted",
|
|
806
|
+
"Poor electrical connection",
|
|
807
|
+
"ECM fault"
|
|
808
|
+
]
|
|
809
|
+
},
|
|
810
|
+
"P0335": {
|
|
811
|
+
"code": "P0335",
|
|
812
|
+
"description": "Crankshaft Position Sensor Circuit Malfunction",
|
|
813
|
+
"category": "Powertrain",
|
|
814
|
+
"severity": "Critical",
|
|
815
|
+
"system": "Engine Position Sensors",
|
|
816
|
+
"possible_causes": [
|
|
817
|
+
"Faulty crankshaft position sensor",
|
|
818
|
+
"Sensor reluctor wheel damaged",
|
|
819
|
+
"Wiring harness problem",
|
|
820
|
+
"Poor electrical connection"
|
|
821
|
+
]
|
|
822
|
+
},
|
|
823
|
+
"P0336": {
|
|
824
|
+
"code": "P0336",
|
|
825
|
+
"description": "Crankshaft Position Sensor Range/Performance",
|
|
826
|
+
"category": "Powertrain",
|
|
827
|
+
"severity": "Critical",
|
|
828
|
+
"system": "Engine Position Sensors",
|
|
829
|
+
"possible_causes": [
|
|
830
|
+
"Crankshaft position sensor misaligned",
|
|
831
|
+
"Reluctor wheel damaged or dirty",
|
|
832
|
+
"Sensor air gap too large",
|
|
833
|
+
"Timing belt/chain problem"
|
|
834
|
+
]
|
|
835
|
+
},
|
|
836
|
+
"P0340": {
|
|
837
|
+
"code": "P0340",
|
|
838
|
+
"description": "Camshaft Position Sensor Circuit Malfunction (Bank 1)",
|
|
839
|
+
"category": "Powertrain",
|
|
840
|
+
"severity": "High",
|
|
841
|
+
"system": "Engine Position Sensors",
|
|
842
|
+
"possible_causes": [
|
|
843
|
+
"Faulty camshaft position sensor",
|
|
844
|
+
"Wiring harness problem",
|
|
845
|
+
"Poor electrical connection",
|
|
846
|
+
"Timing belt/chain problem"
|
|
847
|
+
]
|
|
848
|
+
},
|
|
849
|
+
"P0341": {
|
|
850
|
+
"code": "P0341",
|
|
851
|
+
"description": "Camshaft Position Sensor Range/Performance (Bank 1)",
|
|
852
|
+
"category": "Powertrain",
|
|
853
|
+
"severity": "High",
|
|
854
|
+
"system": "Engine Position Sensors",
|
|
855
|
+
"possible_causes": [
|
|
856
|
+
"Camshaft position sensor misaligned",
|
|
857
|
+
"Timing belt/chain jumped",
|
|
858
|
+
"Faulty camshaft position sensor",
|
|
859
|
+
"Reluctor wheel damaged"
|
|
860
|
+
]
|
|
861
|
+
},
|
|
862
|
+
"P0400": {
|
|
863
|
+
"code": "P0400",
|
|
864
|
+
"description": "Exhaust Gas Recirculation (EGR) Flow Malfunction",
|
|
865
|
+
"category": "Powertrain",
|
|
866
|
+
"severity": "Medium",
|
|
867
|
+
"system": "Emissions Control",
|
|
868
|
+
"possible_causes": [
|
|
869
|
+
"EGR valve stuck closed",
|
|
870
|
+
"EGR passages clogged",
|
|
871
|
+
"Faulty EGR valve",
|
|
872
|
+
"Vacuum leak"
|
|
873
|
+
]
|
|
874
|
+
},
|
|
875
|
+
"P0401": {
|
|
876
|
+
"code": "P0401",
|
|
877
|
+
"description": "Exhaust Gas Recirculation (EGR) Flow Insufficient",
|
|
878
|
+
"category": "Powertrain",
|
|
879
|
+
"severity": "Medium",
|
|
880
|
+
"system": "Emissions Control",
|
|
881
|
+
"possible_causes": [
|
|
882
|
+
"EGR valve stuck partially closed",
|
|
883
|
+
"EGR passages restricted with carbon",
|
|
884
|
+
"Faulty EGR valve position sensor",
|
|
885
|
+
"Vacuum supply issue"
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
"P0402": {
|
|
889
|
+
"code": "P0402",
|
|
890
|
+
"description": "Exhaust Gas Recirculation (EGR) Flow Excessive",
|
|
891
|
+
"category": "Powertrain",
|
|
892
|
+
"severity": "Medium",
|
|
893
|
+
"system": "Emissions Control",
|
|
894
|
+
"possible_causes": [
|
|
895
|
+
"EGR valve stuck open",
|
|
896
|
+
"Faulty EGR valve",
|
|
897
|
+
"EGR vacuum solenoid fault",
|
|
898
|
+
"ECM problem"
|
|
899
|
+
]
|
|
900
|
+
},
|
|
901
|
+
"P0403": {
|
|
902
|
+
"code": "P0403",
|
|
903
|
+
"description": "Exhaust Gas Recirculation (EGR) Control Circuit Malfunction",
|
|
904
|
+
"category": "Powertrain",
|
|
905
|
+
"severity": "Medium",
|
|
906
|
+
"system": "Emissions Control",
|
|
907
|
+
"possible_causes": [
|
|
908
|
+
"Faulty EGR solenoid",
|
|
909
|
+
"Wiring harness open or shorted",
|
|
910
|
+
"Poor electrical connection",
|
|
911
|
+
"ECM fault"
|
|
912
|
+
]
|
|
913
|
+
},
|
|
914
|
+
"P0420": {
|
|
915
|
+
"code": "P0420",
|
|
916
|
+
"description": "Catalyst System Efficiency Below Threshold (Bank 1)",
|
|
917
|
+
"category": "Powertrain",
|
|
918
|
+
"severity": "Medium",
|
|
919
|
+
"system": "Emissions Control",
|
|
920
|
+
"possible_causes": [
|
|
921
|
+
"Faulty catalytic converter",
|
|
922
|
+
"Oxygen sensor degraded",
|
|
923
|
+
"Exhaust leak",
|
|
924
|
+
"Engine misfire",
|
|
925
|
+
"Fuel system problem"
|
|
926
|
+
]
|
|
927
|
+
},
|
|
928
|
+
"P0421": {
|
|
929
|
+
"code": "P0421",
|
|
930
|
+
"description": "Warm Up Catalyst Efficiency Below Threshold (Bank 1)",
|
|
931
|
+
"category": "Powertrain",
|
|
932
|
+
"severity": "Medium",
|
|
933
|
+
"system": "Emissions Control",
|
|
934
|
+
"possible_causes": [
|
|
935
|
+
"Faulty warm-up catalytic converter",
|
|
936
|
+
"Oxygen sensor fault",
|
|
937
|
+
"Exhaust leak",
|
|
938
|
+
"Engine running too rich or lean"
|
|
939
|
+
]
|
|
940
|
+
},
|
|
941
|
+
"P0430": {
|
|
942
|
+
"code": "P0430",
|
|
943
|
+
"description": "Catalyst System Efficiency Below Threshold (Bank 2)",
|
|
944
|
+
"category": "Powertrain",
|
|
945
|
+
"severity": "Medium",
|
|
946
|
+
"system": "Emissions Control",
|
|
947
|
+
"possible_causes": [
|
|
948
|
+
"Faulty catalytic converter (bank 2)",
|
|
949
|
+
"Oxygen sensor degraded",
|
|
950
|
+
"Exhaust leak",
|
|
951
|
+
"Engine misfire",
|
|
952
|
+
"Fuel system problem"
|
|
953
|
+
]
|
|
954
|
+
},
|
|
955
|
+
"P0440": {
|
|
956
|
+
"code": "P0440",
|
|
957
|
+
"description": "Evaporative Emission Control System Malfunction",
|
|
958
|
+
"category": "Powertrain",
|
|
959
|
+
"severity": "Low",
|
|
960
|
+
"system": "Emissions Control",
|
|
961
|
+
"possible_causes": [
|
|
962
|
+
"Loose or missing fuel cap",
|
|
963
|
+
"EVAP system leak",
|
|
964
|
+
"Faulty purge valve",
|
|
965
|
+
"Faulty vent valve"
|
|
966
|
+
]
|
|
967
|
+
},
|
|
968
|
+
"P0441": {
|
|
969
|
+
"code": "P0441",
|
|
970
|
+
"description": "Evaporative Emission Control System Incorrect Purge Flow",
|
|
971
|
+
"category": "Powertrain",
|
|
972
|
+
"severity": "Low",
|
|
973
|
+
"system": "Emissions Control",
|
|
974
|
+
"possible_causes": [
|
|
975
|
+
"Faulty purge valve",
|
|
976
|
+
"Purge valve stuck open or closed",
|
|
977
|
+
"EVAP system leak",
|
|
978
|
+
"Vacuum line disconnected"
|
|
979
|
+
]
|
|
980
|
+
},
|
|
981
|
+
"P0442": {
|
|
982
|
+
"code": "P0442",
|
|
983
|
+
"description": "Evaporative Emission Control System Leak Detected (Small Leak)",
|
|
984
|
+
"category": "Powertrain",
|
|
985
|
+
"severity": "Low",
|
|
986
|
+
"system": "Emissions Control",
|
|
987
|
+
"possible_causes": [
|
|
988
|
+
"Loose fuel cap",
|
|
989
|
+
"EVAP hose cracked or disconnected",
|
|
990
|
+
"Faulty fuel tank pressure sensor",
|
|
991
|
+
"Small leak in EVAP system"
|
|
992
|
+
]
|
|
993
|
+
},
|
|
994
|
+
"P0443": {
|
|
995
|
+
"code": "P0443",
|
|
996
|
+
"description": "Evaporative Emission Control System Purge Control Valve Circuit Malfunction",
|
|
997
|
+
"category": "Powertrain",
|
|
998
|
+
"severity": "Low",
|
|
999
|
+
"system": "Emissions Control",
|
|
1000
|
+
"possible_causes": [
|
|
1001
|
+
"Faulty purge solenoid valve",
|
|
1002
|
+
"Wiring harness open or shorted",
|
|
1003
|
+
"Poor electrical connection",
|
|
1004
|
+
"ECM fault"
|
|
1005
|
+
]
|
|
1006
|
+
},
|
|
1007
|
+
"P0446": {
|
|
1008
|
+
"code": "P0446",
|
|
1009
|
+
"description": "Evaporative Emission Control System Vent Control Circuit Malfunction",
|
|
1010
|
+
"category": "Powertrain",
|
|
1011
|
+
"severity": "Low",
|
|
1012
|
+
"system": "Emissions Control",
|
|
1013
|
+
"possible_causes": [
|
|
1014
|
+
"Faulty vent control valve",
|
|
1015
|
+
"Vent valve stuck closed",
|
|
1016
|
+
"Wiring harness problem",
|
|
1017
|
+
"Charcoal canister clogged"
|
|
1018
|
+
]
|
|
1019
|
+
},
|
|
1020
|
+
"P0455": {
|
|
1021
|
+
"code": "P0455",
|
|
1022
|
+
"description": "Evaporative Emission Control System Leak Detected (Large Leak)",
|
|
1023
|
+
"category": "Powertrain",
|
|
1024
|
+
"severity": "Low",
|
|
1025
|
+
"system": "Emissions Control",
|
|
1026
|
+
"possible_causes": [
|
|
1027
|
+
"Missing or loose fuel cap",
|
|
1028
|
+
"EVAP hose disconnected",
|
|
1029
|
+
"Fuel tank crack",
|
|
1030
|
+
"Large leak in EVAP system"
|
|
1031
|
+
]
|
|
1032
|
+
},
|
|
1033
|
+
"P0456": {
|
|
1034
|
+
"code": "P0456",
|
|
1035
|
+
"description": "Evaporative Emission Control System Leak Detected (Very Small Leak)",
|
|
1036
|
+
"category": "Powertrain",
|
|
1037
|
+
"severity": "Low",
|
|
1038
|
+
"system": "Emissions Control",
|
|
1039
|
+
"possible_causes": [
|
|
1040
|
+
"Loose fuel cap",
|
|
1041
|
+
"Fuel cap seal damaged",
|
|
1042
|
+
"Very small EVAP system leak",
|
|
1043
|
+
"Faulty fuel tank pressure sensor"
|
|
1044
|
+
]
|
|
1045
|
+
},
|
|
1046
|
+
"P0500": {
|
|
1047
|
+
"code": "P0500",
|
|
1048
|
+
"description": "Vehicle Speed Sensor Malfunction",
|
|
1049
|
+
"category": "Powertrain",
|
|
1050
|
+
"severity": "Medium",
|
|
1051
|
+
"system": "Speed Sensors",
|
|
1052
|
+
"possible_causes": [
|
|
1053
|
+
"Faulty vehicle speed sensor",
|
|
1054
|
+
"Wiring harness problem",
|
|
1055
|
+
"Poor electrical connection",
|
|
1056
|
+
"ECM fault"
|
|
1057
|
+
]
|
|
1058
|
+
},
|
|
1059
|
+
"P0505": {
|
|
1060
|
+
"code": "P0505",
|
|
1061
|
+
"description": "Idle Control System Malfunction",
|
|
1062
|
+
"category": "Powertrain",
|
|
1063
|
+
"severity": "Medium",
|
|
1064
|
+
"system": "Idle Control",
|
|
1065
|
+
"possible_causes": [
|
|
1066
|
+
"Faulty idle air control valve",
|
|
1067
|
+
"IAC valve stuck or carbon buildup",
|
|
1068
|
+
"Vacuum leak",
|
|
1069
|
+
"Throttle body dirty"
|
|
1070
|
+
]
|
|
1071
|
+
},
|
|
1072
|
+
"P0506": {
|
|
1073
|
+
"code": "P0506",
|
|
1074
|
+
"description": "Idle Control System RPM Lower Than Expected",
|
|
1075
|
+
"category": "Powertrain",
|
|
1076
|
+
"severity": "Low",
|
|
1077
|
+
"system": "Idle Control",
|
|
1078
|
+
"possible_causes": [
|
|
1079
|
+
"Vacuum leak",
|
|
1080
|
+
"IAC valve fault",
|
|
1081
|
+
"Dirty throttle body",
|
|
1082
|
+
"PCV valve problem"
|
|
1083
|
+
]
|
|
1084
|
+
},
|
|
1085
|
+
"P0507": {
|
|
1086
|
+
"code": "P0507",
|
|
1087
|
+
"description": "Idle Control System RPM Higher Than Expected",
|
|
1088
|
+
"category": "Powertrain",
|
|
1089
|
+
"severity": "Low",
|
|
1090
|
+
"system": "Idle Control",
|
|
1091
|
+
"possible_causes": [
|
|
1092
|
+
"Vacuum leak",
|
|
1093
|
+
"IAC valve stuck open",
|
|
1094
|
+
"PCV valve stuck open",
|
|
1095
|
+
"EVAP purge valve leaking"
|
|
1096
|
+
]
|
|
1097
|
+
},
|
|
1098
|
+
"P0600": {
|
|
1099
|
+
"code": "P0600",
|
|
1100
|
+
"description": "Serial Communication Link Malfunction",
|
|
1101
|
+
"category": "Powertrain",
|
|
1102
|
+
"severity": "High",
|
|
1103
|
+
"system": "Engine Control Module",
|
|
1104
|
+
"possible_causes": [
|
|
1105
|
+
"ECM internal fault",
|
|
1106
|
+
"CAN bus communication problem",
|
|
1107
|
+
"Wiring harness fault",
|
|
1108
|
+
"Ground connection problem"
|
|
1109
|
+
]
|
|
1110
|
+
},
|
|
1111
|
+
"P0601": {
|
|
1112
|
+
"code": "P0601",
|
|
1113
|
+
"description": "Internal Control Module Memory Check Sum Error",
|
|
1114
|
+
"category": "Powertrain",
|
|
1115
|
+
"severity": "Critical",
|
|
1116
|
+
"system": "Engine Control Module",
|
|
1117
|
+
"possible_causes": [
|
|
1118
|
+
"ECM internal memory corruption",
|
|
1119
|
+
"ECM needs reprogramming",
|
|
1120
|
+
"ECM hardware failure",
|
|
1121
|
+
"Power supply problem"
|
|
1122
|
+
]
|
|
1123
|
+
},
|
|
1124
|
+
"P0602": {
|
|
1125
|
+
"code": "P0602",
|
|
1126
|
+
"description": "Control Module Programming Error",
|
|
1127
|
+
"category": "Powertrain",
|
|
1128
|
+
"severity": "Critical",
|
|
1129
|
+
"system": "Engine Control Module",
|
|
1130
|
+
"possible_causes": [
|
|
1131
|
+
"ECM not programmed",
|
|
1132
|
+
"ECM programming incomplete",
|
|
1133
|
+
"Wrong software version",
|
|
1134
|
+
"ECM fault"
|
|
1135
|
+
]
|
|
1136
|
+
},
|
|
1137
|
+
"P0603": {
|
|
1138
|
+
"code": "P0603",
|
|
1139
|
+
"description": "Internal Control Module Keep Alive Memory (KAM) Error",
|
|
1140
|
+
"category": "Powertrain",
|
|
1141
|
+
"severity": "High",
|
|
1142
|
+
"system": "Engine Control Module",
|
|
1143
|
+
"possible_causes": [
|
|
1144
|
+
"ECM battery voltage lost",
|
|
1145
|
+
"ECM internal fault",
|
|
1146
|
+
"Poor battery connection",
|
|
1147
|
+
"ECM needs replacement"
|
|
1148
|
+
]
|
|
1149
|
+
},
|
|
1150
|
+
"P0604": {
|
|
1151
|
+
"code": "P0604",
|
|
1152
|
+
"description": "Internal Control Module Random Access Memory (RAM) Error",
|
|
1153
|
+
"category": "Powertrain",
|
|
1154
|
+
"severity": "Critical",
|
|
1155
|
+
"system": "Engine Control Module",
|
|
1156
|
+
"possible_causes": [
|
|
1157
|
+
"ECM internal RAM failure",
|
|
1158
|
+
"ECM needs replacement",
|
|
1159
|
+
"Power supply problem",
|
|
1160
|
+
"EMI interference"
|
|
1161
|
+
]
|
|
1162
|
+
},
|
|
1163
|
+
"P0605": {
|
|
1164
|
+
"code": "P0605",
|
|
1165
|
+
"description": "Internal Control Module Read Only Memory (ROM) Error",
|
|
1166
|
+
"category": "Powertrain",
|
|
1167
|
+
"severity": "Critical",
|
|
1168
|
+
"system": "Engine Control Module",
|
|
1169
|
+
"possible_causes": [
|
|
1170
|
+
"ECM internal ROM failure",
|
|
1171
|
+
"ECM needs replacement",
|
|
1172
|
+
"ECM programming corruption",
|
|
1173
|
+
"Hardware failure"
|
|
1174
|
+
]
|
|
1175
|
+
},
|
|
1176
|
+
"P0606": {
|
|
1177
|
+
"code": "P0606",
|
|
1178
|
+
"description": "ECM/PCM Processor Fault",
|
|
1179
|
+
"category": "Powertrain",
|
|
1180
|
+
"severity": "Critical",
|
|
1181
|
+
"system": "Engine Control Module",
|
|
1182
|
+
"possible_causes": [
|
|
1183
|
+
"ECM processor failure",
|
|
1184
|
+
"ECM internal fault",
|
|
1185
|
+
"Power supply problem",
|
|
1186
|
+
"ECM needs replacement"
|
|
1187
|
+
]
|
|
1188
|
+
},
|
|
1189
|
+
"P0607": {
|
|
1190
|
+
"code": "P0607",
|
|
1191
|
+
"description": "Control Module Performance",
|
|
1192
|
+
"category": "Powertrain",
|
|
1193
|
+
"severity": "High",
|
|
1194
|
+
"system": "Engine Control Module",
|
|
1195
|
+
"possible_causes": [
|
|
1196
|
+
"ECM performance degraded",
|
|
1197
|
+
"ECM internal fault",
|
|
1198
|
+
"Software glitch",
|
|
1199
|
+
"Electrical interference"
|
|
1200
|
+
]
|
|
1201
|
+
},
|
|
1202
|
+
"P0620": {
|
|
1203
|
+
"code": "P0620",
|
|
1204
|
+
"description": "Generator Control Circuit Malfunction",
|
|
1205
|
+
"category": "Powertrain",
|
|
1206
|
+
"severity": "Medium",
|
|
1207
|
+
"system": "Charging System",
|
|
1208
|
+
"possible_causes": [
|
|
1209
|
+
"Faulty alternator",
|
|
1210
|
+
"Wiring harness problem",
|
|
1211
|
+
"Poor electrical connection",
|
|
1212
|
+
"ECM fault"
|
|
1213
|
+
]
|
|
1214
|
+
},
|
|
1215
|
+
"P0625": {
|
|
1216
|
+
"code": "P0625",
|
|
1217
|
+
"description": "Generator Field Terminal Circuit Low",
|
|
1218
|
+
"category": "Powertrain",
|
|
1219
|
+
"severity": "Medium",
|
|
1220
|
+
"system": "Charging System",
|
|
1221
|
+
"possible_causes": [
|
|
1222
|
+
"Alternator field circuit shorted to ground",
|
|
1223
|
+
"Faulty alternator",
|
|
1224
|
+
"Wiring harness fault",
|
|
1225
|
+
"ECM driver circuit fault"
|
|
1226
|
+
]
|
|
1227
|
+
},
|
|
1228
|
+
"P0630": {
|
|
1229
|
+
"code": "P0630",
|
|
1230
|
+
"description": "VIN Not Programmed or Mismatch - ECM/PCM",
|
|
1231
|
+
"category": "Powertrain",
|
|
1232
|
+
"severity": "Medium",
|
|
1233
|
+
"system": "Engine Control Module",
|
|
1234
|
+
"possible_causes": [
|
|
1235
|
+
"VIN not programmed in ECM",
|
|
1236
|
+
"VIN mismatch between modules",
|
|
1237
|
+
"ECM replaced without programming",
|
|
1238
|
+
"ECM fault"
|
|
1239
|
+
]
|
|
1240
|
+
},
|
|
1241
|
+
"P0700": {
|
|
1242
|
+
"code": "P0700",
|
|
1243
|
+
"description": "Transmission Control System Malfunction",
|
|
1244
|
+
"category": "Powertrain",
|
|
1245
|
+
"severity": "High",
|
|
1246
|
+
"system": "Transmission",
|
|
1247
|
+
"possible_causes": [
|
|
1248
|
+
"Transmission fault detected",
|
|
1249
|
+
"TCM communication error",
|
|
1250
|
+
"Check TCM for additional codes",
|
|
1251
|
+
"Wiring harness problem"
|
|
1252
|
+
]
|
|
1253
|
+
},
|
|
1254
|
+
"P0705": {
|
|
1255
|
+
"code": "P0705",
|
|
1256
|
+
"description": "Transmission Range Sensor Circuit Malfunction (PRNDL Input)",
|
|
1257
|
+
"category": "Powertrain",
|
|
1258
|
+
"severity": "High",
|
|
1259
|
+
"system": "Transmission",
|
|
1260
|
+
"possible_causes": [
|
|
1261
|
+
"Faulty transmission range sensor",
|
|
1262
|
+
"Wiring harness problem",
|
|
1263
|
+
"Shift linkage misadjusted",
|
|
1264
|
+
"TCM fault"
|
|
1265
|
+
]
|
|
1266
|
+
},
|
|
1267
|
+
"P0710": {
|
|
1268
|
+
"code": "P0710",
|
|
1269
|
+
"description": "Transmission Fluid Temperature Sensor Circuit Malfunction",
|
|
1270
|
+
"category": "Powertrain",
|
|
1271
|
+
"severity": "Medium",
|
|
1272
|
+
"system": "Transmission",
|
|
1273
|
+
"possible_causes": [
|
|
1274
|
+
"Faulty transmission fluid temperature sensor",
|
|
1275
|
+
"Wiring harness open or shorted",
|
|
1276
|
+
"Poor electrical connection",
|
|
1277
|
+
"TCM fault"
|
|
1278
|
+
]
|
|
1279
|
+
},
|
|
1280
|
+
"P0715": {
|
|
1281
|
+
"code": "P0715",
|
|
1282
|
+
"description": "Input/Turbine Speed Sensor Circuit Malfunction",
|
|
1283
|
+
"category": "Powertrain",
|
|
1284
|
+
"severity": "High",
|
|
1285
|
+
"system": "Transmission",
|
|
1286
|
+
"possible_causes": [
|
|
1287
|
+
"Faulty input speed sensor",
|
|
1288
|
+
"Wiring harness problem",
|
|
1289
|
+
"Sensor reluctor damaged",
|
|
1290
|
+
"TCM fault"
|
|
1291
|
+
]
|
|
1292
|
+
},
|
|
1293
|
+
"P0720": {
|
|
1294
|
+
"code": "P0720",
|
|
1295
|
+
"description": "Output Speed Sensor Circuit Malfunction",
|
|
1296
|
+
"category": "Powertrain",
|
|
1297
|
+
"severity": "High",
|
|
1298
|
+
"system": "Transmission",
|
|
1299
|
+
"possible_causes": [
|
|
1300
|
+
"Faulty output speed sensor",
|
|
1301
|
+
"Wiring harness problem",
|
|
1302
|
+
"Sensor reluctor damaged",
|
|
1303
|
+
"TCM fault"
|
|
1304
|
+
]
|
|
1305
|
+
},
|
|
1306
|
+
"P0725": {
|
|
1307
|
+
"code": "P0725",
|
|
1308
|
+
"description": "Engine Speed Input Circuit Malfunction",
|
|
1309
|
+
"category": "Powertrain",
|
|
1310
|
+
"severity": "High",
|
|
1311
|
+
"system": "Transmission",
|
|
1312
|
+
"possible_causes": [
|
|
1313
|
+
"CAN communication problem",
|
|
1314
|
+
"Faulty crankshaft position sensor",
|
|
1315
|
+
"TCM fault",
|
|
1316
|
+
"Wiring harness problem"
|
|
1317
|
+
]
|
|
1318
|
+
},
|
|
1319
|
+
"P0730": {
|
|
1320
|
+
"code": "P0730",
|
|
1321
|
+
"description": "Incorrect Gear Ratio",
|
|
1322
|
+
"category": "Powertrain",
|
|
1323
|
+
"severity": "High",
|
|
1324
|
+
"system": "Transmission",
|
|
1325
|
+
"possible_causes": [
|
|
1326
|
+
"Low transmission fluid",
|
|
1327
|
+
"Transmission internal problem",
|
|
1328
|
+
"Faulty transmission solenoid",
|
|
1329
|
+
"TCM fault"
|
|
1330
|
+
]
|
|
1331
|
+
},
|
|
1332
|
+
"P0740": {
|
|
1333
|
+
"code": "P0740",
|
|
1334
|
+
"description": "Torque Converter Clutch Circuit Malfunction",
|
|
1335
|
+
"category": "Powertrain",
|
|
1336
|
+
"severity": "Medium",
|
|
1337
|
+
"system": "Transmission",
|
|
1338
|
+
"possible_causes": [
|
|
1339
|
+
"Faulty torque converter clutch solenoid",
|
|
1340
|
+
"Transmission fluid dirty or low",
|
|
1341
|
+
"Wiring harness problem",
|
|
1342
|
+
"Internal transmission fault"
|
|
1343
|
+
]
|
|
1344
|
+
},
|
|
1345
|
+
"P0750": {
|
|
1346
|
+
"code": "P0750",
|
|
1347
|
+
"description": "Shift Solenoid A Malfunction",
|
|
1348
|
+
"category": "Powertrain",
|
|
1349
|
+
"severity": "High",
|
|
1350
|
+
"system": "Transmission",
|
|
1351
|
+
"possible_causes": [
|
|
1352
|
+
"Faulty shift solenoid A",
|
|
1353
|
+
"Transmission fluid dirty or low",
|
|
1354
|
+
"Wiring harness problem",
|
|
1355
|
+
"TCM fault"
|
|
1356
|
+
]
|
|
1357
|
+
},
|
|
1358
|
+
"P0755": {
|
|
1359
|
+
"code": "P0755",
|
|
1360
|
+
"description": "Shift Solenoid B Malfunction",
|
|
1361
|
+
"category": "Powertrain",
|
|
1362
|
+
"severity": "High",
|
|
1363
|
+
"system": "Transmission",
|
|
1364
|
+
"possible_causes": [
|
|
1365
|
+
"Faulty shift solenoid B",
|
|
1366
|
+
"Transmission fluid dirty or low",
|
|
1367
|
+
"Wiring harness problem",
|
|
1368
|
+
"TCM fault"
|
|
1369
|
+
]
|
|
1370
|
+
},
|
|
1371
|
+
"P0760": {
|
|
1372
|
+
"code": "P0760",
|
|
1373
|
+
"description": "Shift Solenoid C Malfunction",
|
|
1374
|
+
"category": "Powertrain",
|
|
1375
|
+
"severity": "High",
|
|
1376
|
+
"system": "Transmission",
|
|
1377
|
+
"possible_causes": [
|
|
1378
|
+
"Faulty shift solenoid C",
|
|
1379
|
+
"Transmission fluid dirty or low",
|
|
1380
|
+
"Wiring harness problem",
|
|
1381
|
+
"TCM fault"
|
|
1382
|
+
]
|
|
1383
|
+
},
|
|
1384
|
+
"P0765": {
|
|
1385
|
+
"code": "P0765",
|
|
1386
|
+
"description": "Shift Solenoid D Malfunction",
|
|
1387
|
+
"category": "Powertrain",
|
|
1388
|
+
"severity": "High",
|
|
1389
|
+
"system": "Transmission",
|
|
1390
|
+
"possible_causes": [
|
|
1391
|
+
"Faulty shift solenoid D",
|
|
1392
|
+
"Transmission fluid dirty or low",
|
|
1393
|
+
"Wiring harness problem",
|
|
1394
|
+
"TCM fault"
|
|
1395
|
+
]
|
|
1396
|
+
},
|
|
1397
|
+
"C0035": {
|
|
1398
|
+
"code": "C0035",
|
|
1399
|
+
"description": "Left Front Wheel Speed Circuit Malfunction",
|
|
1400
|
+
"category": "Chassis",
|
|
1401
|
+
"severity": "High",
|
|
1402
|
+
"system": "ABS",
|
|
1403
|
+
"possible_causes": [
|
|
1404
|
+
"Faulty wheel speed sensor",
|
|
1405
|
+
"Damaged sensor reluctor ring",
|
|
1406
|
+
"Wiring harness problem",
|
|
1407
|
+
"Poor electrical connection"
|
|
1408
|
+
]
|
|
1409
|
+
},
|
|
1410
|
+
"C0040": {
|
|
1411
|
+
"code": "C0040",
|
|
1412
|
+
"description": "Right Front Wheel Speed Circuit Malfunction",
|
|
1413
|
+
"category": "Chassis",
|
|
1414
|
+
"severity": "High",
|
|
1415
|
+
"system": "ABS",
|
|
1416
|
+
"possible_causes": [
|
|
1417
|
+
"Faulty wheel speed sensor",
|
|
1418
|
+
"Damaged sensor reluctor ring",
|
|
1419
|
+
"Wiring harness problem",
|
|
1420
|
+
"Poor electrical connection"
|
|
1421
|
+
]
|
|
1422
|
+
},
|
|
1423
|
+
"C0045": {
|
|
1424
|
+
"code": "C0045",
|
|
1425
|
+
"description": "Left Rear Wheel Speed Circuit Malfunction",
|
|
1426
|
+
"category": "Chassis",
|
|
1427
|
+
"severity": "High",
|
|
1428
|
+
"system": "ABS",
|
|
1429
|
+
"possible_causes": [
|
|
1430
|
+
"Faulty wheel speed sensor",
|
|
1431
|
+
"Damaged sensor reluctor ring",
|
|
1432
|
+
"Wiring harness problem",
|
|
1433
|
+
"Poor electrical connection"
|
|
1434
|
+
]
|
|
1435
|
+
},
|
|
1436
|
+
"C0050": {
|
|
1437
|
+
"code": "C0050",
|
|
1438
|
+
"description": "Right Rear Wheel Speed Circuit Malfunction",
|
|
1439
|
+
"category": "Chassis",
|
|
1440
|
+
"severity": "High",
|
|
1441
|
+
"system": "ABS",
|
|
1442
|
+
"possible_causes": [
|
|
1443
|
+
"Faulty wheel speed sensor",
|
|
1444
|
+
"Damaged sensor reluctor ring",
|
|
1445
|
+
"Wiring harness problem",
|
|
1446
|
+
"Poor electrical connection"
|
|
1447
|
+
]
|
|
1448
|
+
},
|
|
1449
|
+
"C0060": {
|
|
1450
|
+
"code": "C0060",
|
|
1451
|
+
"description": "ABS Pump Motor Circuit Malfunction",
|
|
1452
|
+
"category": "Chassis",
|
|
1453
|
+
"severity": "Critical",
|
|
1454
|
+
"system": "ABS",
|
|
1455
|
+
"possible_causes": [
|
|
1456
|
+
"Faulty ABS pump motor",
|
|
1457
|
+
"Wiring harness open or shorted",
|
|
1458
|
+
"ABS module fault",
|
|
1459
|
+
"Motor relay failure"
|
|
1460
|
+
]
|
|
1461
|
+
},
|
|
1462
|
+
"C0070": {
|
|
1463
|
+
"code": "C0070",
|
|
1464
|
+
"description": "ABS Control Module Malfunction",
|
|
1465
|
+
"category": "Chassis",
|
|
1466
|
+
"severity": "Critical",
|
|
1467
|
+
"system": "ABS",
|
|
1468
|
+
"possible_causes": [
|
|
1469
|
+
"ABS module internal fault",
|
|
1470
|
+
"ABS module needs replacement",
|
|
1471
|
+
"Power supply problem",
|
|
1472
|
+
"Ground connection fault"
|
|
1473
|
+
]
|
|
1474
|
+
},
|
|
1475
|
+
"C0110": {
|
|
1476
|
+
"code": "C0110",
|
|
1477
|
+
"description": "Pump Motor Circuit Malfunction",
|
|
1478
|
+
"category": "Chassis",
|
|
1479
|
+
"severity": "Critical",
|
|
1480
|
+
"system": "ABS",
|
|
1481
|
+
"possible_causes": [
|
|
1482
|
+
"Faulty pump motor",
|
|
1483
|
+
"Motor circuit open or shorted",
|
|
1484
|
+
"Poor electrical connection",
|
|
1485
|
+
"ABS module fault"
|
|
1486
|
+
]
|
|
1487
|
+
},
|
|
1488
|
+
"C0121": {
|
|
1489
|
+
"code": "C0121",
|
|
1490
|
+
"description": "Valve Relay Circuit Malfunction",
|
|
1491
|
+
"category": "Chassis",
|
|
1492
|
+
"severity": "High",
|
|
1493
|
+
"system": "ABS",
|
|
1494
|
+
"possible_causes": [
|
|
1495
|
+
"Faulty valve relay",
|
|
1496
|
+
"Relay circuit problem",
|
|
1497
|
+
"ABS module fault",
|
|
1498
|
+
"Wiring harness issue"
|
|
1499
|
+
]
|
|
1500
|
+
},
|
|
1501
|
+
"C0161": {
|
|
1502
|
+
"code": "C0161",
|
|
1503
|
+
"description": "ABS/TCS Brake Switch Circuit Malfunction",
|
|
1504
|
+
"category": "Chassis",
|
|
1505
|
+
"severity": "Medium",
|
|
1506
|
+
"system": "ABS",
|
|
1507
|
+
"possible_causes": [
|
|
1508
|
+
"Faulty brake light switch",
|
|
1509
|
+
"Wiring harness problem",
|
|
1510
|
+
"Brake switch misadjusted",
|
|
1511
|
+
"Poor electrical connection"
|
|
1512
|
+
]
|
|
1513
|
+
},
|
|
1514
|
+
"C0200": {
|
|
1515
|
+
"code": "C0200",
|
|
1516
|
+
"description": "Steering Angle Sensor Malfunction",
|
|
1517
|
+
"category": "Chassis",
|
|
1518
|
+
"severity": "High",
|
|
1519
|
+
"system": "Stability Control",
|
|
1520
|
+
"possible_causes": [
|
|
1521
|
+
"Steering angle sensor not calibrated",
|
|
1522
|
+
"Faulty steering angle sensor",
|
|
1523
|
+
"Wiring harness problem",
|
|
1524
|
+
"ESC module fault"
|
|
1525
|
+
]
|
|
1526
|
+
},
|
|
1527
|
+
"C0201": {
|
|
1528
|
+
"code": "C0201",
|
|
1529
|
+
"description": "Yaw Rate Sensor Circuit Malfunction",
|
|
1530
|
+
"category": "Chassis",
|
|
1531
|
+
"severity": "High",
|
|
1532
|
+
"system": "Stability Control",
|
|
1533
|
+
"possible_causes": [
|
|
1534
|
+
"Faulty yaw rate sensor",
|
|
1535
|
+
"Sensor not calibrated",
|
|
1536
|
+
"Wiring harness problem",
|
|
1537
|
+
"ESC module fault"
|
|
1538
|
+
]
|
|
1539
|
+
},
|
|
1540
|
+
"C0202": {
|
|
1541
|
+
"code": "C0202",
|
|
1542
|
+
"description": "Lateral Acceleration Sensor Circuit Malfunction",
|
|
1543
|
+
"category": "Chassis",
|
|
1544
|
+
"severity": "High",
|
|
1545
|
+
"system": "Stability Control",
|
|
1546
|
+
"possible_causes": [
|
|
1547
|
+
"Faulty lateral acceleration sensor",
|
|
1548
|
+
"Sensor not calibrated",
|
|
1549
|
+
"Wiring harness problem",
|
|
1550
|
+
"ESC module fault"
|
|
1551
|
+
]
|
|
1552
|
+
},
|
|
1553
|
+
"C0210": {
|
|
1554
|
+
"code": "C0210",
|
|
1555
|
+
"description": "Park Brake Switch Circuit Malfunction",
|
|
1556
|
+
"category": "Chassis",
|
|
1557
|
+
"severity": "Low",
|
|
1558
|
+
"system": "Parking Brake",
|
|
1559
|
+
"possible_causes": [
|
|
1560
|
+
"Faulty park brake switch",
|
|
1561
|
+
"Wiring harness problem",
|
|
1562
|
+
"Switch misadjusted",
|
|
1563
|
+
"Poor electrical connection"
|
|
1564
|
+
]
|
|
1565
|
+
},
|
|
1566
|
+
"C0221": {
|
|
1567
|
+
"code": "C0221",
|
|
1568
|
+
"description": "Right Front Wheel Speed Sensor Input Signal Missing",
|
|
1569
|
+
"category": "Chassis",
|
|
1570
|
+
"severity": "High",
|
|
1571
|
+
"system": "ABS",
|
|
1572
|
+
"possible_causes": [
|
|
1573
|
+
"Wheel speed sensor not connected",
|
|
1574
|
+
"Faulty wheel speed sensor",
|
|
1575
|
+
"Wiring harness open circuit",
|
|
1576
|
+
"Reluctor ring damaged"
|
|
1577
|
+
]
|
|
1578
|
+
},
|
|
1579
|
+
"C0222": {
|
|
1580
|
+
"code": "C0222",
|
|
1581
|
+
"description": "Right Front Wheel Speed Signal Erratic",
|
|
1582
|
+
"category": "Chassis",
|
|
1583
|
+
"severity": "High",
|
|
1584
|
+
"system": "ABS",
|
|
1585
|
+
"possible_causes": [
|
|
1586
|
+
"Wheel bearing worn",
|
|
1587
|
+
"Reluctor ring damaged",
|
|
1588
|
+
"Sensor air gap too large",
|
|
1589
|
+
"Faulty wheel speed sensor"
|
|
1590
|
+
]
|
|
1591
|
+
},
|
|
1592
|
+
"C0225": {
|
|
1593
|
+
"code": "C0225",
|
|
1594
|
+
"description": "Left Front Wheel Speed Sensor Input Signal Missing",
|
|
1595
|
+
"category": "Chassis",
|
|
1596
|
+
"severity": "High",
|
|
1597
|
+
"system": "ABS",
|
|
1598
|
+
"possible_causes": [
|
|
1599
|
+
"Wheel speed sensor not connected",
|
|
1600
|
+
"Faulty wheel speed sensor",
|
|
1601
|
+
"Wiring harness open circuit",
|
|
1602
|
+
"Reluctor ring damaged"
|
|
1603
|
+
]
|
|
1604
|
+
},
|
|
1605
|
+
"C0226": {
|
|
1606
|
+
"code": "C0226",
|
|
1607
|
+
"description": "Left Front Wheel Speed Signal Erratic",
|
|
1608
|
+
"category": "Chassis",
|
|
1609
|
+
"severity": "High",
|
|
1610
|
+
"system": "ABS",
|
|
1611
|
+
"possible_causes": [
|
|
1612
|
+
"Wheel bearing worn",
|
|
1613
|
+
"Reluctor ring damaged",
|
|
1614
|
+
"Sensor air gap too large",
|
|
1615
|
+
"Faulty wheel speed sensor"
|
|
1616
|
+
]
|
|
1617
|
+
},
|
|
1618
|
+
"C0229": {
|
|
1619
|
+
"code": "C0229",
|
|
1620
|
+
"description": "Right Rear Wheel Speed Sensor Input Signal Missing",
|
|
1621
|
+
"category": "Chassis",
|
|
1622
|
+
"severity": "High",
|
|
1623
|
+
"system": "ABS",
|
|
1624
|
+
"possible_causes": [
|
|
1625
|
+
"Wheel speed sensor not connected",
|
|
1626
|
+
"Faulty wheel speed sensor",
|
|
1627
|
+
"Wiring harness open circuit",
|
|
1628
|
+
"Reluctor ring damaged"
|
|
1629
|
+
]
|
|
1630
|
+
},
|
|
1631
|
+
"C0230": {
|
|
1632
|
+
"code": "C0230",
|
|
1633
|
+
"description": "Right Rear Wheel Speed Signal Erratic",
|
|
1634
|
+
"category": "Chassis",
|
|
1635
|
+
"severity": "High",
|
|
1636
|
+
"system": "ABS",
|
|
1637
|
+
"possible_causes": [
|
|
1638
|
+
"Wheel bearing worn",
|
|
1639
|
+
"Reluctor ring damaged",
|
|
1640
|
+
"Sensor air gap too large",
|
|
1641
|
+
"Faulty wheel speed sensor"
|
|
1642
|
+
]
|
|
1643
|
+
},
|
|
1644
|
+
"C0233": {
|
|
1645
|
+
"code": "C0233",
|
|
1646
|
+
"description": "Left Rear Wheel Speed Sensor Input Signal Missing",
|
|
1647
|
+
"category": "Chassis",
|
|
1648
|
+
"severity": "High",
|
|
1649
|
+
"system": "ABS",
|
|
1650
|
+
"possible_causes": [
|
|
1651
|
+
"Wheel speed sensor not connected",
|
|
1652
|
+
"Faulty wheel speed sensor",
|
|
1653
|
+
"Wiring harness open circuit",
|
|
1654
|
+
"Reluctor ring damaged"
|
|
1655
|
+
]
|
|
1656
|
+
},
|
|
1657
|
+
"C0234": {
|
|
1658
|
+
"code": "C0234",
|
|
1659
|
+
"description": "Left Rear Wheel Speed Signal Erratic",
|
|
1660
|
+
"category": "Chassis",
|
|
1661
|
+
"severity": "High",
|
|
1662
|
+
"system": "ABS",
|
|
1663
|
+
"possible_causes": [
|
|
1664
|
+
"Wheel bearing worn",
|
|
1665
|
+
"Reluctor ring damaged",
|
|
1666
|
+
"Sensor air gap too large",
|
|
1667
|
+
"Faulty wheel speed sensor"
|
|
1668
|
+
]
|
|
1669
|
+
},
|
|
1670
|
+
"C0245": {
|
|
1671
|
+
"code": "C0245",
|
|
1672
|
+
"description": "Wheel Speed Sensor Frequency Error",
|
|
1673
|
+
"category": "Chassis",
|
|
1674
|
+
"severity": "High",
|
|
1675
|
+
"system": "ABS",
|
|
1676
|
+
"possible_causes": [
|
|
1677
|
+
"Wrong tire size installed",
|
|
1678
|
+
"Mismatched tire sizes",
|
|
1679
|
+
"Wheel speed sensor fault",
|
|
1680
|
+
"Reluctor ring incorrect"
|
|
1681
|
+
]
|
|
1682
|
+
},
|
|
1683
|
+
"C0265": {
|
|
1684
|
+
"code": "C0265",
|
|
1685
|
+
"description": "Electronic Brake Control Module Relay Circuit",
|
|
1686
|
+
"category": "Chassis",
|
|
1687
|
+
"severity": "Critical",
|
|
1688
|
+
"system": "ABS",
|
|
1689
|
+
"possible_causes": [
|
|
1690
|
+
"Faulty EBCM relay",
|
|
1691
|
+
"Wiring harness problem",
|
|
1692
|
+
"ABS module fault",
|
|
1693
|
+
"Poor electrical connection"
|
|
1694
|
+
]
|
|
1695
|
+
},
|
|
1696
|
+
"C0267": {
|
|
1697
|
+
"code": "C0267",
|
|
1698
|
+
"description": "Pump Motor Circuit Open",
|
|
1699
|
+
"category": "Chassis",
|
|
1700
|
+
"severity": "Critical",
|
|
1701
|
+
"system": "ABS",
|
|
1702
|
+
"possible_causes": [
|
|
1703
|
+
"ABS pump motor circuit open",
|
|
1704
|
+
"Faulty pump motor",
|
|
1705
|
+
"Wiring harness open circuit",
|
|
1706
|
+
"ABS module fault"
|
|
1707
|
+
]
|
|
1708
|
+
},
|
|
1709
|
+
"C0268": {
|
|
1710
|
+
"code": "C0268",
|
|
1711
|
+
"description": "Pump Motor Circuit Shorted to Ground",
|
|
1712
|
+
"category": "Chassis",
|
|
1713
|
+
"severity": "Critical",
|
|
1714
|
+
"system": "ABS",
|
|
1715
|
+
"possible_causes": [
|
|
1716
|
+
"Pump motor circuit shorted to ground",
|
|
1717
|
+
"Faulty pump motor",
|
|
1718
|
+
"Wiring harness short",
|
|
1719
|
+
"ABS module fault"
|
|
1720
|
+
]
|
|
1721
|
+
},
|
|
1722
|
+
"C0269": {
|
|
1723
|
+
"code": "C0269",
|
|
1724
|
+
"description": "Pump Motor Circuit Shorted to Voltage",
|
|
1725
|
+
"category": "Chassis",
|
|
1726
|
+
"severity": "Critical",
|
|
1727
|
+
"system": "ABS",
|
|
1728
|
+
"possible_causes": [
|
|
1729
|
+
"Pump motor circuit shorted to battery",
|
|
1730
|
+
"Faulty pump motor",
|
|
1731
|
+
"Wiring harness short",
|
|
1732
|
+
"ABS module fault"
|
|
1733
|
+
]
|
|
1734
|
+
},
|
|
1735
|
+
"C0278": {
|
|
1736
|
+
"code": "C0278",
|
|
1737
|
+
"description": "Stability Control System Temporarily Disabled",
|
|
1738
|
+
"category": "Chassis",
|
|
1739
|
+
"severity": "Medium",
|
|
1740
|
+
"system": "Stability Control",
|
|
1741
|
+
"possible_causes": [
|
|
1742
|
+
"Sensor calibration needed",
|
|
1743
|
+
"System self-test failed",
|
|
1744
|
+
"Low battery voltage",
|
|
1745
|
+
"Temporary sensor fault"
|
|
1746
|
+
]
|
|
1747
|
+
},
|
|
1748
|
+
"C0279": {
|
|
1749
|
+
"code": "C0279",
|
|
1750
|
+
"description": "Stability Control System Permanently Disabled",
|
|
1751
|
+
"category": "Chassis",
|
|
1752
|
+
"severity": "High",
|
|
1753
|
+
"system": "Stability Control",
|
|
1754
|
+
"possible_causes": [
|
|
1755
|
+
"ESC module fault",
|
|
1756
|
+
"Multiple sensor faults",
|
|
1757
|
+
"System configuration error",
|
|
1758
|
+
"Hardware failure"
|
|
1759
|
+
]
|
|
1760
|
+
},
|
|
1761
|
+
"C0281": {
|
|
1762
|
+
"code": "C0281",
|
|
1763
|
+
"description": "Brake Booster Pressure Sensor Circuit Malfunction",
|
|
1764
|
+
"category": "Chassis",
|
|
1765
|
+
"severity": "High",
|
|
1766
|
+
"system": "Brake Booster",
|
|
1767
|
+
"possible_causes": [
|
|
1768
|
+
"Faulty brake booster pressure sensor",
|
|
1769
|
+
"Wiring harness problem",
|
|
1770
|
+
"Vacuum leak",
|
|
1771
|
+
"Brake booster fault"
|
|
1772
|
+
]
|
|
1773
|
+
},
|
|
1774
|
+
"C0300": {
|
|
1775
|
+
"code": "C0300",
|
|
1776
|
+
"description": "Air Suspension System Malfunction",
|
|
1777
|
+
"category": "Chassis",
|
|
1778
|
+
"severity": "Medium",
|
|
1779
|
+
"system": "Suspension",
|
|
1780
|
+
"possible_causes": [
|
|
1781
|
+
"Air suspension compressor fault",
|
|
1782
|
+
"Air leak in suspension",
|
|
1783
|
+
"Faulty height sensor",
|
|
1784
|
+
"Control module fault"
|
|
1785
|
+
]
|
|
1786
|
+
},
|
|
1787
|
+
"C0321": {
|
|
1788
|
+
"code": "C0321",
|
|
1789
|
+
"description": "Front Left Height Sensor Circuit Malfunction",
|
|
1790
|
+
"category": "Chassis",
|
|
1791
|
+
"severity": "Medium",
|
|
1792
|
+
"system": "Suspension",
|
|
1793
|
+
"possible_causes": [
|
|
1794
|
+
"Faulty height sensor",
|
|
1795
|
+
"Wiring harness problem",
|
|
1796
|
+
"Sensor linkage disconnected",
|
|
1797
|
+
"Poor electrical connection"
|
|
1798
|
+
]
|
|
1799
|
+
},
|
|
1800
|
+
"C0325": {
|
|
1801
|
+
"code": "C0325",
|
|
1802
|
+
"description": "Front Right Height Sensor Circuit Malfunction",
|
|
1803
|
+
"category": "Chassis",
|
|
1804
|
+
"severity": "Medium",
|
|
1805
|
+
"system": "Suspension",
|
|
1806
|
+
"possible_causes": [
|
|
1807
|
+
"Faulty height sensor",
|
|
1808
|
+
"Wiring harness problem",
|
|
1809
|
+
"Sensor linkage disconnected",
|
|
1810
|
+
"Poor electrical connection"
|
|
1811
|
+
]
|
|
1812
|
+
},
|
|
1813
|
+
"C0327": {
|
|
1814
|
+
"code": "C0327",
|
|
1815
|
+
"description": "Rear Left Height Sensor Circuit Malfunction",
|
|
1816
|
+
"category": "Chassis",
|
|
1817
|
+
"severity": "Medium",
|
|
1818
|
+
"system": "Suspension",
|
|
1819
|
+
"possible_causes": [
|
|
1820
|
+
"Faulty height sensor",
|
|
1821
|
+
"Wiring harness problem",
|
|
1822
|
+
"Sensor linkage disconnected",
|
|
1823
|
+
"Poor electrical connection"
|
|
1824
|
+
]
|
|
1825
|
+
},
|
|
1826
|
+
"C0330": {
|
|
1827
|
+
"code": "C0330",
|
|
1828
|
+
"description": "Rear Right Height Sensor Circuit Malfunction",
|
|
1829
|
+
"category": "Chassis",
|
|
1830
|
+
"severity": "Medium",
|
|
1831
|
+
"system": "Suspension",
|
|
1832
|
+
"possible_causes": [
|
|
1833
|
+
"Faulty height sensor",
|
|
1834
|
+
"Wiring harness problem",
|
|
1835
|
+
"Sensor linkage disconnected",
|
|
1836
|
+
"Poor electrical connection"
|
|
1837
|
+
]
|
|
1838
|
+
},
|
|
1839
|
+
"C0460": {
|
|
1840
|
+
"code": "C0460",
|
|
1841
|
+
"description": "Steering Angle Sensor 1 Circuit Malfunction",
|
|
1842
|
+
"category": "Chassis",
|
|
1843
|
+
"severity": "High",
|
|
1844
|
+
"system": "Power Steering",
|
|
1845
|
+
"possible_causes": [
|
|
1846
|
+
"Faulty steering angle sensor",
|
|
1847
|
+
"Sensor not calibrated",
|
|
1848
|
+
"Wiring harness problem",
|
|
1849
|
+
"EPS control module fault"
|
|
1850
|
+
]
|
|
1851
|
+
},
|
|
1852
|
+
"C0550": {
|
|
1853
|
+
"code": "C0550",
|
|
1854
|
+
"description": "ECU Malfunction",
|
|
1855
|
+
"category": "Chassis",
|
|
1856
|
+
"severity": "Critical",
|
|
1857
|
+
"system": "Chassis Control",
|
|
1858
|
+
"possible_causes": [
|
|
1859
|
+
"Control module internal fault",
|
|
1860
|
+
"Module needs replacement",
|
|
1861
|
+
"Software corruption",
|
|
1862
|
+
"Power supply problem"
|
|
1863
|
+
]
|
|
1864
|
+
},
|
|
1865
|
+
"C0561": {
|
|
1866
|
+
"code": "C0561",
|
|
1867
|
+
"description": "System Disabled Information Stored",
|
|
1868
|
+
"category": "Chassis",
|
|
1869
|
+
"severity": "Medium",
|
|
1870
|
+
"system": "Chassis Control",
|
|
1871
|
+
"possible_causes": [
|
|
1872
|
+
"System disabled by user",
|
|
1873
|
+
"System disabled due to fault",
|
|
1874
|
+
"Configuration error",
|
|
1875
|
+
"Module needs programming"
|
|
1876
|
+
]
|
|
1877
|
+
},
|
|
1878
|
+
"C0710": {
|
|
1879
|
+
"code": "C0710",
|
|
1880
|
+
"description": "Steering Position Sensor Not Learned",
|
|
1881
|
+
"category": "Chassis",
|
|
1882
|
+
"severity": "Medium",
|
|
1883
|
+
"system": "Power Steering",
|
|
1884
|
+
"possible_causes": [
|
|
1885
|
+
"Steering angle sensor calibration required",
|
|
1886
|
+
"Sensor learning procedure not performed",
|
|
1887
|
+
"Battery disconnected",
|
|
1888
|
+
"Sensor replaced without calibration"
|
|
1889
|
+
]
|
|
1890
|
+
},
|
|
1891
|
+
"C0750": {
|
|
1892
|
+
"code": "C0750",
|
|
1893
|
+
"description": "Electronic Stability Program (ESP) Control Module Performance",
|
|
1894
|
+
"category": "Chassis",
|
|
1895
|
+
"severity": "High",
|
|
1896
|
+
"system": "Stability Control",
|
|
1897
|
+
"possible_causes": [
|
|
1898
|
+
"ESP module performance degraded",
|
|
1899
|
+
"Software issue",
|
|
1900
|
+
"Sensor inputs out of range",
|
|
1901
|
+
"Module needs replacement"
|
|
1902
|
+
]
|
|
1903
|
+
},
|
|
1904
|
+
"C0800": {
|
|
1905
|
+
"code": "C0800",
|
|
1906
|
+
"description": "Device Voltage Low",
|
|
1907
|
+
"category": "Chassis",
|
|
1908
|
+
"severity": "Medium",
|
|
1909
|
+
"system": "Power Supply",
|
|
1910
|
+
"possible_causes": [
|
|
1911
|
+
"Low battery voltage",
|
|
1912
|
+
"Faulty alternator",
|
|
1913
|
+
"Poor battery connection",
|
|
1914
|
+
"Excessive electrical load"
|
|
1915
|
+
]
|
|
1916
|
+
},
|
|
1917
|
+
"C0801": {
|
|
1918
|
+
"code": "C0801",
|
|
1919
|
+
"description": "Device Voltage High",
|
|
1920
|
+
"category": "Chassis",
|
|
1921
|
+
"severity": "Medium",
|
|
1922
|
+
"system": "Power Supply",
|
|
1923
|
+
"possible_causes": [
|
|
1924
|
+
"Alternator overcharging",
|
|
1925
|
+
"Faulty voltage regulator",
|
|
1926
|
+
"Poor ground connection",
|
|
1927
|
+
"Charging system problem"
|
|
1928
|
+
]
|
|
1929
|
+
},
|
|
1930
|
+
"B0001": {
|
|
1931
|
+
"code": "B0001",
|
|
1932
|
+
"description": "Driver Airbag Circuit Malfunction",
|
|
1933
|
+
"category": "Body",
|
|
1934
|
+
"severity": "Critical",
|
|
1935
|
+
"system": "Airbag System",
|
|
1936
|
+
"possible_causes": [
|
|
1937
|
+
"Faulty driver airbag",
|
|
1938
|
+
"Airbag clockspring fault",
|
|
1939
|
+
"Wiring harness problem",
|
|
1940
|
+
"SRS control module fault"
|
|
1941
|
+
]
|
|
1942
|
+
},
|
|
1943
|
+
"B0002": {
|
|
1944
|
+
"code": "B0002",
|
|
1945
|
+
"description": "Passenger Airbag Circuit Malfunction",
|
|
1946
|
+
"category": "Body",
|
|
1947
|
+
"severity": "Critical",
|
|
1948
|
+
"system": "Airbag System",
|
|
1949
|
+
"possible_causes": [
|
|
1950
|
+
"Faulty passenger airbag",
|
|
1951
|
+
"Wiring harness open or shorted",
|
|
1952
|
+
"Poor electrical connection",
|
|
1953
|
+
"SRS control module fault"
|
|
1954
|
+
]
|
|
1955
|
+
},
|
|
1956
|
+
"B0010": {
|
|
1957
|
+
"code": "B0010",
|
|
1958
|
+
"description": "Left Side Airbag Circuit Malfunction",
|
|
1959
|
+
"category": "Body",
|
|
1960
|
+
"severity": "Critical",
|
|
1961
|
+
"system": "Airbag System",
|
|
1962
|
+
"possible_causes": [
|
|
1963
|
+
"Faulty side airbag",
|
|
1964
|
+
"Wiring harness problem",
|
|
1965
|
+
"Seat connector disconnected",
|
|
1966
|
+
"SRS control module fault"
|
|
1967
|
+
]
|
|
1968
|
+
},
|
|
1969
|
+
"B0011": {
|
|
1970
|
+
"code": "B0011",
|
|
1971
|
+
"description": "Right Side Airbag Circuit Malfunction",
|
|
1972
|
+
"category": "Body",
|
|
1973
|
+
"severity": "Critical",
|
|
1974
|
+
"system": "Airbag System",
|
|
1975
|
+
"possible_causes": [
|
|
1976
|
+
"Faulty side airbag",
|
|
1977
|
+
"Wiring harness problem",
|
|
1978
|
+
"Seat connector disconnected",
|
|
1979
|
+
"SRS control module fault"
|
|
1980
|
+
]
|
|
1981
|
+
},
|
|
1982
|
+
"B0015": {
|
|
1983
|
+
"code": "B0015",
|
|
1984
|
+
"description": "Driver Seat Belt Pretensioner Circuit Malfunction",
|
|
1985
|
+
"category": "Body",
|
|
1986
|
+
"severity": "High",
|
|
1987
|
+
"system": "Airbag System",
|
|
1988
|
+
"possible_causes": [
|
|
1989
|
+
"Faulty seat belt pretensioner",
|
|
1990
|
+
"Wiring harness problem",
|
|
1991
|
+
"Connector under seat disconnected",
|
|
1992
|
+
"SRS control module fault"
|
|
1993
|
+
]
|
|
1994
|
+
},
|
|
1995
|
+
"B0016": {
|
|
1996
|
+
"code": "B0016",
|
|
1997
|
+
"description": "Passenger Seat Belt Pretensioner Circuit Malfunction",
|
|
1998
|
+
"category": "Body",
|
|
1999
|
+
"severity": "High",
|
|
2000
|
+
"system": "Airbag System",
|
|
2001
|
+
"possible_causes": [
|
|
2002
|
+
"Faulty seat belt pretensioner",
|
|
2003
|
+
"Wiring harness problem",
|
|
2004
|
+
"Connector under seat disconnected",
|
|
2005
|
+
"SRS control module fault"
|
|
2006
|
+
]
|
|
2007
|
+
},
|
|
2008
|
+
"B0020": {
|
|
2009
|
+
"code": "B0020",
|
|
2010
|
+
"description": "Front Impact Sensor Circuit Malfunction",
|
|
2011
|
+
"category": "Body",
|
|
2012
|
+
"severity": "High",
|
|
2013
|
+
"system": "Airbag System",
|
|
2014
|
+
"possible_causes": [
|
|
2015
|
+
"Faulty impact sensor",
|
|
2016
|
+
"Wiring harness problem",
|
|
2017
|
+
"Sensor mounting damaged",
|
|
2018
|
+
"Poor electrical connection"
|
|
2019
|
+
]
|
|
2020
|
+
},
|
|
2021
|
+
"B0050": {
|
|
2022
|
+
"code": "B0050",
|
|
2023
|
+
"description": "Driver Seat Belt Buckle Switch Circuit Malfunction",
|
|
2024
|
+
"category": "Body",
|
|
2025
|
+
"severity": "Low",
|
|
2026
|
+
"system": "Seat Belt System",
|
|
2027
|
+
"possible_causes": [
|
|
2028
|
+
"Faulty seat belt buckle switch",
|
|
2029
|
+
"Wiring harness problem",
|
|
2030
|
+
"Switch stuck or damaged",
|
|
2031
|
+
"Poor electrical connection"
|
|
2032
|
+
]
|
|
2033
|
+
},
|
|
2034
|
+
"B0051": {
|
|
2035
|
+
"code": "B0051",
|
|
2036
|
+
"description": "Passenger Seat Belt Buckle Switch Circuit Malfunction",
|
|
2037
|
+
"category": "Body",
|
|
2038
|
+
"severity": "Low",
|
|
2039
|
+
"system": "Seat Belt System",
|
|
2040
|
+
"possible_causes": [
|
|
2041
|
+
"Faulty seat belt buckle switch",
|
|
2042
|
+
"Wiring harness problem",
|
|
2043
|
+
"Switch stuck or damaged",
|
|
2044
|
+
"Poor electrical connection"
|
|
2045
|
+
]
|
|
2046
|
+
},
|
|
2047
|
+
"B0100": {
|
|
2048
|
+
"code": "B0100",
|
|
2049
|
+
"description": "Electronic Control Unit Malfunction",
|
|
2050
|
+
"category": "Body",
|
|
2051
|
+
"severity": "Critical",
|
|
2052
|
+
"system": "Body Control Module",
|
|
2053
|
+
"possible_causes": [
|
|
2054
|
+
"BCM internal fault",
|
|
2055
|
+
"Module needs replacement",
|
|
2056
|
+
"Software corruption",
|
|
2057
|
+
"Power supply problem"
|
|
2058
|
+
]
|
|
2059
|
+
},
|
|
2060
|
+
"B0101": {
|
|
2061
|
+
"code": "B0101",
|
|
2062
|
+
"description": "SRS Control Module Malfunction",
|
|
2063
|
+
"category": "Body",
|
|
2064
|
+
"severity": "Critical",
|
|
2065
|
+
"system": "Airbag System",
|
|
2066
|
+
"possible_causes": [
|
|
2067
|
+
"SRS module internal fault",
|
|
2068
|
+
"Module needs replacement",
|
|
2069
|
+
"Crash data stored",
|
|
2070
|
+
"Module needs reset"
|
|
2071
|
+
]
|
|
2072
|
+
},
|
|
2073
|
+
"B0132": {
|
|
2074
|
+
"code": "B0132",
|
|
2075
|
+
"description": "Passenger Airbag Deactivation Indicator Circuit Malfunction",
|
|
2076
|
+
"category": "Body",
|
|
2077
|
+
"severity": "Medium",
|
|
2078
|
+
"system": "Airbag System",
|
|
2079
|
+
"possible_causes": [
|
|
2080
|
+
"Faulty airbag indicator lamp",
|
|
2081
|
+
"Wiring harness problem",
|
|
2082
|
+
"Instrument cluster fault",
|
|
2083
|
+
"SRS module fault"
|
|
2084
|
+
]
|
|
2085
|
+
},
|
|
2086
|
+
"B0200": {
|
|
2087
|
+
"code": "B0200",
|
|
2088
|
+
"description": "Anti-Theft System Malfunction",
|
|
2089
|
+
"category": "Body",
|
|
2090
|
+
"severity": "Medium",
|
|
2091
|
+
"system": "Security System",
|
|
2092
|
+
"possible_causes": [
|
|
2093
|
+
"Immobilizer key not recognized",
|
|
2094
|
+
"Faulty immobilizer antenna",
|
|
2095
|
+
"Security module fault",
|
|
2096
|
+
"Key needs programming"
|
|
2097
|
+
]
|
|
2098
|
+
},
|
|
2099
|
+
"B0201": {
|
|
2100
|
+
"code": "B0201",
|
|
2101
|
+
"description": "Immobilizer Malfunction",
|
|
2102
|
+
"category": "Body",
|
|
2103
|
+
"severity": "Critical",
|
|
2104
|
+
"system": "Security System",
|
|
2105
|
+
"possible_causes": [
|
|
2106
|
+
"Immobilizer not programmed",
|
|
2107
|
+
"Key synchronization lost",
|
|
2108
|
+
"Immobilizer module fault",
|
|
2109
|
+
"Transponder key fault"
|
|
2110
|
+
]
|
|
2111
|
+
},
|
|
2112
|
+
"B0300": {
|
|
2113
|
+
"code": "B0300",
|
|
2114
|
+
"description": "Door Ajar Circuit Malfunction",
|
|
2115
|
+
"category": "Body",
|
|
2116
|
+
"severity": "Low",
|
|
2117
|
+
"system": "Door Control",
|
|
2118
|
+
"possible_causes": [
|
|
2119
|
+
"Faulty door ajar switch",
|
|
2120
|
+
"Door not closing properly",
|
|
2121
|
+
"Wiring harness problem",
|
|
2122
|
+
"Door latch worn"
|
|
2123
|
+
]
|
|
2124
|
+
},
|
|
2125
|
+
"B0301": {
|
|
2126
|
+
"code": "B0301",
|
|
2127
|
+
"description": "Driver Door Ajar Circuit Malfunction",
|
|
2128
|
+
"category": "Body",
|
|
2129
|
+
"severity": "Low",
|
|
2130
|
+
"system": "Door Control",
|
|
2131
|
+
"possible_causes": [
|
|
2132
|
+
"Faulty driver door ajar switch",
|
|
2133
|
+
"Door not closing properly",
|
|
2134
|
+
"Wiring harness problem",
|
|
2135
|
+
"Door latch worn"
|
|
2136
|
+
]
|
|
2137
|
+
},
|
|
2138
|
+
"B0302": {
|
|
2139
|
+
"code": "B0302",
|
|
2140
|
+
"description": "Passenger Door Ajar Circuit Malfunction",
|
|
2141
|
+
"category": "Body",
|
|
2142
|
+
"severity": "Low",
|
|
2143
|
+
"system": "Door Control",
|
|
2144
|
+
"possible_causes": [
|
|
2145
|
+
"Faulty passenger door ajar switch",
|
|
2146
|
+
"Door not closing properly",
|
|
2147
|
+
"Wiring harness problem",
|
|
2148
|
+
"Door latch worn"
|
|
2149
|
+
]
|
|
2150
|
+
},
|
|
2151
|
+
"B0400": {
|
|
2152
|
+
"code": "B0400",
|
|
2153
|
+
"description": "Power Window Motor Circuit Malfunction",
|
|
2154
|
+
"category": "Body",
|
|
2155
|
+
"severity": "Low",
|
|
2156
|
+
"system": "Power Windows",
|
|
2157
|
+
"possible_causes": [
|
|
2158
|
+
"Faulty window motor",
|
|
2159
|
+
"Window regulator jammed",
|
|
2160
|
+
"Wiring harness problem",
|
|
2161
|
+
"Window switch fault"
|
|
2162
|
+
]
|
|
2163
|
+
},
|
|
2164
|
+
"B0401": {
|
|
2165
|
+
"code": "B0401",
|
|
2166
|
+
"description": "Driver Power Window Circuit Malfunction",
|
|
2167
|
+
"category": "Body",
|
|
2168
|
+
"severity": "Low",
|
|
2169
|
+
"system": "Power Windows",
|
|
2170
|
+
"possible_causes": [
|
|
2171
|
+
"Faulty driver window motor",
|
|
2172
|
+
"Window regulator stuck",
|
|
2173
|
+
"Wiring harness problem",
|
|
2174
|
+
"Window switch fault"
|
|
2175
|
+
]
|
|
2176
|
+
},
|
|
2177
|
+
"B0500": {
|
|
2178
|
+
"code": "B0500",
|
|
2179
|
+
"description": "Central Locking System Malfunction",
|
|
2180
|
+
"category": "Body",
|
|
2181
|
+
"severity": "Low",
|
|
2182
|
+
"system": "Door Locks",
|
|
2183
|
+
"possible_causes": [
|
|
2184
|
+
"Faulty door lock actuator",
|
|
2185
|
+
"Wiring harness problem",
|
|
2186
|
+
"Central locking module fault",
|
|
2187
|
+
"Door lock mechanism jammed"
|
|
2188
|
+
]
|
|
2189
|
+
},
|
|
2190
|
+
"B0501": {
|
|
2191
|
+
"code": "B0501",
|
|
2192
|
+
"description": "Driver Door Lock Circuit Malfunction",
|
|
2193
|
+
"category": "Body",
|
|
2194
|
+
"severity": "Low",
|
|
2195
|
+
"system": "Door Locks",
|
|
2196
|
+
"possible_causes": [
|
|
2197
|
+
"Faulty driver door lock actuator",
|
|
2198
|
+
"Wiring harness problem",
|
|
2199
|
+
"Lock mechanism stuck",
|
|
2200
|
+
"Poor electrical connection"
|
|
2201
|
+
]
|
|
2202
|
+
},
|
|
2203
|
+
"B0600": {
|
|
2204
|
+
"code": "B0600",
|
|
2205
|
+
"description": "Lamp Circuit Malfunction",
|
|
2206
|
+
"category": "Body",
|
|
2207
|
+
"severity": "Low",
|
|
2208
|
+
"system": "Lighting System",
|
|
2209
|
+
"possible_causes": [
|
|
2210
|
+
"Burned out bulb",
|
|
2211
|
+
"Wiring harness problem",
|
|
2212
|
+
"Lamp socket corrosion",
|
|
2213
|
+
"BCM fault"
|
|
2214
|
+
]
|
|
2215
|
+
},
|
|
2216
|
+
"B0601": {
|
|
2217
|
+
"code": "B0601",
|
|
2218
|
+
"description": "Headlamp Circuit Malfunction",
|
|
2219
|
+
"category": "Body",
|
|
2220
|
+
"severity": "Medium",
|
|
2221
|
+
"system": "Lighting System",
|
|
2222
|
+
"possible_causes": [
|
|
2223
|
+
"Burned out headlamp bulb",
|
|
2224
|
+
"Faulty headlamp ballast (HID)",
|
|
2225
|
+
"Wiring harness problem",
|
|
2226
|
+
"Headlamp module fault"
|
|
2227
|
+
]
|
|
2228
|
+
},
|
|
2229
|
+
"B0602": {
|
|
2230
|
+
"code": "B0602",
|
|
2231
|
+
"description": "Left Turn Signal Circuit Malfunction",
|
|
2232
|
+
"category": "Body",
|
|
2233
|
+
"severity": "Low",
|
|
2234
|
+
"system": "Lighting System",
|
|
2235
|
+
"possible_causes": [
|
|
2236
|
+
"Burned out turn signal bulb",
|
|
2237
|
+
"Wiring harness problem",
|
|
2238
|
+
"Flasher relay fault",
|
|
2239
|
+
"BCM fault"
|
|
2240
|
+
]
|
|
2241
|
+
},
|
|
2242
|
+
"B0603": {
|
|
2243
|
+
"code": "B0603",
|
|
2244
|
+
"description": "Right Turn Signal Circuit Malfunction",
|
|
2245
|
+
"category": "Body",
|
|
2246
|
+
"severity": "Low",
|
|
2247
|
+
"system": "Lighting System",
|
|
2248
|
+
"possible_causes": [
|
|
2249
|
+
"Burned out turn signal bulb",
|
|
2250
|
+
"Wiring harness problem",
|
|
2251
|
+
"Flasher relay fault",
|
|
2252
|
+
"BCM fault"
|
|
2253
|
+
]
|
|
2254
|
+
},
|
|
2255
|
+
"B0604": {
|
|
2256
|
+
"code": "B0604",
|
|
2257
|
+
"description": "Brake Lamp Circuit Malfunction",
|
|
2258
|
+
"category": "Body",
|
|
2259
|
+
"severity": "High",
|
|
2260
|
+
"system": "Lighting System",
|
|
2261
|
+
"possible_causes": [
|
|
2262
|
+
"Burned out brake light bulb",
|
|
2263
|
+
"Faulty brake light switch",
|
|
2264
|
+
"Wiring harness problem",
|
|
2265
|
+
"BCM fault"
|
|
2266
|
+
]
|
|
2267
|
+
},
|
|
2268
|
+
"B0700": {
|
|
2269
|
+
"code": "B0700",
|
|
2270
|
+
"description": "HVAC System Malfunction",
|
|
2271
|
+
"category": "Body",
|
|
2272
|
+
"severity": "Low",
|
|
2273
|
+
"system": "Climate Control",
|
|
2274
|
+
"possible_causes": [
|
|
2275
|
+
"HVAC control module fault",
|
|
2276
|
+
"Sensor malfunction",
|
|
2277
|
+
"Actuator motor fault",
|
|
2278
|
+
"Wiring harness problem"
|
|
2279
|
+
]
|
|
2280
|
+
},
|
|
2281
|
+
"B0701": {
|
|
2282
|
+
"code": "B0701",
|
|
2283
|
+
"description": "Cabin Temperature Sensor Circuit Malfunction",
|
|
2284
|
+
"category": "Body",
|
|
2285
|
+
"severity": "Low",
|
|
2286
|
+
"system": "Climate Control",
|
|
2287
|
+
"possible_causes": [
|
|
2288
|
+
"Faulty cabin temperature sensor",
|
|
2289
|
+
"Wiring harness problem",
|
|
2290
|
+
"HVAC module fault",
|
|
2291
|
+
"Poor electrical connection"
|
|
2292
|
+
]
|
|
2293
|
+
},
|
|
2294
|
+
"B0702": {
|
|
2295
|
+
"code": "B0702",
|
|
2296
|
+
"description": "Ambient Temperature Sensor Circuit Malfunction",
|
|
2297
|
+
"category": "Body",
|
|
2298
|
+
"severity": "Low",
|
|
2299
|
+
"system": "Climate Control",
|
|
2300
|
+
"possible_causes": [
|
|
2301
|
+
"Faulty ambient temperature sensor",
|
|
2302
|
+
"Wiring harness problem",
|
|
2303
|
+
"Sensor location contaminated",
|
|
2304
|
+
"Poor electrical connection"
|
|
2305
|
+
]
|
|
2306
|
+
},
|
|
2307
|
+
"B0703": {
|
|
2308
|
+
"code": "B0703",
|
|
2309
|
+
"description": "Evaporator Temperature Sensor Circuit Malfunction",
|
|
2310
|
+
"category": "Body",
|
|
2311
|
+
"severity": "Low",
|
|
2312
|
+
"system": "Climate Control",
|
|
2313
|
+
"possible_causes": [
|
|
2314
|
+
"Faulty evaporator temperature sensor",
|
|
2315
|
+
"Wiring harness problem",
|
|
2316
|
+
"HVAC module fault",
|
|
2317
|
+
"A/C system issue"
|
|
2318
|
+
]
|
|
2319
|
+
},
|
|
2320
|
+
"B0710": {
|
|
2321
|
+
"code": "B0710",
|
|
2322
|
+
"description": "Blower Motor Circuit Malfunction",
|
|
2323
|
+
"category": "Body",
|
|
2324
|
+
"severity": "Low",
|
|
2325
|
+
"system": "Climate Control",
|
|
2326
|
+
"possible_causes": [
|
|
2327
|
+
"Faulty blower motor",
|
|
2328
|
+
"Blower motor resistor fault",
|
|
2329
|
+
"Wiring harness problem",
|
|
2330
|
+
"HVAC control module fault"
|
|
2331
|
+
]
|
|
2332
|
+
},
|
|
2333
|
+
"B0800": {
|
|
2334
|
+
"code": "B0800",
|
|
2335
|
+
"description": "Instrument Cluster Malfunction",
|
|
2336
|
+
"category": "Body",
|
|
2337
|
+
"severity": "Medium",
|
|
2338
|
+
"system": "Instrument Cluster",
|
|
2339
|
+
"possible_causes": [
|
|
2340
|
+
"Instrument cluster internal fault",
|
|
2341
|
+
"CAN communication problem",
|
|
2342
|
+
"Power supply issue",
|
|
2343
|
+
"Cluster needs replacement"
|
|
2344
|
+
]
|
|
2345
|
+
},
|
|
2346
|
+
"B1000": {
|
|
2347
|
+
"code": "B1000",
|
|
2348
|
+
"description": "Body Control Module Malfunction",
|
|
2349
|
+
"category": "Body",
|
|
2350
|
+
"severity": "High",
|
|
2351
|
+
"system": "Body Control Module",
|
|
2352
|
+
"possible_causes": [
|
|
2353
|
+
"BCM internal fault",
|
|
2354
|
+
"Module needs replacement",
|
|
2355
|
+
"Software corruption",
|
|
2356
|
+
"Power supply problem"
|
|
2357
|
+
]
|
|
2358
|
+
},
|
|
2359
|
+
"B1200": {
|
|
2360
|
+
"code": "B1200",
|
|
2361
|
+
"description": "Keyless Entry System Malfunction",
|
|
2362
|
+
"category": "Body",
|
|
2363
|
+
"severity": "Low",
|
|
2364
|
+
"system": "Keyless Entry",
|
|
2365
|
+
"possible_causes": [
|
|
2366
|
+
"Key fob battery weak",
|
|
2367
|
+
"Key fob not synchronized",
|
|
2368
|
+
"BCM fault",
|
|
2369
|
+
"Receiver antenna fault"
|
|
2370
|
+
]
|
|
2371
|
+
},
|
|
2372
|
+
"B1300": {
|
|
2373
|
+
"code": "B1300",
|
|
2374
|
+
"description": "Tire Pressure Monitor System Malfunction",
|
|
2375
|
+
"category": "Body",
|
|
2376
|
+
"severity": "Low",
|
|
2377
|
+
"system": "TPMS",
|
|
2378
|
+
"possible_causes": [
|
|
2379
|
+
"TPMS sensor battery dead",
|
|
2380
|
+
"Faulty TPMS sensor",
|
|
2381
|
+
"TPMS receiver fault",
|
|
2382
|
+
"Sensor not programmed"
|
|
2383
|
+
]
|
|
2384
|
+
},
|
|
2385
|
+
"B1301": {
|
|
2386
|
+
"code": "B1301",
|
|
2387
|
+
"description": "Left Front TPMS Sensor Malfunction",
|
|
2388
|
+
"category": "Body",
|
|
2389
|
+
"severity": "Low",
|
|
2390
|
+
"system": "TPMS",
|
|
2391
|
+
"possible_causes": [
|
|
2392
|
+
"Left front TPMS sensor battery dead",
|
|
2393
|
+
"Faulty TPMS sensor",
|
|
2394
|
+
"Signal not received",
|
|
2395
|
+
"Sensor damaged during tire service"
|
|
2396
|
+
]
|
|
2397
|
+
},
|
|
2398
|
+
"B1302": {
|
|
2399
|
+
"code": "B1302",
|
|
2400
|
+
"description": "Right Front TPMS Sensor Malfunction",
|
|
2401
|
+
"category": "Body",
|
|
2402
|
+
"severity": "Low",
|
|
2403
|
+
"system": "TPMS",
|
|
2404
|
+
"possible_causes": [
|
|
2405
|
+
"Right front TPMS sensor battery dead",
|
|
2406
|
+
"Faulty TPMS sensor",
|
|
2407
|
+
"Signal not received",
|
|
2408
|
+
"Sensor damaged during tire service"
|
|
2409
|
+
]
|
|
2410
|
+
},
|
|
2411
|
+
"B1303": {
|
|
2412
|
+
"code": "B1303",
|
|
2413
|
+
"description": "Left Rear TPMS Sensor Malfunction",
|
|
2414
|
+
"category": "Body",
|
|
2415
|
+
"severity": "Low",
|
|
2416
|
+
"system": "TPMS",
|
|
2417
|
+
"possible_causes": [
|
|
2418
|
+
"Left rear TPMS sensor battery dead",
|
|
2419
|
+
"Faulty TPMS sensor",
|
|
2420
|
+
"Signal not received",
|
|
2421
|
+
"Sensor damaged during tire service"
|
|
2422
|
+
]
|
|
2423
|
+
},
|
|
2424
|
+
"B1304": {
|
|
2425
|
+
"code": "B1304",
|
|
2426
|
+
"description": "Right Rear TPMS Sensor Malfunction",
|
|
2427
|
+
"category": "Body",
|
|
2428
|
+
"severity": "Low",
|
|
2429
|
+
"system": "TPMS",
|
|
2430
|
+
"possible_causes": [
|
|
2431
|
+
"Right rear TPMS sensor battery dead",
|
|
2432
|
+
"Faulty TPMS sensor",
|
|
2433
|
+
"Signal not received",
|
|
2434
|
+
"Sensor damaged during tire service"
|
|
2435
|
+
]
|
|
2436
|
+
},
|
|
2437
|
+
"B1305": {
|
|
2438
|
+
"code": "B1305",
|
|
2439
|
+
"description": "Spare Tire TPMS Sensor Malfunction",
|
|
2440
|
+
"category": "Body",
|
|
2441
|
+
"severity": "Low",
|
|
2442
|
+
"system": "TPMS",
|
|
2443
|
+
"possible_causes": [
|
|
2444
|
+
"Spare tire TPMS sensor battery dead",
|
|
2445
|
+
"Faulty TPMS sensor",
|
|
2446
|
+
"Signal not received",
|
|
2447
|
+
"Sensor not programmed"
|
|
2448
|
+
]
|
|
2449
|
+
},
|
|
2450
|
+
"U0100": {
|
|
2451
|
+
"code": "U0100",
|
|
2452
|
+
"description": "Lost Communication With ECM/PCM",
|
|
2453
|
+
"category": "Network",
|
|
2454
|
+
"severity": "Critical",
|
|
2455
|
+
"system": "CAN Bus",
|
|
2456
|
+
"possible_causes": [
|
|
2457
|
+
"ECM not powered",
|
|
2458
|
+
"CAN bus wiring problem",
|
|
2459
|
+
"ECM internal fault",
|
|
2460
|
+
"CAN bus termination issue"
|
|
2461
|
+
]
|
|
2462
|
+
},
|
|
2463
|
+
"U0101": {
|
|
2464
|
+
"code": "U0101",
|
|
2465
|
+
"description": "Lost Communication With TCM",
|
|
2466
|
+
"category": "Network",
|
|
2467
|
+
"severity": "Critical",
|
|
2468
|
+
"system": "CAN Bus",
|
|
2469
|
+
"possible_causes": [
|
|
2470
|
+
"TCM not powered",
|
|
2471
|
+
"CAN bus wiring problem",
|
|
2472
|
+
"TCM internal fault",
|
|
2473
|
+
"CAN bus short circuit"
|
|
2474
|
+
]
|
|
2475
|
+
},
|
|
2476
|
+
"U0102": {
|
|
2477
|
+
"code": "U0102",
|
|
2478
|
+
"description": "Lost Communication With Transfer Case Control Module",
|
|
2479
|
+
"category": "Network",
|
|
2480
|
+
"severity": "High",
|
|
2481
|
+
"system": "CAN Bus",
|
|
2482
|
+
"possible_causes": [
|
|
2483
|
+
"Transfer case module not powered",
|
|
2484
|
+
"CAN bus wiring problem",
|
|
2485
|
+
"Module internal fault",
|
|
2486
|
+
"Poor ground connection"
|
|
2487
|
+
]
|
|
2488
|
+
},
|
|
2489
|
+
"U0103": {
|
|
2490
|
+
"code": "U0103",
|
|
2491
|
+
"description": "Lost Communication With Gear Shift Module",
|
|
2492
|
+
"category": "Network",
|
|
2493
|
+
"severity": "High",
|
|
2494
|
+
"system": "CAN Bus",
|
|
2495
|
+
"possible_causes": [
|
|
2496
|
+
"Gear shift module not powered",
|
|
2497
|
+
"CAN bus wiring problem",
|
|
2498
|
+
"Module internal fault",
|
|
2499
|
+
"Connector problem"
|
|
2500
|
+
]
|
|
2501
|
+
},
|
|
2502
|
+
"U0121": {
|
|
2503
|
+
"code": "U0121",
|
|
2504
|
+
"description": "Lost Communication With ABS Control Module",
|
|
2505
|
+
"category": "Network",
|
|
2506
|
+
"severity": "Critical",
|
|
2507
|
+
"system": "CAN Bus",
|
|
2508
|
+
"possible_causes": [
|
|
2509
|
+
"ABS module not powered",
|
|
2510
|
+
"CAN bus wiring problem",
|
|
2511
|
+
"ABS module internal fault",
|
|
2512
|
+
"Poor ground connection"
|
|
2513
|
+
]
|
|
2514
|
+
},
|
|
2515
|
+
"U0122": {
|
|
2516
|
+
"code": "U0122",
|
|
2517
|
+
"description": "Lost Communication With Vehicle Dynamics Control Module",
|
|
2518
|
+
"category": "Network",
|
|
2519
|
+
"severity": "High",
|
|
2520
|
+
"system": "CAN Bus",
|
|
2521
|
+
"possible_causes": [
|
|
2522
|
+
"VDC module not powered",
|
|
2523
|
+
"CAN bus wiring problem",
|
|
2524
|
+
"Module internal fault",
|
|
2525
|
+
"CAN bus termination problem"
|
|
2526
|
+
]
|
|
2527
|
+
},
|
|
2528
|
+
"U0123": {
|
|
2529
|
+
"code": "U0123",
|
|
2530
|
+
"description": "Lost Communication With Yaw Rate Sensor Module",
|
|
2531
|
+
"category": "Network",
|
|
2532
|
+
"severity": "High",
|
|
2533
|
+
"system": "CAN Bus",
|
|
2534
|
+
"possible_causes": [
|
|
2535
|
+
"Yaw rate sensor not powered",
|
|
2536
|
+
"CAN bus wiring problem",
|
|
2537
|
+
"Sensor module fault",
|
|
2538
|
+
"Poor electrical connection"
|
|
2539
|
+
]
|
|
2540
|
+
},
|
|
2541
|
+
"U0140": {
|
|
2542
|
+
"code": "U0140",
|
|
2543
|
+
"description": "Lost Communication With Body Control Module",
|
|
2544
|
+
"category": "Network",
|
|
2545
|
+
"severity": "High",
|
|
2546
|
+
"system": "CAN Bus",
|
|
2547
|
+
"possible_causes": [
|
|
2548
|
+
"BCM not powered",
|
|
2549
|
+
"CAN bus wiring problem",
|
|
2550
|
+
"BCM internal fault",
|
|
2551
|
+
"Ground connection issue"
|
|
2552
|
+
]
|
|
2553
|
+
},
|
|
2554
|
+
"U0141": {
|
|
2555
|
+
"code": "U0141",
|
|
2556
|
+
"description": "Lost Communication With Body Control Module 'B'",
|
|
2557
|
+
"category": "Network",
|
|
2558
|
+
"severity": "High",
|
|
2559
|
+
"system": "CAN Bus",
|
|
2560
|
+
"possible_causes": [
|
|
2561
|
+
"BCM not powered",
|
|
2562
|
+
"CAN bus wiring problem",
|
|
2563
|
+
"Module internal fault",
|
|
2564
|
+
"Connector problem"
|
|
2565
|
+
]
|
|
2566
|
+
},
|
|
2567
|
+
"U0151": {
|
|
2568
|
+
"code": "U0151",
|
|
2569
|
+
"description": "Lost Communication With SRS Control Module",
|
|
2570
|
+
"category": "Network",
|
|
2571
|
+
"severity": "Critical",
|
|
2572
|
+
"system": "CAN Bus",
|
|
2573
|
+
"possible_causes": [
|
|
2574
|
+
"SRS module not powered",
|
|
2575
|
+
"CAN bus wiring problem",
|
|
2576
|
+
"SRS module internal fault",
|
|
2577
|
+
"Ground connection problem"
|
|
2578
|
+
]
|
|
2579
|
+
},
|
|
2580
|
+
"U0155": {
|
|
2581
|
+
"code": "U0155",
|
|
2582
|
+
"description": "Lost Communication With Instrument Panel Cluster",
|
|
2583
|
+
"category": "Network",
|
|
2584
|
+
"severity": "Medium",
|
|
2585
|
+
"system": "CAN Bus",
|
|
2586
|
+
"possible_causes": [
|
|
2587
|
+
"Instrument cluster not powered",
|
|
2588
|
+
"CAN bus wiring problem",
|
|
2589
|
+
"Cluster internal fault",
|
|
2590
|
+
"Poor electrical connection"
|
|
2591
|
+
]
|
|
2592
|
+
},
|
|
2593
|
+
"U0164": {
|
|
2594
|
+
"code": "U0164",
|
|
2595
|
+
"description": "Lost Communication With HVAC Control Module",
|
|
2596
|
+
"category": "Network",
|
|
2597
|
+
"severity": "Low",
|
|
2598
|
+
"system": "CAN Bus",
|
|
2599
|
+
"possible_causes": [
|
|
2600
|
+
"HVAC module not powered",
|
|
2601
|
+
"CAN bus wiring problem",
|
|
2602
|
+
"Module internal fault",
|
|
2603
|
+
"Connector problem"
|
|
2604
|
+
]
|
|
2605
|
+
},
|
|
2606
|
+
"U0168": {
|
|
2607
|
+
"code": "U0168",
|
|
2608
|
+
"description": "Lost Communication With Vehicle Security Control Module",
|
|
2609
|
+
"category": "Network",
|
|
2610
|
+
"severity": "Medium",
|
|
2611
|
+
"system": "CAN Bus",
|
|
2612
|
+
"possible_causes": [
|
|
2613
|
+
"Security module not powered",
|
|
2614
|
+
"CAN bus wiring problem",
|
|
2615
|
+
"Module internal fault",
|
|
2616
|
+
"Ground connection problem"
|
|
2617
|
+
]
|
|
2618
|
+
},
|
|
2619
|
+
"U0184": {
|
|
2620
|
+
"code": "U0184",
|
|
2621
|
+
"description": "Lost Communication With Radio",
|
|
2622
|
+
"category": "Network",
|
|
2623
|
+
"severity": "Low",
|
|
2624
|
+
"system": "CAN Bus",
|
|
2625
|
+
"possible_causes": [
|
|
2626
|
+
"Radio not powered",
|
|
2627
|
+
"CAN bus wiring problem",
|
|
2628
|
+
"Radio internal fault",
|
|
2629
|
+
"Antenna amplifier problem"
|
|
2630
|
+
]
|
|
2631
|
+
},
|
|
2632
|
+
"U0200": {
|
|
2633
|
+
"code": "U0200",
|
|
2634
|
+
"description": "Lost Communication With Infotainment System",
|
|
2635
|
+
"category": "Network",
|
|
2636
|
+
"severity": "Low",
|
|
2637
|
+
"system": "CAN Bus",
|
|
2638
|
+
"possible_causes": [
|
|
2639
|
+
"Infotainment system not powered",
|
|
2640
|
+
"CAN bus wiring problem",
|
|
2641
|
+
"System internal fault",
|
|
2642
|
+
"Software issue"
|
|
2643
|
+
]
|
|
2644
|
+
},
|
|
2645
|
+
"U0300": {
|
|
2646
|
+
"code": "U0300",
|
|
2647
|
+
"description": "Internal Control Module Software Incompatibility",
|
|
2648
|
+
"category": "Network",
|
|
2649
|
+
"severity": "High",
|
|
2650
|
+
"system": "Module Programming",
|
|
2651
|
+
"possible_causes": [
|
|
2652
|
+
"Module software version mismatch",
|
|
2653
|
+
"Module needs programming",
|
|
2654
|
+
"Wrong software installed",
|
|
2655
|
+
"Module replacement needed"
|
|
2656
|
+
]
|
|
2657
|
+
},
|
|
2658
|
+
"U0401": {
|
|
2659
|
+
"code": "U0401",
|
|
2660
|
+
"description": "Invalid Data Received From ECM/PCM",
|
|
2661
|
+
"category": "Network",
|
|
2662
|
+
"severity": "High",
|
|
2663
|
+
"system": "CAN Bus",
|
|
2664
|
+
"possible_causes": [
|
|
2665
|
+
"ECM transmitting incorrect data",
|
|
2666
|
+
"CAN bus signal integrity problem",
|
|
2667
|
+
"EMI interference",
|
|
2668
|
+
"ECM internal fault"
|
|
2669
|
+
]
|
|
2670
|
+
},
|
|
2671
|
+
"U0402": {
|
|
2672
|
+
"code": "U0402",
|
|
2673
|
+
"description": "Invalid Data Received From TCM",
|
|
2674
|
+
"category": "Network",
|
|
2675
|
+
"severity": "High",
|
|
2676
|
+
"system": "CAN Bus",
|
|
2677
|
+
"possible_causes": [
|
|
2678
|
+
"TCM transmitting incorrect data",
|
|
2679
|
+
"CAN bus signal integrity problem",
|
|
2680
|
+
"EMI interference",
|
|
2681
|
+
"TCM internal fault"
|
|
2682
|
+
]
|
|
2683
|
+
},
|
|
2684
|
+
"U1000": {
|
|
2685
|
+
"code": "U1000",
|
|
2686
|
+
"description": "CAN Bus Open",
|
|
2687
|
+
"category": "Network",
|
|
2688
|
+
"severity": "Critical",
|
|
2689
|
+
"system": "CAN Bus",
|
|
2690
|
+
"possible_causes": [
|
|
2691
|
+
"CAN High or Low wire open circuit",
|
|
2692
|
+
"Module not connected to bus",
|
|
2693
|
+
"Wiring harness damage",
|
|
2694
|
+
"Connector problem"
|
|
2695
|
+
]
|
|
2696
|
+
},
|
|
2697
|
+
"U1001": {
|
|
2698
|
+
"code": "U1001",
|
|
2699
|
+
"description": "CAN Bus Short to Ground",
|
|
2700
|
+
"category": "Network",
|
|
2701
|
+
"severity": "Critical",
|
|
2702
|
+
"system": "CAN Bus",
|
|
2703
|
+
"possible_causes": [
|
|
2704
|
+
"CAN High or Low shorted to ground",
|
|
2705
|
+
"Wiring harness damage",
|
|
2706
|
+
"Module internal fault",
|
|
2707
|
+
"Connector corrosion"
|
|
2708
|
+
]
|
|
2709
|
+
},
|
|
2710
|
+
"U1002": {
|
|
2711
|
+
"code": "U1002",
|
|
2712
|
+
"description": "CAN Bus Short to Battery",
|
|
2713
|
+
"category": "Network",
|
|
2714
|
+
"severity": "Critical",
|
|
2715
|
+
"system": "CAN Bus",
|
|
2716
|
+
"possible_causes": [
|
|
2717
|
+
"CAN High or Low shorted to voltage",
|
|
2718
|
+
"Wiring harness damage",
|
|
2719
|
+
"Module internal fault",
|
|
2720
|
+
"Chafed wiring"
|
|
2721
|
+
]
|
|
2722
|
+
},
|
|
2723
|
+
"U1003": {
|
|
2724
|
+
"code": "U1003",
|
|
2725
|
+
"description": "CAN Bus Lines Shorted Together",
|
|
2726
|
+
"category": "Network",
|
|
2727
|
+
"severity": "Critical",
|
|
2728
|
+
"system": "CAN Bus",
|
|
2729
|
+
"possible_causes": [
|
|
2730
|
+
"CAN High and Low shorted together",
|
|
2731
|
+
"Wiring harness damage",
|
|
2732
|
+
"Connector problem",
|
|
2733
|
+
"Module fault"
|
|
2734
|
+
]
|
|
2735
|
+
},
|
|
2736
|
+
"U1004": {
|
|
2737
|
+
"code": "U1004",
|
|
2738
|
+
"description": "CAN Bus Communication Error",
|
|
2739
|
+
"category": "Network",
|
|
2740
|
+
"severity": "High",
|
|
2741
|
+
"system": "CAN Bus",
|
|
2742
|
+
"possible_causes": [
|
|
2743
|
+
"CAN bus termination problem",
|
|
2744
|
+
"Too many errors on bus",
|
|
2745
|
+
"EMI interference",
|
|
2746
|
+
"Faulty module transmitting errors"
|
|
2747
|
+
]
|
|
2748
|
+
},
|
|
2749
|
+
"U1005": {
|
|
2750
|
+
"code": "U1005",
|
|
2751
|
+
"description": "CAN Bus Message Counter Error",
|
|
2752
|
+
"category": "Network",
|
|
2753
|
+
"severity": "Medium",
|
|
2754
|
+
"system": "CAN Bus",
|
|
2755
|
+
"possible_causes": [
|
|
2756
|
+
"Module transmitting incorrect counters",
|
|
2757
|
+
"Message timing problem",
|
|
2758
|
+
"Software issue",
|
|
2759
|
+
"Module needs programming"
|
|
2760
|
+
]
|
|
2761
|
+
}
|
|
2762
|
+
}
|
|
2763
|
+
}
|