mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-05 03:27:48 +00:00
15 lines
188 B
Go
15 lines
188 B
Go
//go:build usb.hid
|
|
// +build usb.hid
|
|
|
|
package machine
|
|
|
|
import "machine/usb"
|
|
|
|
var USB = &usb.HID{}
|
|
|
|
func InitUSB(port int) {
|
|
InitUSBIO()
|
|
USB.Port = port
|
|
USB.Configure(usb.HIDConfig{})
|
|
}
|