Browse Source

added function to return accelerometer bias

master
Roman Bapst 9 years ago
parent
commit
f32303de69
  1. 5
      EKF/estimator_interface.h

5
EKF/estimator_interface.h

@ -209,6 +209,11 @@ public: @@ -209,6 +209,11 @@ public:
*val = _mag_declination_to_save_deg;
}
void copy_accel_bias(float *bias)
{
*bias = _state[15];
}
protected:
parameters _params; // filter parameters

Loading…
Cancel
Save