Skip to content
Snippets Groups Projects
Commit a0925e47 authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Ramped up MAVLink stack size as real use seems to need it

parent 2fca24f8
No related branches found
No related tags found
No related merge requests found
......@@ -1444,8 +1444,8 @@ int mavlink_thread_main(int argc, char *argv[])
pthread_attr_t uorb_attr;
pthread_attr_init(&uorb_attr);
/* Set stack size, needs more than 4000 bytes */
pthread_attr_setstacksize(&uorb_attr, 4096);
/* Set stack size, needs more than 8000 bytes */
pthread_attr_setstacksize(&uorb_attr, 8192);
pthread_create(&uorb_receive_thread, &uorb_attr, uorb_receiveloop, &mavlink_subs);
/* initialize waypoint manager */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment