summaryrefslogtreecommitdiff
path: root/app/src/main.c
diff options
context:
space:
mode:
authorPete Johanson <peter@peterjohanson.com>2020-12-03 22:53:54 -0500
committerPete Johanson <peter@peterjohanson.com>2020-12-06 22:47:21 -0500
commit7ea1892bbb146eb5ce4d8602c136fadb54d454c8 (patch)
treea222a8c0aaf81ae22e2223d54f22fddf6f81761f /app/src/main.c
parent0d80220e14200b38b3e244d9f24e8bd7b61768d2 (diff)
fix(display): All display updates in work thread.
* Make sure all LVGL access is from main work thread.
Diffstat (limited to 'app/src/main.c')
-rw-r--r--app/src/main.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/app/src/main.c b/app/src/main.c
index eb0275b..ae604a7 100644
--- a/app/src/main.c
+++ b/app/src/main.c
@@ -28,9 +28,5 @@ void main(void) {
#ifdef CONFIG_ZMK_DISPLAY
zmk_display_init();
-
- while (1) {
- zmk_display_task_handler();
- }
#endif /* CONFIG_ZMK_DISPLAY */
}