fix pullups not available on fe310

This commit is contained in:
soypat
2025-07-09 12:04:37 -03:00
parent 3681452097
commit 9fb57e22fb
3 changed files with 22 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build baremetal && !fe310
package legacy
import "machine"
const (
pulldown = machine.PinInputPulldown
pullup = machine.PinInputPullup
)