mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-06 20:13:40 +00:00
12 lines
200 B
Go
12 lines
200 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() {
|
|
Serial.Configure(UARTConfig{})
|
|
}
|