aboutsummaryrefslogtreecommitdiff
path: root/apps/mavlink/orb_listener.c
diff options
context:
space:
mode:
authorLorenz Meier <lm@inf.ethz.ch>2012-11-27 17:27:52 +0100
committerLorenz Meier <lm@inf.ethz.ch>2012-11-27 17:27:52 +0100
commit98283e16b0da59d19c54e6cb8f55924c258e1cb3 (patch)
tree91b5dc95bb6009661e18aa4ddc752270444e5fe8 /apps/mavlink/orb_listener.c
parent67fbe415dc85c5eaf07714289fef1bf1d9c7dda4 (diff)
parentcaf0fefa32b5441f1093de460cbc77f6d3aa2f92 (diff)
downloadpx4-firmware-98283e16b0da59d19c54e6cb8f55924c258e1cb3.tar.gz
px4-firmware-98283e16b0da59d19c54e6cb8f55924c258e1cb3.tar.bz2
px4-firmware-98283e16b0da59d19c54e6cb8f55924c258e1cb3.zip
Merged
Diffstat (limited to 'apps/mavlink/orb_listener.c')
-rw-r--r--apps/mavlink/orb_listener.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/mavlink/orb_listener.c b/apps/mavlink/orb_listener.c
index 254100b2e..b0aa401fc 100644
--- a/apps/mavlink/orb_listener.c
+++ b/apps/mavlink/orb_listener.c
@@ -754,8 +754,8 @@ uorb_receive_start(void)
pthread_attr_t uorb_attr;
pthread_attr_init(&uorb_attr);
- /* Set stack size, needs more than 8000 bytes */
- pthread_attr_setstacksize(&uorb_attr, 4096);
+ /* Set stack size, needs less than 2k */
+ pthread_attr_setstacksize(&uorb_attr, 2048);
pthread_t thread;
pthread_create(&thread, &uorb_attr, uorb_receive_thread, NULL);