fix: simulator was missing some time functions
Signed-off-by: thiswillbeyourgithub <26625900+thiswillbeyourgithub@users.noreply.github.com>
This commit is contained in:
parent
9486899f4e
commit
a7c3e68f25
1 changed files with 3 additions and 0 deletions
|
@ -5,6 +5,9 @@ import time
|
|||
def sleep_ms(ms):
|
||||
time.sleep(ms / 1000)
|
||||
time.sleep_ms = sleep_ms
|
||||
time.ticks_ms = lambda : int(time.time() * 1000)
|
||||
time.ticks_us = lambda : int(time.time() * 1000 * 1000)
|
||||
time.ticks_diff = lambda x, y : x-y
|
||||
|
||||
import sys, traceback
|
||||
def print_exception(exc, file=sys.stdout):
|
||||
|
|
Loading…
Reference in a new issue