Fix warning presented in Arduino IDE for 4g63 change
This commit is contained in:
parent
b0d0c40bec
commit
aaebf2d833
|
@ -628,7 +628,7 @@ int getRPM_4G63()
|
||||||
//if(currentStatus.startRevolutions < 2) { return 0; } //Need at least 2 full revolutions to prevent crazy initial rpm value
|
//if(currentStatus.startRevolutions < 2) { return 0; } //Need at least 2 full revolutions to prevent crazy initial rpm value
|
||||||
int tempToothAngle;
|
int tempToothAngle;
|
||||||
unsigned long toothTime;
|
unsigned long toothTime;
|
||||||
if(toothLastToothTime == 0 || toothLastMinusOneToothTime == 0) { return; }
|
if(toothLastToothTime == 0 || toothLastMinusOneToothTime == 0) { return 0; }
|
||||||
|
|
||||||
noInterrupts();
|
noInterrupts();
|
||||||
tempToothAngle = triggerToothAngle;
|
tempToothAngle = triggerToothAngle;
|
||||||
|
|
Loading…
Reference in New Issue