aboutsummaryrefslogtreecommitdiff
path: root/src/modules/attitude_estimator_ekf
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2013-07-18 15:20:36 +0200
committerLorenz Meier <lm@inf.ethz.ch>2013-07-18 15:20:36 +0200
commite19d2e94ec5c38c2800a7001a2a04102734012d4 (patch)
treee4bf0cfc838eb7d462afefbd2e35f6183d904689 /src/modules/attitude_estimator_ekf
parenta5c8d8c5f20584f32acaa03e69681a13799fff6d (diff)
downloadpx4-firmware-e19d2e94ec5c38c2800a7001a2a04102734012d4.tar.gz
px4-firmware-e19d2e94ec5c38c2800a7001a2a04102734012d4.tar.bz2
px4-firmware-e19d2e94ec5c38c2800a7001a2a04102734012d4.zip
Hotfix: Ensured there are never two filters running at the same time if auto-magic happens via USB link
Diffstat (limited to 'src/modules/attitude_estimator_ekf')
-rwxr-xr-xsrc/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp b/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
index d8b40ac3b..1eff60e88 100755
--- a/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
+++ b/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
@@ -139,10 +139,12 @@ int attitude_estimator_ekf_main(int argc, char *argv[])
if (!strcmp(argv[1], "status")) {
if (thread_running) {
- printf("\tattitude_estimator_ekf app is running\n");
+ warnx("running");
+ exit(0);
} else {
- printf("\tattitude_estimator_ekf app not started\n");
+ warnx("not started");
+ exit(1);
}
exit(0);