even more typehints

This commit is contained in:
xs5871
2022-10-02 18:49:23 +00:00
committed by Josh Klar
parent 565ec8353b
commit 218c15e322
2 changed files with 10 additions and 10 deletions

View File

@@ -6,26 +6,26 @@ _TICKS_MAX = const(_TICKS_PERIOD - 1)
_TICKS_HALFPERIOD = const(_TICKS_PERIOD // 2)
def ticks_diff(new, start):
def ticks_diff(new: int, start: int) -> int:
diff = (new - start) & _TICKS_MAX
diff = ((diff + _TICKS_HALFPERIOD) & _TICKS_MAX) - _TICKS_HALFPERIOD
return diff
def ticks_add(ticks, delta):
def ticks_add(ticks: int, delta: int) -> int:
return (ticks + delta) % _TICKS_PERIOD
def check_deadline(new, start, ms):
def check_deadline(new: int, start: int, ms: int) -> int:
return ticks_diff(new, start) < ms
class PeriodicTimer:
def __init__(self, period):
def __init__(self, period: int):
self.period = period
self.last_tick = ticks_ms()
def tick(self):
def tick(self) -> bool:
now = ticks_ms()
if ticks_diff(now, self.last_tick) >= self.period:
self.last_tick = now