mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-16 17:47:36 +08:00
Commander: improve description of COM_FS EPH, EPV, VEL_EVH params and increase FW and VTOL defaults
Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
This commit is contained in:
@@ -714,32 +714,47 @@ PARAM_DEFINE_INT32(COM_POS_FS_DELAY, 1);
|
||||
/**
|
||||
* Horizontal position error threshold.
|
||||
*
|
||||
* This is the horizontal position error (EPH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.
|
||||
* This is the horizontal position error (EPH) threshold that will trigger a failsafe.
|
||||
* The default is appropriate for a multicopter. Can be increased for a fixed-wing.
|
||||
* If the previous position error was below this threshold, there is an additional
|
||||
* factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation).
|
||||
*
|
||||
* @unit m
|
||||
* @min 0
|
||||
* @decimal 1
|
||||
* @group Commander
|
||||
*/
|
||||
PARAM_DEFINE_FLOAT(COM_POS_FS_EPH, 5);
|
||||
PARAM_DEFINE_FLOAT(COM_POS_FS_EPH, 5.f);
|
||||
|
||||
/**
|
||||
* Vertical position error threshold.
|
||||
*
|
||||
* This is the vertical position error (EPV) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.
|
||||
* This is the vertical position error (EPV) threshold that will trigger a failsafe.
|
||||
* The default is appropriate for a multicopter. Can be increased for a fixed-wing.
|
||||
* If the previous position error was below this threshold, there is an additional
|
||||
* factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation).
|
||||
*
|
||||
* @unit m
|
||||
* @min 0
|
||||
* @decimal 1
|
||||
* @group Commander
|
||||
*/
|
||||
PARAM_DEFINE_FLOAT(COM_POS_FS_EPV, 10);
|
||||
PARAM_DEFINE_FLOAT(COM_POS_FS_EPV, 10.f);
|
||||
|
||||
/**
|
||||
* Horizontal velocity error threshold.
|
||||
*
|
||||
* This is the horizontal velocity error (EVH) threshold that will trigger a failsafe. The default is appropriate for a multicopter. Can be increased for a fixed-wing.
|
||||
* This is the horizontal velocity error (EVH) threshold that will trigger a failsafe.
|
||||
* The default is appropriate for a multicopter. Can be increased for a fixed-wing.
|
||||
* If the previous velocity error was below this threshold, there is an additional
|
||||
* factor of 2.5 applied (threshold for invalidation 2.5 times the one for validation).
|
||||
*
|
||||
* @unit m/s
|
||||
* @min 0
|
||||
* @decimal 1
|
||||
* @group Commander
|
||||
*/
|
||||
PARAM_DEFINE_FLOAT(COM_VEL_FS_EVH, 1);
|
||||
PARAM_DEFINE_FLOAT(COM_VEL_FS_EVH, 1.f);
|
||||
|
||||
/**
|
||||
* Next flight UUID
|
||||
|
||||
Reference in New Issue
Block a user