mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-10 14:03:39 +00:00
13 lines
139 B
Go
13 lines
139 B
Go
//go:build fe310 && hifive1b
|
|
|
|
package machine
|
|
|
|
import "device/sifive"
|
|
|
|
// SPI on the HiFive1.
|
|
var (
|
|
SPI1 = SPI{
|
|
Bus: sifive.QSPI1,
|
|
}
|
|
)
|