Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Commit

Permalink
EKF: Don't print navigation lost message on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
priseborough committed Dec 4, 2017
1 parent 40223c3 commit 4f3b97a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion EKF/control.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1323,7 +1323,9 @@ void Ekf::controlVelPosFusion()
_last_known_posNE(1) = _state.pos(1);
_state.vel.setZero();
_fuse_hpos_as_odom = false;
ECL_WARN("EKF stopping navigation");
if (_time_last_fake_gps != 0) {
ECL_WARN("EKF stopping navigation");
}

}

Expand Down

0 comments on commit 4f3b97a

Please sign in to comment.