From 9d2c3f41069718322dea4460ccb089734f3dc397 Mon Sep 17 00:00:00 2001 From: VitorBoss Date: Wed, 5 Oct 2016 13:50:04 -0300 Subject: [PATCH] removed unused variables --- speeduino.ino | 3 --- 1 file changed, 3 deletions(-) diff --git a/speeduino.ino b/speeduino.ino index e6a6f57..776a9e4 100644 --- a/speeduino.ino +++ b/speeduino.ino @@ -1002,7 +1002,6 @@ void loop() if( !BIT_CHECK(currentStatus.engine, BIT_ENGINE_CRANK) ) { unsigned long pwLimit = percentage(configPage1.dutyLim, revolutionTime); //The pulsewidth limit is determined to be the duty cycle limit (Eg 85%) by the total time it takes to perform 1 revolution - if ( if (currentStatus.PW > pwLimit) { currentStatus.PW = pwLimit; } } @@ -1471,5 +1470,3 @@ void beginCoil2and4Charge() { digitalWrite(pinCoil2, coilHIGH); digitalWrite(pin void endCoil2and4Charge() { digitalWrite(pinCoil2, coilLOW); digitalWrite(pinCoil4, coilLOW); } void nullCallback() { return; } - -