Skip to content
Snippets Groups Projects
Commit 295c3fd0 authored by Matthias Grob's avatar Matthias Grob
Browse files

mc_pos_control: correct tilt parameter limits

- correcting
c9e52d43
to allow 180° maximum tilt instead of landing tilt.
- Introducing tilt limitation minimums like requested in #11473
parent f402f68f
No related branches found
No related tags found
No related merge requests found
...@@ -320,8 +320,8 @@ PARAM_DEFINE_FLOAT(MPC_XY_VEL_MAX, 12.0f); ...@@ -320,8 +320,8 @@ PARAM_DEFINE_FLOAT(MPC_XY_VEL_MAX, 12.0f);
* Limits maximum tilt in AUTO and POSCTRL modes during flight. * Limits maximum tilt in AUTO and POSCTRL modes during flight.
* *
* @unit deg * @unit deg
* @min 0.0 * @min 20.0
* @max 90.0 * @max 180.0
* @decimal 1 * @decimal 1
* @group Multicopter Position Control * @group Multicopter Position Control
*/ */
...@@ -333,8 +333,8 @@ PARAM_DEFINE_FLOAT(MPC_TILTMAX_AIR, 45.0f); ...@@ -333,8 +333,8 @@ PARAM_DEFINE_FLOAT(MPC_TILTMAX_AIR, 45.0f);
* Limits maximum tilt angle on landing. * Limits maximum tilt angle on landing.
* *
* @unit deg * @unit deg
* @min 0.0 * @min 10.0
* @max 180.0 * @max 90.0
* @decimal 1 * @decimal 1
* @group Multicopter Position Control * @group Multicopter Position Control
*/ */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment