mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-09 05:23:40 +00:00
10 lines
145 B
Go
10 lines
145 B
Go
package usb2
|
|
|
|
type hci interface {
|
|
init() status
|
|
enable(enable bool) status
|
|
critical(enter bool) status
|
|
interrupt()
|
|
udelay(micros uint32)
|
|
}
|