mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-08 00:43:39 +00:00
5fb935001e
* 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
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
|
|
)
|