Sleep for some time (given in microseconds).
(self, usecs)
| 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 |