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

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

schnitzel - '01 Volkswagen Golf TDI
90 day: 53.56 mpg (US)
Thanks: 158
Thanked 269 Times in 212 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 08:27 AM..
  Reply With Quote