DIY PROM Do It Yourself PROM chip burning help. No PROM begging. No PROMs for sale. No commercial exchange. Not a referral service.

How to disable or remove error codes

Thread Tools
 
Search this Thread
 
Old 05-14-2004, 07:32 AM
  #1  
Junior Member
Thread Starter
 
PMGCamaro's Avatar
 
Join Date: Mar 2004
Location: Boston, MA
Posts: 18
Likes: 0
Received 0 Likes on 0 Posts
Car: 68 Camaro
Engine: Original 327 .040 over 89 TPI system
Transmission: M20
How to disable or remove error codes

I am using TunerPro to edit my bin file.

How do I turn of error codes? (As in REMOVE them)

It's a 6E bin being used in a 165 ECM.
Old 05-14-2004, 12:15 PM
  #2  
Senior Member

 
N8MAN1068's Avatar
 
Join Date: Aug 2001
Location: fredericksburg, va
Posts: 610
Likes: 0
Received 0 Likes on 0 Posts
Car: 85 ta ws6 KITT
Engine: Lb9
Transmission: th350
what codes?
Old 05-14-2004, 12:22 PM
  #3  
Junior Member
Thread Starter
 
PMGCamaro's Avatar
 
Join Date: Mar 2004
Location: Boston, MA
Posts: 18
Likes: 0
Received 0 Likes on 0 Posts
Car: 68 Camaro
Engine: Original 327 .040 over 89 TPI system
Transmission: M20
Lets say codes

27
28
29
38
39

For example

How do I go about removing these codes from the PROM ?
Old 05-14-2004, 12:23 PM
  #4  
Supreme Member

iTrader: (2)
 
dimented24x7's Avatar
 
Join Date: Jan 2002
Location: Moorestown, NJ
Posts: 9,962
Likes: 0
Received 3 Likes on 3 Posts
Car: 88 Camaro SC
Engine: SFI'd 350
Transmission: TKO 500
Axle/Gears: 9-bolt w/ 3.23's
See the hac for your mask. IIRC, the $6E is on the file server at craigs site. There are diagnostics masks that are anded with the error bytes before they are saved. In the mask, place a '0' at the bit representing the code you wish to disable and the code will be disabled if it has been flagged.
Old 05-14-2004, 12:51 PM
  #5  
Junior Member
Thread Starter
 
PMGCamaro's Avatar
 
Join Date: Mar 2004
Location: Boston, MA
Posts: 18
Likes: 0
Received 0 Likes on 0 Posts
Car: 68 Camaro
Engine: Original 327 .040 over 89 TPI system
Transmission: M20
I think I need somebody to walk me through this

what is IIRC?

I have the $6E from Craigs site... The zip file contained a bin file, a src file (the hack file) and an asm file. W

What software do I need to open the src and asm files?

Where are these diagnostic masks you speak of?

What is an error byte?

Please elaborate. Thanks
Old 05-14-2004, 01:20 PM
  #6  
Supreme Member

iTrader: (2)
 
dimented24x7's Avatar
 
Join Date: Jan 2002
Location: Moorestown, NJ
Posts: 9,962
Likes: 0
Received 3 Likes on 3 Posts
Car: 88 Camaro SC
Engine: SFI'd 350
Transmission: TKO 500
Axle/Gears: 9-bolt w/ 3.23's
IIRC is if i recall correctly. The asm/src files can be opened with windows notepad. This is from my ecm (the $6E will be different but the general idea is probably the same) The error bytes are used to store the error codes. There is also a set of malf. bytes that are saved to permanent storage in the ecm. They are used to keep track of what errors have been flagged on the ecm as well as being used to output the errors through the ALDL. Basically the diagnostics mask will be checked to see if an error is being flagged. If its set to zero, the error will not be set and that bit will be cleared out of the error and malf. bytes and not stored. No SES light or errors will be reported. Once you open the hac, you will be able to see the diag masks. They are three bytes. Basically, there are 8 bits to the byte and you put a 1 in the position of the errors that you want to recognise and a 0 in the position of the codes you want to not be recognised. Then you use windows calculator or something to convert the 8 bits to decimal or hex and enter it into the prom.

heres an exerpt from the hac. Little different from whats done on my C3 but still the same general idea.

LC1DD FCB $F7 ; 1111 0111, Mask For Mal Funct flg 1
;
; b0 = Err Code 23 MAT Sensor low
; b1 = Err Code 22 TPS low
; b2 = Err Code 21 TPS High
; b3 = Err Code 16 Not used
;
; b4 = Err Code 15 Cool Sensor Low Temp
; b5 = Err Code 14 Cool Sensor Hi Temp
; b6 = Err Code 13 Oxy Sensor
; b7 = Err Code 12 No Ref pulse (Dist)
;--------------------------------------
LC1DE FCB $46 ; 0100 0110, Mask for ERR flag 2
;
; b0 = Err Code 35 Mot used
; b1 = Err Code 34 MAF Sensor low
; b2 = Err Code 33 MAF Sensor high
; b3 = Err Code 32 EGR Diag
;
; b4 = Err Code 31
; b5 = Err Code 26
; b6 = Err Code 25 MAT Sensor High
; b7 = Err Code 24 VSS
;--------------------------------------
;
LC1DF FCB $EB ; 1110 1011, Mask For ERR flag 3
;
; b0 = Err Code 51 Prom Error
; b1 = Err Code 46 VATS Fail
; b2 = Err Code 45 o2 Sensor Rich
; b3 = Err Code 44 o2 Sensor Lean
;
; b4 = Err Code 43 KNOCK Fail
; b5 = Err Code 42 EST Monitor error
; b6 = Err Code 41 CYL Select error
; b7 = Err Code 36 Burn off Diag.
;------------------------------------------
;
LC1E1 FCB 0 ; 0000 0000, Mask for ERR flg 5
;
; b0 = Err Code
; b1 = Err Code
; b2 = Err Code
; b3 = Err Code
;
; b4 = Err Code
; b5 = Err Code 66
; b6 = Err Code 65
; b7 = Err Code 64
;-----------------------------------

Last edited by dimented24x7; 05-14-2004 at 01:24 PM.
Old 05-14-2004, 01:53 PM
  #7  
Supreme Member

 
steve8586iroc's Avatar
 
Join Date: Apr 2000
Location: clinton,tn
Posts: 1,686
Likes: 0
Received 0 Likes on 0 Posts
I playing stupid here, why would you want to diable and or completely remove an error code other than just clearing it by disconnecting the ecm from the battery?

Steve
Old 05-14-2004, 01:56 PM
  #8  
Supreme Member

 
MrDude_1's Avatar
 
Join Date: Jun 2001
Location: Charleston, SC
Posts: 9,550
Likes: 0
Received 2 Likes on 2 Posts
Car: 91 Camaro Vert
Engine: 02 LS1, HX40
Transmission: 2002 LS1 M6
Originally posted by steve8586iroc
I playing stupid here, why would you want to diable and or completely remove an error code other than just clearing it by disconnecting the ecm from the battery?

Steve
lets say you swap manifolds to one that doesnt have a EGR on it.

now you get a EGR code...

if you disable the code in the PROM, there is no EGR code anymore... you get no SES light, and theres no problem.

(just one example)
Old 05-14-2004, 02:07 PM
  #9  
Supreme Member

 
steve8586iroc's Avatar
 
Join Date: Apr 2000
Location: clinton,tn
Posts: 1,686
Likes: 0
Received 0 Likes on 0 Posts
Is it disabling the error code you want or to just disable the egr from working. Example, if you disable the egr error code but don't disable the egr function itself then the ecm is still add timming advance when you don't want it too. Even thought you will not get an error code you still have a problem. I would think it would be wiser to just disable the functions you don't want to have an error codes for then you don't have to worry about getting a code at all. JMO.

Steve
Old 05-14-2004, 02:22 PM
  #10  
Supreme Member

 
MrDude_1's Avatar
 
Join Date: Jun 2001
Location: Charleston, SC
Posts: 9,550
Likes: 0
Received 2 Likes on 2 Posts
Car: 91 Camaro Vert
Engine: 02 LS1, HX40
Transmission: 2002 LS1 M6
Originally posted by steve8586iroc
Is it disabling the error code you want or to just disable the egr from working. Example, if you disable the egr error code but don't disable the egr function itself then the ecm is still add timming advance when you don't want it too. Even thought you will not get an error code you still have a problem. I would think it would be wiser to just disable the functions you don't want to have an error codes for then you don't have to worry about getting a code at all. JMO.

Steve
perhaps thats a bad example, but im new at this too.

the function, as its written in assembler, shouldnt have to be edited out.. i would leave that alone.

instead, the triggers to turn on the function, such as the EGR turn on speed, can easily be modified... they're usually constants.

in the case i gave, id probly just change the turn on for the EGR to 254mph and leave it. but im sure there are other codes you might have to modify diffrently.
Old 05-14-2004, 02:48 PM
  #11  
Junior Member
Thread Starter
 
PMGCamaro's Avatar
 
Join Date: Mar 2004
Location: Boston, MA
Posts: 18
Likes: 0
Received 0 Likes on 0 Posts
Car: 68 Camaro
Engine: Original 327 .040 over 89 TPI system
Transmission: M20
Dimented24x7

Thank you for the info!
Related Topics
Thread
Thread Starter
Forum
Replies
Last Post
specialized
TPI
27
06-18-2022 09:26 AM
Spyder_TheGamer
Tech / General Engine
1
12-25-2015 05:07 PM
ZZ42Fast
TPI
3
08-30-2015 02:39 PM
Bert87
Electronics
3
08-23-2015 03:50 PM
3rdgenparts
Interior Parts for Sale
0
08-08-2015 07:09 PM



Quick Reply: How to disable or remove error codes



All times are GMT -5. The time now is 11:43 PM.