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