mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-21 23:33:57 -04:00
AP_AHRS: fixed EKF type 10
This commit is contained in:
parent
372837b959
commit
22fd2025de
@ -740,6 +740,11 @@ bool AP_AHRS_NavEKF::get_relative_position_D(float &posD) const
|
||||
uint8_t AP_AHRS_NavEKF::ekf_type(void) const
|
||||
{
|
||||
uint8_t type = _ekf_type;
|
||||
#if CONFIG_HAL_BOARD == HAL_BOARD_SITL
|
||||
if (type == EKF_TYPE_SITL) {
|
||||
return type;
|
||||
}
|
||||
#endif
|
||||
if ((always_use_EKF() && (type == 0)) || (type == 1) || (type > 3)) {
|
||||
type = 2;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user