From a931000c458140f5fcc128e109dfe4ed804e4388 Mon Sep 17 00:00:00 2001 From: Josh Stewart Date: Tue, 11 Jul 2017 16:27:05 +1000 Subject: [PATCH] Fix for bad base tune value --- speeduino/updates.ino | 3 +++ 1 file changed, 3 insertions(+) diff --git a/speeduino/updates.ino b/speeduino/updates.ino index 0d085f14..96ddee79 100644 --- a/speeduino/updates.ino +++ b/speeduino/updates.ino @@ -30,6 +30,9 @@ void doUpdates() configPage10.true_address = 256; configPage10.realtime_base_address = 336; + //There was a bad value in the May base tune for the spark duration setting, fix it here if it's a problem + if(configPage2.sparkDur == 255) { configPage2.sparkDur = 10; } + writeConfig(); EEPROM.write(EEPROM_DATA_VERSION, 4); }