kmk_firmware/kmk/kmktime.py

16 lines
380 B
Python
Raw Normal View History

2021-09-17 17:40:20 +02:00
from micropython import const
2018-10-17 07:43:47 +02:00
2021-09-13 17:18:01 +02:00
_TICKS_PERIOD = const(1 << 29)
_TICKS_MAX = const(_TICKS_PERIOD - 1)
_TICKS_HALFPERIOD = const(_TICKS_PERIOD // 2)
2021-09-13 17:18:01 +02:00
def ticks_diff(new, start):
diff = (new - start) & _TICKS_MAX
diff = ((diff + _TICKS_HALFPERIOD) & _TICKS_MAX) - _TICKS_HALFPERIOD
return diff
2021-09-13 17:18:01 +02:00
def check_deadline(new, start, ms):
return ticks_diff(new, start) < ms