SPI Device with cgo

This commit is contained in:
Friedl Ulrich 2015-02-05 22:04:50 +01:00
parent 99530f9ce4
commit ad23db2039

View file

@ -26,7 +26,10 @@ func TestRfm69(t *testing.T) {
}
gpio.ActiveLow(false)
spiBus := NewSPIDevice()
spiBus, err := NewSPIDevice()
if err != nil {
panic(err)
}
defer spiBus.Close()
rfm, err := NewDevice(spiBus, gpio, 1, 10, true)