diff --git a/src/modules/navigator/rtl_params.c b/src/modules/navigator/rtl_params.c index 0e0376c1b5..55d0c32250 100644 --- a/src/modules/navigator/rtl_params.c +++ b/src/modules/navigator/rtl_params.c @@ -47,16 +47,17 @@ * Return mode return altitude * * Default minimum altitude above destination (e.g. home, safe point, landing pattern) for return flight. + * The vehicle will climb to this altitude when Return mode is enganged, unless it currently is flying higher already. * This is affected by RTL_MIN_DIST and RTL_CONE_ANG. * * @unit m * @min 0 - * @max 150 + * @max 1000 * @decimal 1 * @increment 0.5 * @group Return Mode */ -PARAM_DEFINE_FLOAT(RTL_RETURN_ALT, 60); +PARAM_DEFINE_FLOAT(RTL_RETURN_ALT, 60.f); /** @@ -64,6 +65,7 @@ PARAM_DEFINE_FLOAT(RTL_RETURN_ALT, 60); * * Descend to this altitude (above destination position) after return, and wait for time defined in RTL_LAND_DELAY. * Land (i.e. slowly descend) from this altitude if autolanding allowed. + * VTOLs do transition to hover in this altitdue above the landing point. * * @unit m * @min 2 @@ -72,7 +74,7 @@ PARAM_DEFINE_FLOAT(RTL_RETURN_ALT, 60); * @increment 0.5 * @group Return Mode */ -PARAM_DEFINE_FLOAT(RTL_DESCEND_ALT, 30); +PARAM_DEFINE_FLOAT(RTL_DESCEND_ALT, 30.f); /** * Return mode delay