ad3da0694b
These will need more testing and some ported to tapdance. The bigest case of this would be TT
14 lines
164 B
Python
14 lines
164 B
Python
|
|
try:
|
|
import utime
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
def ticks_ms():
|
|
return utime.ticks_ms()
|
|
|
|
|
|
def ticks_diff(new, old):
|
|
return utime.ticks_diff(new, old)
|