From 031680a5206e45c520cff975c549ebddebaf8cdc Mon Sep 17 00:00:00 2001 From: Nicolas MARTIN <59083163+NicolasM0@users.noreply.github.com> Date: Mon, 6 Jan 2020 17:30:43 +0100 Subject: [PATCH] commander: remove ekf2 preflight ratio param units Innovation ratios have no unit: it is a ratio of to squared base unit. For example: [COM_ARM_EKF_VEL] = [vel_innov]**2 / ([GATE_SIZE]**2 * [VEL_VAR]) = [m/s]**2 / ([1]**2 * [m/s]**2) = [1] --- src/modules/commander/commander_params.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/modules/commander/commander_params.c b/src/modules/commander/commander_params.c index 15a7fd695e..45827e73d8 100644 --- a/src/modules/commander/commander_params.c +++ b/src/modules/commander/commander_params.c @@ -518,7 +518,6 @@ PARAM_DEFINE_INT32(COM_FLTMODE6, -1); * Maximum EKF position innovation test ratio that will allow arming * * @group Commander - * @unit m * @min 0.1 * @max 1.0 * @decimal 2 @@ -530,7 +529,6 @@ PARAM_DEFINE_FLOAT(COM_ARM_EKF_POS, 0.5f); * Maximum EKF velocity innovation test ratio that will allow arming * * @group Commander - * @unit m/s * @min 0.1 * @max 1.0 * @decimal 2 @@ -542,7 +540,6 @@ PARAM_DEFINE_FLOAT(COM_ARM_EKF_VEL, 0.5f); * Maximum EKF height innovation test ratio that will allow arming * * @group Commander - * @unit m * @min 0.1 * @max 1.0 * @decimal 2 @@ -554,7 +551,6 @@ PARAM_DEFINE_FLOAT(COM_ARM_EKF_HGT, 1.0f); * Maximum EKF yaw innovation test ratio that will allow arming * * @group Commander - * @unit rad * @min 0.1 * @max 1.0 * @decimal 2