Skip to content

Commit

Permalink
vmount: Fixes max AUX number for MNT_MAN_ROLL, MNT_MAN_PITCH and MNT_…
Browse files Browse the repository at this point in the history
…MAN_YAW parameters.
  • Loading branch information
kpetrykin authored and bkueng committed Apr 23, 2020
1 parent 172e435 commit 5819c82
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/modules/vmount/vmount_params.c
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ PARAM_DEFINE_FLOAT(MNT_OB_LOCK_MODE, 0.0f);
* @value 5 AUX5
* @value 6 AUX6
* @min 0
* @max 5
* @max 6
* @group Mount
*/
PARAM_DEFINE_INT32(MNT_MAN_ROLL, 0);
Expand All @@ -139,7 +139,7 @@ PARAM_DEFINE_INT32(MNT_MAN_ROLL, 0);
* @value 5 AUX5
* @value 6 AUX6
* @min 0
* @max 5
* @max 6
* @group Mount
*/
PARAM_DEFINE_INT32(MNT_MAN_PITCH, 0);
Expand All @@ -155,7 +155,7 @@ PARAM_DEFINE_INT32(MNT_MAN_PITCH, 0);
* @value 5 AUX5
* @value 6 AUX6
* @min 0
* @max 5
* @max 6
* @group Mount
*/
PARAM_DEFINE_INT32(MNT_MAN_YAW, 0);
Expand Down

0 comments on commit 5819c82

Please sign in to comment.