no afterstart enrichment?
Forum rules
Read the manual to see if your question is answered there before posting. If you have questions about MS1/Extra or MS2/Extra or other non-B&G code configuration or tuning, please post them at http://www.msextra.com The full forum rules are here: Forum Rules, be sure to read them all regularly.
-
m0ntecarloss
- MegaSquirt Newbie
- Posts: 20
- Joined: Sun May 16, 2004 5:53 pm
- Location: Binghamton, NY
no afterstart enrichment?
I noticed in megatune that it never lit up the ASE light at the bottom of the program on the main page. So I have been checking data logs and it never shows it coming on after starting the motor.
v3, ms2, code v2.34 (well actually unofficial v2.35)
-
m0ntecarloss
- MegaSquirt Newbie
- Posts: 20
- Joined: Sun May 16, 2004 5:53 pm
- Location: Binghamton, NY
So I'm looking at the code and I see:
Code: Select all
if(outpc.clt >= inpram.temp_table[NO_TEMPS-1]) {
PrimeP = (unsigned short)inpram.PrimePH;
AWEV = (unsigned short)inpram.AWEVH;
AWC = (unsigned short)inpram.AWCH;
}
else if(outpc.clt <= inpram.temp_table[0]) {
PrimeP = (unsigned short)inpram.PrimePU;
AWEV = (unsigned short)inpram.AWEVU;
AWC = (unsigned short)inpram.AWCU;
}
else {
THANKS (this is v2.34 by the way)