aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/machine/serial-none.go
blob: 7b65c328bb911441ecf307478885f7786de9ee31 (plain)
1
2
3
4
5
6
7
8
9
10
//go:build baremetal && serial.none

package machine

// Serial is a null device: writes to it are ignored.
var Serial = NullSerial{}

func InitSerial() {
	Serial.Configure(UARTConfig{})
}