View Single Post
Old 10-09-2013, 03:46 PM   #169 (permalink)
t vago
MPGuino Supporter
 
t vago's Avatar
 
Join Date: Oct 2010
Location: Hungary
Posts: 1,807

iNXS - '10 Opel Zafira 111 Anniversary

Suzi - '02 Suzuki Swift GL
Thanks: 829
Thanked 708 Times in 456 Posts
Quote:
Originally Posted by josemapiro View Post
Not have to define the number of injectors car?
If yes, where it is defined, in the setup menu does not have that option.
It looks like that option has not been enabled in your copy of the code. You will need to go to this line, and uncomment the beginning of it.

Code:
//#define useCalculatedFuelFactor true	// Ability to calculate that pesky us/gal (or L) factor from easily available published fuel injector data
You may need to also do a minor code edit, because I think the most recent version in this thread has an incorrect label, somewhere near line 2290.

It should be this:
Code:
#ifdef useCalculatedFuelFactor
	idxNumerPressure,
	idxNumerPressure,
#endif
Not this:
Code:
#ifdef useIsqrt
	idxNumerPressure,
	idxNumerPressure,
#endif
  Reply With Quote