PinInput+PinOutput HAL (#753, reloaded) (#795)

* first commit: add HAL and uc8151 driver demo
* unexport drivers.PinOutput/Input HAL
* fix non-tinygo pin config build
* change of heart
* docs: corrected some comments that were not changed at the same time as recent renaming
This commit is contained in:
Pat Whittingslow
2025-11-08 06:21:01 -03:00
committed by GitHub
parent 297ad416d3
commit 5fb935001e
7 changed files with 232 additions and 17 deletions
+10
View File
@@ -0,0 +1,10 @@
//go:build baremetal && fe310
package legacy
import "machine"
const (
pulldown = machine.PinInput
pullup = machine.PinInput
)