diff options
author | Xiang Xiao <xiaoxiang@xiaomi.com> | 2021-03-03 12:28:43 +0800 |
---|---|---|
committer | Xiang Xiao <xiaoxiang@xiaomi.com> | 2021-03-03 14:32:25 +0800 |
commit | 33b5ee3ad284a6d3dcedbf8e4561de8be276e97c (patch) | |
tree | 5360976ccd46872f3d1dc60366c27a86ef45b9f1 /examples/arduino | |
parent | d4eb6a2ad321e3c82fe9d95437b63c1d62e6f4dc (diff) | |
download | lvgl-33b5ee3ad284a6d3dcedbf8e4561de8be276e97c.tar.gz lvgl-33b5ee3ad284a6d3dcedbf8e4561de8be276e97c.zip |
fix(task): change all task related term to timer
follow up the task module change
Diffstat (limited to 'examples/arduino')
-rw-r--r-- | examples/arduino/LVGL_Arduino.ino | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/arduino/LVGL_Arduino.ino b/examples/arduino/LVGL_Arduino.ino index 7714d13fd..911ce7633 100644 --- a/examples/arduino/LVGL_Arduino.ino +++ b/examples/arduino/LVGL_Arduino.ino @@ -107,6 +107,6 @@ void setup() void loop() { - lv_task_handler(); /* let the GUI do its work */ + lv_timer_handler(); /* let the GUI do its work */ delay(5); } |