Skip to content

Commit

Permalink
mc_pos_control: correct tilt parameter limits
Browse files Browse the repository at this point in the history
- correcting
c9e52d4
to allow 180° maximum tilt instead of landing tilt.
- Introducing tilt limitation minimums like requested in #11473
  • Loading branch information
MaEtUgR committed Mar 24, 2019
1 parent f402f68 commit 295c3fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/modules/mc_pos_control/mc_pos_control_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand All @@ -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
*/
Expand Down

0 comments on commit 295c3fd

Please sign in to comment.