mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 02:57:46 +00:00
11 lines
168 B
Go
11 lines
168 B
Go
//go:build baremetal && serial.usb
|
|
// +build baremetal,serial.usb
|
|
|
|
package machine
|
|
|
|
// Serial is implemented via USB (USB-CDC).
|
|
var Serial = USB
|
|
|
|
func InitSerial() {
|
|
}
|