You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
407 B
Go

10 years ago
package rfm69
10 years ago
import (
10 years ago
"testing"
10 years ago
"github.com/kidoman/embd"
10 years ago
_ "github.com/kidoman/embd/host/rpi"
10 years ago
)
10 years ago
func TestRfm69(t *testing.T) {
10 years ago
t.Log("Test")
10 years ago
if err := embd.InitSPI(); err != nil {
10 years ago
t.Error(err)
10 years ago
}
defer embd.CloseSPI()
10 years ago
spiBus := embd.NewSPIBus(embd.SPIMode0, 0, 4000000, 8, 0)
10 years ago
defer spiBus.Close()
10 years ago
rfm, err := NewDevice(spiBus, 1, 10, true)
10 years ago
if err != nil {
10 years ago
t.Error(err)
10 years ago
}
10 years ago
t.Log(rfm)
10 years ago
}