Browse Source

EKF: add method to get the terrain variance

master
Carl Olsson 6 years ago committed by Daniel Agar
parent
commit
54ab8191e3
  1. 3
      EKF/ekf.h

3
EKF/ekf.h

@ -194,6 +194,9 @@ public: @@ -194,6 +194,9 @@ public:
// get the estimated terrain vertical position relative to the NED origin
void get_terrain_vert_pos(float *ret);
// get the terrain variance
float get_terrain_var() const { return _terrain_var; }
// get the accerometer bias in m/s/s
void get_accel_bias(float bias[3]);

Loading…
Cancel
Save