mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-23 13:17:35 +08:00
EV HGT bias est predict central
This commit is contained in:
@@ -41,6 +41,7 @@
|
||||
void Ekf::controlExternalVisionFusion()
|
||||
{
|
||||
_ev_pos_b_est.predict(_dt_ekf_avg);
|
||||
_ev_hgt_b_est.predict(_dt_ekf_avg);
|
||||
|
||||
// Check for new external vision data
|
||||
extVisionSample ev_sample;
|
||||
|
||||
@@ -44,8 +44,7 @@ void Ekf::controlEvHeightFusion(const extVisionSample &ev_sample, bool starting_
|
||||
static constexpr const char *AID_SRC_NAME = "EV height";
|
||||
|
||||
HeightBiasEstimator &bias_est = _ev_hgt_b_est;
|
||||
|
||||
bias_est.predict(_dt_ekf_avg);
|
||||
//bias_est.predict(_dt_ekf_avg); // handled by controlExternalVisionFusion()
|
||||
|
||||
// correct position for offset relative to IMU
|
||||
const Vector3f pos_offset_body = _params.ev_pos_body - _params.imu_pos_body;
|
||||
|
||||
Reference in New Issue
Block a user