From f38a476d762c3957ab06e2830e3132e2d3342d17 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Tue, 5 Feb 2013 08:30:07 +1100 Subject: [PATCH] Pulsewidth fix --- kartduino.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kartduino.ino b/kartduino.ino index 59a829c..4ae5ce4 100644 --- a/kartduino.ino +++ b/kartduino.ino @@ -92,7 +92,7 @@ void loop() int VE = getTableValue(fuelTable, rpm, MAP); //From all of the above, calculate an injector pulsewidth - int pulseWidth = PW(req_fuel, VE, MAP, 100, engineInjectorDeadTime); + int pulseWidth = PW(req_fuel, VE, MAP, 100, engineInjectorDeadTime); //The 100 here is just a placeholder for any enrichment factors (Cold start, acceleration etc). To add 10% extra fuel, this would be 110 }