mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-04 02:57:46 +00:00
12 lines
221 B
Go
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{})
|
|
}
|