fw pos ctrl params: update defaults and bounds on wing geometry

This commit is contained in:
Thomas Stastny 2022-07-12 15:11:31 +02:00 committed by Daniel Agar
parent 7e12f6ba5a
commit 81d6fdfe8c
1 changed files with 3 additions and 5 deletions

View File

@ -1014,23 +1014,21 @@ PARAM_DEFINE_FLOAT(WEIGHT_GROSS, -1.0f);
* This is used for limiting the roll setpoint near the ground. (if multiple wings, take the longest span)
*
* @unit m
* @min 1.0
* @max 15.0
* @min 0.1
* @decimal 1
* @increment 0.1
* @group FW Geometry
*/
PARAM_DEFINE_FLOAT(FW_WING_SPAN, 6.0);
PARAM_DEFINE_FLOAT(FW_WING_SPAN, 3.0);
/**
* Height (AGL) of the wings when the aircraft is on the ground.
*
* This is used to constrain a minimum altitude below which we keep wings level to avoid wing tip strike. It's prudent
* This is used to constrain a minimum altitude below which we keep wings level to avoid wing tip strike. It's safer
* to give a slight margin here (> 0m)
*
* @unit m
* @min 0.0
* @max 5.0
* @decimal 1
* @increment 1
* @group FW Geometry