forked from Archive/PX4-Autopilot
commander: Increase stack size for low prio task to accomodate accel cal.
This commit is contained in:
parent
1e54dc4409
commit
37de377dcf
|
@ -1134,7 +1134,7 @@ int commander_thread_main(int argc, char *argv[])
|
|||
/* initialize low priority thread */
|
||||
pthread_attr_t commander_low_prio_attr;
|
||||
pthread_attr_init(&commander_low_prio_attr);
|
||||
pthread_attr_setstacksize(&commander_low_prio_attr, 1600);
|
||||
pthread_attr_setstacksize(&commander_low_prio_attr, 2100);
|
||||
|
||||
struct sched_param param;
|
||||
(void)pthread_attr_getschedparam(&commander_low_prio_attr, ¶m);
|
||||
|
|
Loading…
Reference in New Issue