Skip to content
Snippets Groups Projects
Unverified Commit 6f960f42 authored by Koen Zandberg's avatar Koen Zandberg Committed by GitHub
Browse files

Merge pull request #10181 from haukepetersen/opt_nimble_stacktest

pkg/nimble: use STACKTEST flag for controller thread
parents 910b0880 7351cba0
No related branches found
No related tags found
No related merge requests found
......@@ -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
* own event queue and should have highest priority.
*/
thread_create(stack, sizeof(stack), NIMBLE_CONTROLLER_PRIO, 0,
(thread_task_func_t)nimble_port_ll_task_func,
NULL, "nimble_ctrl");
thread_create(stack, sizeof(stack), NIMBLE_CONTROLLER_PRIO,
THREAD_CREATE_STACKTEST,
(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