I think I have it figured out, but I want to check in case I missed something. I want to adjust the "Custom" screen to display like this:
Code:
Instant MPG Trip MPG
Instant GPH Gals Used
Do do so, I change
Code:
void doDisplayCustom(){displayTripCombo('M','G',instantmpg(),'S',instantmph(),'G','H',instantgph(),'C',current.mpg());}
to be
Code:
void doDisplayCustom(){displayTripCombo('M','G',instantmpg(),'C','M',current.mpg(),'G','H',instantgph(),'G',tank.idleGallons());}
Is that correct? Are the stats called "Current" for "current trip"?