mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-08-10 09:53:42 +00:00
dcf53ac04a
Signed-off-by: deadprogram <ron@hybridgroup.com>
10 lines
250 B
Go
10 lines
250 B
Go
//go:build !baremetal
|
|
|
|
package pin
|
|
|
|
func configureOutput(p Output) {}
|
|
func configureInput(p Input) {}
|
|
func configureInputPulldown(p Input) {}
|
|
func configureInputPullup(p Input) {}
|
|
func isNotPin(a any) bool { return false }
|