mirror of
https://github.com/rtlsdrblog/rtl-sdr-blog.git
synced 2024-11-06 10:47:35 +01:00
don't print i2c read/write errors for now
During autodetection of the tuner they are normal and may cause confusion. Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
parent
3dff6f3c26
commit
54fe3eca01
@ -279,10 +279,10 @@ int rtlsdr_read_array(rtlsdr_dev_t *dev, uint8_t block, uint16_t addr, uint8_t *
|
||||
uint16_t index = (block << 8);
|
||||
|
||||
r = libusb_control_transfer(dev->devh, CTRL_IN, 0, addr, index, array, len, CTRL_TIMEOUT);
|
||||
|
||||
#if 0
|
||||
if (r < 0)
|
||||
fprintf(stderr, "%s failed with %d\n", __FUNCTION__, r);
|
||||
|
||||
#endif
|
||||
return r;
|
||||
}
|
||||
|
||||
@ -292,10 +292,10 @@ int rtlsdr_write_array(rtlsdr_dev_t *dev, uint8_t block, uint16_t addr, uint8_t
|
||||
uint16_t index = (block << 8) | 0x10;
|
||||
|
||||
r = libusb_control_transfer(dev->devh, CTRL_OUT, 0, addr, index, array, len, CTRL_TIMEOUT);
|
||||
|
||||
#if 0
|
||||
if (r < 0)
|
||||
fprintf(stderr, "%s failed with %d\n", __FUNCTION__, r);
|
||||
|
||||
#endif
|
||||
return r;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user