Files
luban-lite-t3e-pro/packages/third-party/awtk-ui/awtk/tests/get_time.inc
刘可亮 3b4064f334 v1.0.2
2023-11-30 19:48:02 +08:00

8 lines
143 B
C++

static uint32_t s_now = 0;
static uint32_t timer_get_time() {
return s_now;
}
static void timer_set_time(uint32_t now) {
s_now = now;
}