fix(docs): rename task-handler.md to timer-handler.md (#3203)

since all task facility is already switched to timer facility

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2022-03-25 05:11:45 +08:00
committed by GitHub
parent 378aaa637b
commit a6368fec53
5 changed files with 6 additions and 6 deletions

View File

@@ -158,7 +158,7 @@ See the [Porting](/porting/display) section to learn more.
### My display driver is not called. What have I missed?
Be sure you are calling `lv_tick_inc(x)` in an interrupt and `lv_timer_handler()` in your main `while(1)`.
Learn more in the [Tick](/porting/tick) and [Task handler](/porting/task-handler) sections.
Learn more in the [Tick](/porting/tick) and [Timer handler](/porting/timer-handler) sections.
### Why is the display driver called only once? Only the upper part of the display is refreshed.
Be sure you are calling `lv_disp_flush_ready(drv)` at the end of your "*display flush callback*".