mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 11:07:46 +00:00
15 lines
188 B
Go
15 lines
188 B
Go
//go:build usb.cdc
|
|
// +build usb.cdc
|
|
|
|
package machine
|
|
|
|
import "machine/usb"
|
|
|
|
var USB = &usb.CDC{}
|
|
|
|
func InitUSB(port int) {
|
|
InitUSBIO()
|
|
USB.Port = port
|
|
USB.Configure(usb.CDCConfig{})
|
|
}
|