mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-14 22:27:35 +08:00
initialise vertical position correctly
This commit is contained in:
@@ -172,6 +172,14 @@ bool Ekf::initialiseFilter(void)
|
||||
resetVelocity();
|
||||
resetPosition();
|
||||
|
||||
// initialize vertical position with newest baro measurement
|
||||
baroSample baro_init = _baro_buffer.get_newest();
|
||||
if (baro_init.time_us == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
_state.pos(2) = -baro_init.hgt;
|
||||
|
||||
initialiseCovariance();
|
||||
|
||||
return true;
|
||||
|
||||
+1
-1
@@ -78,7 +78,7 @@ void Ekf::resetPosition()
|
||||
}
|
||||
|
||||
baroSample baro_newest = _baro_buffer.get_newest();
|
||||
_state.pos(2) = baro_newest.hgt;
|
||||
_state.pos(2) = -baro_newest.hgt;
|
||||
}
|
||||
|
||||
#if defined(__PX4_POSIX) && !defined(__PX4_QURT)
|
||||
|
||||
Reference in New Issue
Block a user