aboutsummaryrefslogtreecommitdiff
path: root/src/modules/ekf_att_pos_estimator/estimator.cpp
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-04-22 01:18:30 +0200
committerLorenz Meier <lm@inf.ethz.ch>2014-04-22 01:18:30 +0200
commit706d08055d2bf63d16c72e86cd60f0e33a20bc4f (patch)
treea3a4d06faf381a1c7ec55d7264978c5d9818e3f3 /src/modules/ekf_att_pos_estimator/estimator.cpp
parent0a89364e3c687deb060782bfd9fbccbd582e0e6d (diff)
downloadpx4-firmware-706d08055d2bf63d16c72e86cd60f0e33a20bc4f.tar.gz
px4-firmware-706d08055d2bf63d16c72e86cd60f0e33a20bc4f.tar.bz2
px4-firmware-706d08055d2bf63d16c72e86cd60f0e33a20bc4f.zip
Better / cleaner initialization of the attitude estimator
Diffstat (limited to 'src/modules/ekf_att_pos_estimator/estimator.cpp')
-rw-r--r--src/modules/ekf_att_pos_estimator/estimator.cpp24
1 files changed, 16 insertions, 8 deletions
diff --git a/src/modules/ekf_att_pos_estimator/estimator.cpp b/src/modules/ekf_att_pos_estimator/estimator.cpp
index 95afbc181..5f4bf0729 100644
--- a/src/modules/ekf_att_pos_estimator/estimator.cpp
+++ b/src/modules/ekf_att_pos_estimator/estimator.cpp
@@ -4,7 +4,7 @@
// Define EKF_DEBUG here to enable the debug print calls
// if the macro is not set, these will be completely
// optimized out by the compiler.
-//#define EKF_DEBUG
+#define EKF_DEBUG
#ifdef EKF_DEBUG
#include <stdio.h>
@@ -2263,21 +2263,29 @@ bool AttPosEKF::StatesNaN(struct ekf_status_report *err_report) {
if (!isfinite(KH[i][j])) {
err_report->covarianceNaN = true;
- ekf_debug("KH NaN");
err = true;
} // intermediate result used for covariance updates
+ if (err) {
+ ekf_debug("KH NaN");
+ }
+
if (!isfinite(KHP[i][j])) {
err_report->covarianceNaN = true;
- ekf_debug("KHP NaN");
err = true;
} // intermediate result used for covariance updates
+ if (err) {
+ ekf_debug("KHP NaN");
+ }
+
if (!isfinite(P[i][j])) {
err_report->covarianceNaN = true;
- ekf_debug("P NaN");
err = true;
} // covariance matrix
+ if (err) {
+ ekf_debug("P NaN");
+ }
}
if (!isfinite(Kfusion[i])) {
@@ -2461,12 +2469,12 @@ void AttPosEKF::InitializeDynamic(float (&initvelNED)[3])
summedDelVel.z = 0.0f;
}
-void AttPosEKF::InitialiseFilter(float (&initvelNED)[3])
+void AttPosEKF::InitialiseFilter(float (&initvelNED)[3], double referenceLat, double referenceLon, float referenceHgt)
{
//store initial lat,long and height
- latRef = gpsLat;
- lonRef = gpsLon;
- hgtRef = gpsHgt;
+ latRef = referenceLat;
+ lonRef = referenceLon;
+ hgtRef = referenceHgt;
memset(&last_ekf_error, 0, sizeof(last_ekf_error));