aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2015-01-09 09:09:11 +0100
committerLorenz Meier <lm@inf.ethz.ch>2015-01-09 09:09:11 +0100
commit69a7e310774f1df820303346143e5128856723fb (patch)
treec2975484d0029e9140a328c71d5b26ff77767e1c
parenteab9ddb21273234fce7c610f664a35d2dae64a55 (diff)
downloadpx4-firmware-69a7e310774f1df820303346143e5128856723fb.tar.gz
px4-firmware-69a7e310774f1df820303346143e5128856723fb.tar.bz2
px4-firmware-69a7e310774f1df820303346143e5128856723fb.zip
Att EKF: Adjust stack size to larger requirement
-rwxr-xr-xsrc/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp2
1 files changed, 1 insertions, 1 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 702894d60..e61204e6c 100755
--- a/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
+++ b/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
@@ -133,7 +133,7 @@ int attitude_estimator_ekf_main(int argc, char *argv[])
attitude_estimator_ekf_task = task_spawn_cmd("attitude_estimator_ekf",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
- 7200,
+ 7700,
attitude_estimator_ekf_thread_main,
(argv) ? (char * const *)&argv[2] : (char * const *)NULL);
exit(0);