mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-09 17:33:43 +00:00
11 lines
148 B
Go
11 lines
148 B
Go
//go:build baremetal && !fe310
|
|
|
|
package legacy
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
pulldown = machine.PinInputPulldown
|
|
pullup = machine.PinInputPullup
|
|
)
|