From b31a9fd54a8316f63191dd32804609d981d333c2 Mon Sep 17 00:00:00 2001 From: Randy Mackay Date: Thu, 30 Jan 2020 13:30:57 +0900 Subject: [PATCH] AC_PrecLand: POS param range of 5m and 1cm increment --- libraries/AC_PrecLand/AC_PrecLand.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/libraries/AC_PrecLand/AC_PrecLand.cpp b/libraries/AC_PrecLand/AC_PrecLand.cpp index 701c94aac9..3ba7becb82 100644 --- a/libraries/AC_PrecLand/AC_PrecLand.cpp +++ b/libraries/AC_PrecLand/AC_PrecLand.cpp @@ -72,18 +72,24 @@ const AP_Param::GroupInfo AC_PrecLand::var_info[] = { // @DisplayName: Camera X position offset // @Description: X position of the camera in body frame. Positive X is forward of the origin. // @Units: m + // @Range: -5 5 + // @Increment: 0.01 // @User: Advanced // @Param: CAM_POS_Y // @DisplayName: Camera Y position offset // @Description: Y position of the camera in body frame. Positive Y is to the right of the origin. // @Units: m + // @Range: -5 5 + // @Increment: 0.01 // @User: Advanced // @Param: CAM_POS_Z // @DisplayName: Camera Z position offset // @Description: Z position of the camera in body frame. Positive Z is down from the origin. // @Units: m + // @Range: -5 5 + // @Increment: 0.01 // @User: Advanced AP_GROUPINFO("CAM_POS", 7, AC_PrecLand, _cam_offset, 0.0f),