We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb57e2 commit db544f4Copy full SHA for db544f4
internal/legacy/pinhal_baremetal.go
@@ -5,7 +5,7 @@ package legacy
5
import "machine"
6
7
func configurePinOut(p PinOutput) {
8
- configurePin(p, machine.PinInputPulldown)
+ configurePin(p, machine.PinOutput)
9
}
10
11
func configurePinInputPulldown(p PinInput) {
internal/legacy/pinhal_pulls.go
@@ -4,6 +4,9 @@ package legacy
4
+// If you are getting a build error here you then we missed adding
+// your CPU build tag to the list of CPUs that do not have pulldown/pullups.
+// Add it above and in pinhal_nopulls! You should also add a smoketest for it :)
const (
pulldown = machine.PinInputPulldown
12
pullup = machine.PinInputPullup
0 commit comments