From f2db8d01068e501c691843b71e6c7d66aa86f37c Mon Sep 17 00:00:00 2001 From: Andreas Antener Date: Tue, 3 Jan 2017 17:12:06 +0100 Subject: [PATCH] VTOL: added missing open loop time parameter --- .../vtol_att_control/vtol_att_control_params.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/modules/vtol_att_control/vtol_att_control_params.c b/src/modules/vtol_att_control/vtol_att_control_params.c index fd8fcaf295..dd83274cd7 100644 --- a/src/modules/vtol_att_control/vtol_att_control_params.c +++ b/src/modules/vtol_att_control/vtol_att_control_params.c @@ -306,3 +306,15 @@ PARAM_DEFINE_FLOAT(VT_TRANS_MIN_TM, 2.0f); * @group VTOL Attitude Control */ PARAM_DEFINE_FLOAT(VT_FW_MIN_ALT, 0.0f); + +/** + * Airspeed less front transition time (open loop) + * + * The duration of the front transition when there is no airspeed feedback available. + * + * @unit seconds + * @min 1.0 + * @max 30.0 + * @group VTOL Attitude Control + */ +PARAM_DEFINE_FLOAT(VT_F_TR_OL_TM, 6.0f);