Skip to content
Snippets Groups Projects
Commit 7351cba0 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

pkg/nimble: create ctrl thread with FLAG_STACKTEST

parent 86b4a414
No related branches found
No related tags found
No related merge requests found
...@@ -39,7 +39,8 @@ void nimble_riot_controller_init(void) ...@@ -39,7 +39,8 @@ void nimble_riot_controller_init(void)
* Create task where NimBLE LL will run. This one is required as LL has its * Create task where NimBLE LL will run. This one is required as LL has its
* own event queue and should have highest priority. * own event queue and should have highest priority.
*/ */
thread_create(stack, sizeof(stack), NIMBLE_CONTROLLER_PRIO, 0, thread_create(stack, sizeof(stack), NIMBLE_CONTROLLER_PRIO,
(thread_task_func_t)nimble_port_ll_task_func, THREAD_CREATE_STACKTEST,
NULL, "nimble_ctrl"); (thread_task_func_t)nimble_port_ll_task_func, NULL,
"nimble_ctrl");
} }
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