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