mirror of
https://github.com/rtlsdrblog/rtl-sdr-blog.git
synced 2025-01-28 02:44:57 +01:00
workaround for some versions of libusb
Some versions of libusb don't seem to like if you call libusb_init if you already have another instance opened. (1.0.8 on Debian squeeze e.g.) Thus, print name of device before opening it. Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
parent
003446e508
commit
97db8149d9
@ -97,6 +97,7 @@ int main(int argc, char **argv)
|
||||
}
|
||||
|
||||
printf("Found %d device(s).\n", device_count);
|
||||
printf("Using %s\n", rtlsdr_get_device_name(dev_index));
|
||||
|
||||
r = rtlsdr_open(&dev, dev_index);
|
||||
if (r < 0) {
|
||||
@ -104,8 +105,6 @@ int main(int argc, char **argv)
|
||||
exit(1);
|
||||
}
|
||||
|
||||
printf("Using %s\n", rtlsdr_get_device_name(dev_index));
|
||||
|
||||
sigact.sa_handler = sighandler;
|
||||
sigemptyset(&sigact.sa_mask);
|
||||
sigact.sa_flags = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user