aboutsummaryrefslogtreecommitdiff
path: root/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2013-06-17 09:57:34 +0200
committerLorenz Meier <lm@inf.ethz.ch>2013-06-17 09:57:34 +0200
commitbadaa5e4a23561834ff4badbe3a62fbf3d3e02aa (patch)
treeda822841a2ae089575a368046fdee4d7fbfedeb6 /src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
parentc240e843aa2ba88fa0c333dd8f099b37f1e1ca13 (diff)
downloadpx4-firmware-badaa5e4a23561834ff4badbe3a62fbf3d3e02aa.tar.gz
px4-firmware-badaa5e4a23561834ff4badbe3a62fbf3d3e02aa.tar.bz2
px4-firmware-badaa5e4a23561834ff4badbe3a62fbf3d3e02aa.zip
Fixed too low stack sizes
Diffstat (limited to 'src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp')
-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 8e18c3c9a..16d5ad626 100755
--- a/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
+++ b/src/modules/attitude_estimator_ekf/attitude_estimator_ekf_main.cpp
@@ -126,7 +126,7 @@ int attitude_estimator_ekf_main(int argc, char *argv[])
attitude_estimator_ekf_task = task_spawn("attitude_estimator_ekf",
SCHED_DEFAULT,
SCHED_PRIORITY_MAX - 5,
- 12400,
+ 14000,
attitude_estimator_ekf_thread_main,
(argv) ? (const char **)&argv[2] : (const char **)NULL);
exit(0);