MCPcopy Create free account
hub / github.com/RetiredWizard/PyDOS / hal_sleep_us

Method hal_sleep_us

cpython/lib/lcd_api.py:210–212  ·  view source on GitHub ↗

Sleep for some time (given in microseconds).

(self, usecs)

Source from the content-addressed store, hash-verified

208 # support `time.sleep_us()` they should provide their own implementation
209 # of hal_sleep_us in their hal layer and it will be used instead.
210 def hal_sleep_us(self, usecs):
211 """Sleep for some time (given in microseconds)."""
212 time.sleep_us(usecs) # NOTE this is not part of Standard Python library, specific hal layers will need to override this

Callers 1

custom_charMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected