mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-16 12:53:23 +00:00
11 lines
133 B
Go
11 lines
133 B
Go
//go:build baremetal && fe310
|
|
|
|
package legacy
|
|
|
|
import "machine"
|
|
|
|
const (
|
|
pulldown = machine.PinInput
|
|
pullup = machine.PinInput
|
|
)
|