aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2014-10-20 15:21:53 +0200
committerLorenz Meier <lm@inf.ethz.ch>2014-10-20 15:21:53 +0200
commit1ccb56de92719f36c8b4d80e3dae144dbb8fb913 (patch)
tree658058c2dde2e31a23a9771fb2bfb001f059bceb /src
parent111a8745b3d9d4ab99e4e0d34a9b9ddd3cd1ecdb (diff)
downloadpx4-firmware-1ccb56de92719f36c8b4d80e3dae144dbb8fb913.tar.gz
px4-firmware-1ccb56de92719f36c8b4d80e3dae144dbb8fb913.tar.bz2
px4-firmware-1ccb56de92719f36c8b4d80e3dae144dbb8fb913.zip
Better error feedback
Diffstat (limited to 'src')
-rw-r--r--src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp b/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp
index a61346c2e..430933860 100644
--- a/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp
+++ b/src/modules/ekf_att_pos_estimator/ekf_att_pos_estimator_main.cpp
@@ -600,7 +600,7 @@ FixedwingEstimator::check_filter_state()
"stale IMU data, resetting",
"got initial position lock",
"excessive gyro offsets",
- "GPS velocity divergence",
+ "velocity diverted, check accel config",
"excessive covariances",
"unknown condition"};
@@ -614,7 +614,7 @@ FixedwingEstimator::check_filter_state()
}
warnx("reset: %s", feedback[warn_index]);
- mavlink_log_critical(_mavlink_fd, "[ekf] re-init: %s", feedback[warn_index]);
+ mavlink_log_critical(_mavlink_fd, "[ekf check] %s", feedback[warn_index]);
}
struct estimator_status_report rep;