mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
mc_pos_control: correct tilt parameter limits
- correcting c9e52d43862b6854d4396b2190cb4b9f1b957c0b to allow 180° maximum tilt instead of landing tilt. - Introducing tilt limitation minimums like requested in #11473
This commit is contained in:
parent
f402f68fb1
commit
295c3fd0c5
@ -320,8 +320,8 @@ PARAM_DEFINE_FLOAT(MPC_XY_VEL_MAX, 12.0f);
|
||||
* Limits maximum tilt in AUTO and POSCTRL modes during flight.
|
||||
*
|
||||
* @unit deg
|
||||
* @min 0.0
|
||||
* @max 90.0
|
||||
* @min 20.0
|
||||
* @max 180.0
|
||||
* @decimal 1
|
||||
* @group Multicopter Position Control
|
||||
*/
|
||||
@ -333,8 +333,8 @@ PARAM_DEFINE_FLOAT(MPC_TILTMAX_AIR, 45.0f);
|
||||
* Limits maximum tilt angle on landing.
|
||||
*
|
||||
* @unit deg
|
||||
* @min 0.0
|
||||
* @max 180.0
|
||||
* @min 10.0
|
||||
* @max 90.0
|
||||
* @decimal 1
|
||||
* @group Multicopter Position Control
|
||||
*/
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user