mirror of
https://github.com/tinygo-org/drivers.git
synced 2026-07-26 10:38:41 +00:00
8b3075fdba
Signed-off-by: deadprogram <ron@hybridgroup.com>
18 lines
272 B
Go
18 lines
272 B
Go
//go:build feather_m4 || feather_m4_can || feather_nrf52840
|
|
|
|
package main
|
|
|
|
import (
|
|
"machine"
|
|
)
|
|
|
|
func init() {
|
|
spi = &machine.SPI0
|
|
sckPin = machine.SPI0_SCK_PIN
|
|
sdoPin = machine.SPI0_SDO_PIN
|
|
sdiPin = machine.SPI0_SDI_PIN
|
|
csPin = machine.D10
|
|
|
|
ledPin = machine.LED
|
|
}
|