Street Surgeon
15+ Year Contributor
- 385
- 8
- May 24, 2003
-
Omaha,
Nebraska
My trusty Autronic SM2 and I fear no Mitsubishi knock sensor!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
For 1990-1999 Mitsubishi Eclipse, Eagle Talon, Plymouth Laser, and Galant VR-4 Owners. This is where the DSM platform history is documented and archived. Log in to help us in our mission, and to remove most ads from the browsing experience.
This site may earn a commission from merchant affiliate links, including eBay, Amazon, and others.
A little knock when i tune i am cool with esp if it is just in a little area and does not happen all the time. (say knock count of 3 or so on a EVO)
but why knock scars me is because the Cylinder pressure is much higher with a knock then it will ever be with boost. So if a head gasket is going to fail or a head is going to lift in most cases it is because of knock not to much boost.
Gas motors head is not designed to be part diesel
but who knows that is just me.
A little knock when i tune i am cool with esp if it is just in a little area and does not happen all the time. (say knock count of 3 or so on a EVO)
but why knock scars me is because the Cylinder pressure is much higher with a knock then it will ever be with boost. So if a head gasket is going to fail or a head is going to lift in most cases it is because of knock not to much boost.
Gas motors head is not designed to be part diesel
but who knows that is just me.
My trusty Autronic SM2 and I fear no Mitsubishi knock sensor!

If the knock sensor is not detected by the ECU, won't it flash up a CEL and retard a lot of timing from the engine?
Yes, you'll get a CEL and I believe you lose a lot of timing advance or have some fixed timing. You'd need a way to disable it or bypass it.
Another knock sensor will work. Get one that's zip-tied to the firewall and run it as normal to the ECU. Have the one that's actually in the engine running to your ECU+ (whatever that is.. am not sure so can't comment). Thought of that before.That's what I'm thinking. You might need to have the stock ecu connected to something that looks electrically like a knock sensor so it stays fat dumb and happy thinking everything is ok.
Another knock sensor maybe?
Gary
Am hoping the meth kit I've ordered gets rid of the knock I've currently got from 5400rpm+



Thanks to this thread I found a new tool to deal with knock.
At the beginning of this thread I was thinking it would be nice to adjust knock sensitivity so knock doesn't pull so much timing at light load, but can still fully protect the engine at high load. I've played with some eprom code before, so I thought, how about writing a new section that subtracts a certain ammount of knock before it's used to remove timing? Something like 'load rawknock to Aa, sub X, etc...' I looked into the code and found the stock knock code already does this! Go figure, the mitsu engineers already thought of it.
;----------------------------------
; Compute a = (rawKnock-4)/8
;----------------------------------
ldaa knockSensor ; a = rawKnock
suba #$04 ; rawKnock -4 ( at m-f043)
bcc L1726 ; Branch if rawKnock-4 >= 0
clra ; Use min of 0
L1726 lsra ; divide by 2
lsra ; divide by 2
lsra ; a = (rawKnock-4)/8
Pretty cool, all I have to do is change the number '#$04' to anything higher and the knock will be less sensitive, especially at lower knock counts. My car just got a little faster!

Interesting. Any ideas what to look for in the hex code for that as I'd like to increase the knock threshold a little too.
May have to talk to the Pocketlogger people.