-
Notifications
You must be signed in to change notification settings - Fork 2
/
parms.ino
29 lines (27 loc) · 1.06 KB
/
parms.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* default values */
unsigned long parms[]={
95ul, /* contrast */
8208ul, /* pulses per mile */
500000000ul, /* us per gallon 1 us/gal/bit? */
3ul, /* pulses per 2 rev */
420000000ul, /* current trip reset timeout */
10300ul, /* tank size 0.001 gal/bit */
500ul, /* injector settle time */
2400ul, /* weight 1 lb/bit */
0ul, /* scratchpad */
2ul, /* vsspause */
300ul, /* fuel cost 0.01 dollars/bit */
};
char *parmLabels[]={
"Contrast",
"VSS Pulses/Mile",
"MicroSec/Gallon",
"Pulses/2 revs",
"Timout(microSec)",
"Tank Gal * 1000",
"Injector DelayuS",
"Weight (lbs)",
"Scratchpad(odo?)",
"VSS Delay ms",
"Fuel Cost($/gal)"
};