Skip to content

Commit

Permalink
libbladeRF: Fixed pkt_8x16 read operation
Browse files Browse the repository at this point in the history
The data wasn't being provided back to the caller.
  • Loading branch information
jynik committed Jun 24, 2015
1 parent 23ecfad commit c0cbeea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions host/libraries/libbladeRF/src/backend/usb/nios_access.c
Expand Up @@ -155,6 +155,7 @@ int nios_8x16_read(struct bladerf *dev, uint8_t id,
nios_pkt_8x16_resp_unpack(buf, NULL, NULL, NULL, &tmp, &success);

if (success) {
*data = tmp;
return 0;
} else {
*data = 0;
Expand Down

0 comments on commit c0cbeea

Please sign in to comment.