Fix for bad base tune value

This commit is contained in:
Josh Stewart 2017-07-11 16:27:05 +10:00
parent e5591bc7bc
commit a931000c45
1 changed files with 3 additions and 0 deletions

View File

@ -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);
}