blob: 5c9ab77043e8af64dfa57c0b8257daf17d95e7ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//go:build k210 && maixbit
// +build k210,maixbit
package machine
import "device/kendryte"
// SPI on the MAix Bit.
var (
SPI0 = SPI{
Bus: kendryte.SPI0,
}
SPI1 = SPI{
Bus: kendryte.SPI1,
}
)
|