diff --git a/speeduino/init.cpp b/speeduino/init.cpp index 38fe1daf..796b55e7 100644 --- a/speeduino/init.cpp +++ b/speeduino/init.cpp @@ -1349,7 +1349,7 @@ void initialiseAll(void) readTPS(false); // Need to read tps to detect flood clear state /* tacho sweep function. */ - //tachoStatus.tachoSweepEnabled = (configPage2.useTachoSweep > 0); + currentStatus.tachoSweepEnabled = (configPage2.useTachoSweep > 0); /* SweepMax is stored as a byte, RPM/100. divide by 60 to convert min to sec (net 5/3). Multiply by ignition pulses per rev. tachoSweepIncr is also the number of tach pulses per second */ tachoSweepIncr = configPage2.tachoSweepMaxRPM * maxIgnOutputs * 5 / 3;