More logging
This commit is contained in:
parent
b3a45db48a
commit
1dc12ff5c1
1 changed files with 6 additions and 1 deletions
|
@ -84,7 +84,10 @@ int spi_xfer(int fd, char* tx, char* rx, int length) {
|
|||
}
|
||||
*/
|
||||
import "C"
|
||||
import "unsafe"
|
||||
import (
|
||||
"log"
|
||||
"unsafe"
|
||||
)
|
||||
import "errors"
|
||||
|
||||
// SPIDevice device
|
||||
|
@ -107,7 +110,9 @@ func NewSPIDevice() (*SPIDevice, error) {
|
|||
func (d *SPIDevice) Xfer(tx []byte) ([]byte, error) {
|
||||
length := len(tx)
|
||||
rx := make([]byte, length)
|
||||
log.Print("sending", tx)
|
||||
ret := C.spi_xfer(d.fd, (*C.char)(unsafe.Pointer(&tx[0])), (*C.char)(unsafe.Pointer(&rx[0])), C.int(length))
|
||||
log.Print("got", rx)
|
||||
if ret < 0 {
|
||||
return nil, errors.New("could not xfer")
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue