睡眠管理

没有用户输入时,MCU 可以进入睡眠状态。在这种情况下,mian 函数中的 while(1) 应该看起来像这样:

 1    while(1) {
 2      /*Normal operation (no sleep) in < 1 sec inactivity*/
 3      if(lv_disp_get_inactive_time(NULL) < 1000) {
 4              lv_task_handler();
 5      }
 6      /*Sleep after 1 sec inactivity*/
 7      else {
 8              timer_stop();   /*Stop the timer where lv_tick_inc() is called*/
 9              sleep();                  /*Sleep the MCU*/
10      }
11      my_delay_ms(5);
12    }

如果发生唤醒(按,触摸或单击等),还应该在输入设备读取功能中添加以下几行:

1    lv_tick_inc(LV_DISP_DEF_REFR_PERIOD);  /*Force task execution on wake-up*/
2    timer_start();                         /*Restart the timer where lv_tick_inc() is called*/
3    lv_task_handler();                     /*Call `lv_task_handler()` manually to process the wake-up event*/

除了 lv_disp_get_inactive_time() 外,还可以调用 lv_anim_count_running() 来查看每个动画是否完成。