mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-14 20:03:40 +00:00
13 lines
208 B
Go
13 lines
208 B
Go
//go:build baremetal
|
|
|
|
package legacy
|
|
|
|
import "machine"
|
|
|
|
func configurePinOut(p PinOutput) {
|
|
machinePin, ok := p.(machine.Pin)
|
|
if ok {
|
|
machinePin.Configure(machine.PinConfig{Mode: machine.PinOutput})
|
|
}
|
|
}
|