Fix MAP scaling error

This commit is contained in:
Josh Stewart 2015-09-18 09:41:10 +10:00
parent 6df401895e
commit e7743fb001
2 changed files with 3 additions and 3 deletions

View File

@ -420,7 +420,7 @@ page = 7
subMenu = engine_constants, "Engine Constants"
subMenu = injChars, "Injector Characteristics"
subMenu = triggerSettings, "&Trigger Setup"
subMenu = OLED, "OLED Setup"
;subMenu = OLED, "OLED Setup"
subMenu = airdensity_curve, "IAT Density"
subMenu = fanSettings, "Fan"
@ -1087,7 +1087,7 @@ help = helpEnrichments, "Enrichments Help"
mapaccaen = bits, U08, 2, [6:6]
mapaccden = bits, U08, 2, [7:7]
dwell = scalar, U08, 3, "ms", 0.100, 0.000
map = scalar, U08, 4, "kpa", 0.500, 0.000
map = scalar, U08, 4, "kpa", 2.000, 0.000
#if CELSIUS
iatRaw = scalar, U08, 5, "°C", 1.000, 0.000
coolantRaw = scalar, U08, 6, "°C", 1.000, 0.000

View File

@ -443,7 +443,7 @@ void loop()
}
}
if (configPage1.displayType && (mainLoopCount & 255) == 1) { updateDisplay();}
// if (configPage1.displayType && (mainLoopCount & 255) == 1) { updateDisplay();} //Timers currently disabled
//Calculate the RPM based on the uS between the last 2 times tooth One was seen.
previousLoopTime = currentLoopTime;