Skip to content

Commit

Permalink
ekf2: EV vel (body) update last fuse timestamps
Browse files Browse the repository at this point in the history
 - these are set by the NED fuseVelocity() helper so also need to be set in the body frame velocity case
  • Loading branch information
dagar authored Jul 9, 2024
1 parent 5d08b97 commit 62ff39a
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,11 @@ bool Ekf::fuseEvVelocity(estimator_aid_source3d_s &aid_src, const extVisionSampl

}

if (aid_src.fused) {
_time_last_hor_vel_fuse = _time_delayed_us;
_time_last_ver_vel_fuse = _time_delayed_us;
}

aid_src.timestamp_sample = current_aid_src.timestamp_sample;
return !aid_src.innovation_rejected;

Expand Down

0 comments on commit 62ff39a

Please sign in to comment.