mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 10:28:54 +00:00
8 lines
143 B
C++
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;
|
|
}
|