SPI Device with cgo

This commit is contained in:
Friedl Ulrich 2015-02-05 22:01:43 +01:00
parent 610f9824a2
commit 5ad4fe4eb5

View file

@ -355,5 +355,6 @@ func (r *Device) writeFifo(toAddress byte, buffer []byte, requestACK, sendACK bo
copy(tx[5:], buffer[:buffersize])
return r.SpiDevice.TransferAndRecieveData(tx)
_, err := r.SpiDevice.Xfer(tx)
return err
}