LVGL use system tick

This commit is contained in:
Riku Isokoski
2021-07-07 15:47:47 +03:00
parent 61a4642221
commit 99e26bdd4c
7 changed files with 11 additions and 51 deletions

View File

@@ -107,7 +107,7 @@ Tile::Tile(uint8_t screenID,
lv_obj_set_pos(backgroundLabel, 0, 0);
lv_label_set_text_static(backgroundLabel, "");
taskUpdate = lv_task_create(lv_update_task, 500000, LV_TASK_PRIO_MID, this);
taskUpdate = lv_task_create(lv_update_task, 5000, LV_TASK_PRIO_MID, this);
}
Tile::~Tile() {