mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-25 17:25:20 +03:00
[4.4.2] Remove 15 m/s limit on estimated vario (#12788)
Remove 15 m/s limit on estimated vario
This commit is contained in:
parent
ca12a4c611
commit
a46172a3ab
1 changed files with 0 additions and 1 deletions
|
@ -198,7 +198,6 @@ void calculateEstimatedAltitude(void)
|
||||||
#ifdef USE_VARIO
|
#ifdef USE_VARIO
|
||||||
estimatedVario = lrintf(zeroedAltitudeDerivative);
|
estimatedVario = lrintf(zeroedAltitudeDerivative);
|
||||||
estimatedVario = applyDeadband(estimatedVario, 10); // ignore climb rates less than 0.1 m/s
|
estimatedVario = applyDeadband(estimatedVario, 10); // ignore climb rates less than 0.1 m/s
|
||||||
estimatedVario = constrain(estimatedVario, -1500, 1500);
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// *** set debugs
|
// *** set debugs
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue