Files
tinygo/src/machine/serial-none.go
T
2022-07-05 20:53:37 +02:00

12 lines
221 B
Go

//go:build baremetal && serial.none
// +build baremetal,serial.none
package machine
// Serial is a null device: writes to it are ignored.
var Serial = NullSerial{}
func InitSerial() {
Serial.Configure(UARTConfig{})
}