We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3cc63a commit 96eee3bCopy full SHA for 96eee3b
modules/lvgl/lvgl.c
@@ -352,10 +352,14 @@ int lvgl_init(void)
352
}
353
354
#ifdef CONFIG_LV_Z_RUN_LVGL_ON_WORKQUEUE
355
+ const struct k_work_queue_config lvgl_workqueue_cfg = {
356
+ .name = "lvgl",
357
+ };
358
+
359
k_work_queue_init(&lvgl_workqueue);
360
k_work_queue_start(&lvgl_workqueue, lvgl_workqueue_stack,
361
K_THREAD_STACK_SIZEOF(lvgl_workqueue_stack),
- CONFIG_LV_Z_LVGL_WORKQUEUE_PRIORITY, NULL);
362
+ CONFIG_LV_Z_LVGL_WORKQUEUE_PRIORITY, &lvgl_workqueue_cfg);
363
364
k_work_submit_to_queue(&lvgl_workqueue, &lvgl_work.work);
365
#endif
0 commit comments