diff --git a/src/modules/vtol_att_control/standard_params.c b/src/modules/vtol_att_control/standard_params.c index 114dc1747421423ebe2c457488bd76ae299d1126..b4ab3e4c42b784fdcfc362a27a8cca3172a0c357 100644 --- a/src/modules/vtol_att_control/standard_params.c +++ b/src/modules/vtol_att_control/standard_params.c @@ -72,15 +72,3 @@ PARAM_DEFINE_FLOAT(VT_DWN_PITCH_MAX, 5.0f); * @group VTOL Attitude Control */ PARAM_DEFINE_FLOAT(VT_FWD_THRUST_SC, 0.0f); - - -/** - * QuadChute - * - * Minimum altitude for fixed wing flight, when in fixed wing the altitude drops below this altitude - * the vehicle will transition back to MC mode and enter failsafe RTL - * @min 0.0 - * @max 200.0 - * @group VTOL Attitude Control - */ -PARAM_DEFINE_FLOAT(VT_FW_MIN_ALT, 0.0f); 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 bfcc712242e5d1918206f1225c0ba003e8907775..a8326e2cb15ef29a7a9b097b6d708c97d3754130 100644 --- a/src/modules/vtol_att_control/vtol_att_control_params.c +++ b/src/modules/vtol_att_control/vtol_att_control_params.c @@ -304,3 +304,14 @@ PARAM_DEFINE_FLOAT(VT_TRANS_MIN_TM, 2.0f); * @group VTOL Attitude Control */ PARAM_DEFINE_INT32(VT_NAV_FORCE_VT, 1); + +/** + * QuadChute + * + * Minimum altitude for fixed wing flight, when in fixed wing the altitude drops below this altitude + * the vehicle will transition back to MC mode and enter failsafe RTL + * @min 0.0 + * @max 200.0 + * @group VTOL Attitude Control + */ +PARAM_DEFINE_FLOAT(VT_FW_MIN_ALT, 0.0f);