View Single Post
Old 10-01-2008, 06:38 AM   #42 (permalink)
dcb
needs more cowbell
 
dcb's Avatar
 
Join Date: Feb 2008
Location: ÿ
Posts: 5,032

pimp mobile - '81 gs 250 t
90 day: 96.29 mpg (US)

schnitzel - '01 Golf TDI
90 day: 53.56 mpg (US)
Thanks: 156
Thanked 259 Times in 203 Posts
re: longer injector times at idle. It may be that you have to use the other injector lead too. Or that somehow we are looking at the low side of the pulse. But it could be that it is positively switched also.

You might try changing the code for a positively switched injector and see if that helps:
i.e. change
attachInterrupt(0, processInjOpen, FALLING);
attachInterrupt(1, processInjClosed, RISING);

to
attachInterrupt(0, processInjOpen, RISING);
attachInterrupt(1, processInjClosed, FALLING);
__________________
WINDMILLS DO NOT WORK THAT WAY!!!

Last edited by dcb; 10-01-2008 at 07:27 AM..
  Reply With Quote