mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-12 15:03:41 +00:00
f76e8d2812
Signed-off-by: deadprogram <ron@hybridgroup.com>
13 lines
140 B
Go
13 lines
140 B
Go
//go:build fe310 && hifive1b
|
|
|
|
package machine
|
|
|
|
import "device/sifive"
|
|
|
|
// SPI on the HiFive1.
|
|
var (
|
|
SPI1 = &SPI{
|
|
Bus: sifive.QSPI1,
|
|
}
|
|
)
|