mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-29 13:44:07 +08:00
AirspeedSelector: set default of ASPD_DO_CHECKS to 1 and ASPD_FS_INTEG to 5.
That enables the sensor checks by default The default for the innovation check integral of 5 is rather conservative, thus makeing it less likely to be triggered by accidnet (e.g. due to bad wind estimate). Signed-off-by: Silvan Fuhrer <silvan@auterion.com>
This commit is contained in:
parent
28f9214e56
commit
da7f6d06f3
@ -117,7 +117,7 @@ PARAM_DEFINE_INT32(ASPD_PRIMARY, 1);
|
||||
* @boolean
|
||||
* @group Airspeed Validator
|
||||
*/
|
||||
PARAM_DEFINE_INT32(ASPD_DO_CHECKS, 0);
|
||||
PARAM_DEFINE_INT32(ASPD_DO_CHECKS, 1);
|
||||
|
||||
/**
|
||||
* Enable fallback to sensor-less airspeed estimation
|
||||
@ -158,7 +158,7 @@ PARAM_DEFINE_FLOAT(ASPD_FS_INNOV, 1.0f);
|
||||
* @max 30.0
|
||||
* @group Airspeed Validator
|
||||
*/
|
||||
PARAM_DEFINE_FLOAT(ASPD_FS_INTEG, -1.0f);
|
||||
PARAM_DEFINE_FLOAT(ASPD_FS_INTEG, 5.0f);
|
||||
|
||||
/**
|
||||
* Airspeed failsafe stop delay
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user