mirror of
https://github.com/lvgl/lvgl.git
synced 2025-02-04 07:13:00 +08:00
13 lines
160 B
C
13 lines
160 B
C
#if LV_BUILD_TEST
|
|
|
|
#include "lv_test_helpers.h"
|
|
|
|
void lv_test_wait(uint32_t ms)
|
|
{
|
|
lv_tick_inc(ms);
|
|
lv_timer_handler();
|
|
lv_refr_now(NULL);
|
|
}
|
|
|
|
#endif
|