1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-13 19:40:31 +03:00

Fix for minthrottle when feature 3D and PWM enabled (#5102)

* Fix for minthrottle when feature 3d and pwm enabled

* add parameters for min and max 3d output

* bug fix

* remove new parameters from msp

* remove new parameters again

* fixed indentation
This commit is contained in:
Austin 2018-03-08 12:44:17 -05:00 committed by Michael Keller
parent 18b857de65
commit 4d3666b77b
4 changed files with 11 additions and 5 deletions

View file

@ -92,6 +92,8 @@ PG_RESET_TEMPLATE(flight3DConfig_t, flight3DConfig,
.deadband3d_high = 1514,
.neutral3d = 1460,
.deadband3d_throttle = 50,
.limit3d_low = 1000,
.limit3d_high = 2000,
.switched_mode3d = false
);