https://github.com/pothosware/soapysdrplay3
Soapy SDR plugin for SDRPlay APIv3
https://github.com/pothosware/soapysdrplay3
gnuradio pothos sdr sdrplay soapysdr
Last synced: about 2 months ago
JSON representation
Soapy SDR plugin for SDRPlay APIv3
- Host: GitHub
- URL: https://github.com/pothosware/soapysdrplay3
- Owner: pothosware
- License: mit
- Created: 2020-03-11T11:41:58.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-09T16:04:17.000Z (2 months ago)
- Last Synced: 2025-03-30T09:05:16.459Z (about 2 months ago)
- Topics: gnuradio, pothos, sdr, sdrplay, soapysdr
- Language: C++
- Homepage: https://github.com/pothosware/SoapySDRPlay3/wiki
- Size: 127 KB
- Stars: 101
- Watchers: 31
- Forks: 17
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- Changelog: Changelog.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
# Soapy SDR module for SDRPlay
## Documentation
* https://github.com/pothosware/SoapySDRPlay/wiki
## Dependencies
* SDRplay API - download (and install) SDRplay API from - https://www.sdrplay.com/downloads - NOTE: the current version of this module requires SDRplay API V3.15 or later
* SoapySDR - https://github.com/pothosware/SoapySDR/wiki## Troubleshooting
This section contains some useful information for troubleshhoting
##### Message: `[WARNING] Can't find label in args`
An error message like this one:
```
Probe device driver=sdrplay
[WARNING] Can't find label in args
Error probing device: Can't find label in args
```could be due to the OS not being able to 'see' the RSP as a USB device.
You may want to check using the command `lsusb`:
```
lsusb -d 1df7:
```
The output should look similar to this:
```
Bus 002 Device 006: ID 1df7:3010
```
If the `lsusb` command above returns nothing, it means the OS is not able to see the RSP (which could be due to a moltitude of reasons, like problems with the OS, bad USB cable, bad hardware, etc).Another way to verify that the OS is able to see the RSP device is by running the `dmesg` command
```
dmesg
```
and look for lines similar to these (the idVendor value should be 1df7):
```
[ 1368.128506] usb 2-2: new high-speed USB device number 6 using xhci_hcd
[ 1368.255007] usb 2-2: New USB device found, idVendor=1df7, idProduct=3010, bcdDevice= 2.00
[ 1368.255016] usb 2-2: New USB device strings: Mfr=0, Product=0, SerialNumber=0
```If there's nothing like that, try first to disconnect the RSP and then connect it back; if that does not work, try rebooting the computer; if that does not work either, try the RSP on a different computer with a different USB cable.
## Licensing information
The MIT License (MIT)
Copyright (c) 2015 Charles J. Cliffe
Copyright (c) 2020 Franco Venturi - changes for SDRplay API version 3 and Dual Tuner for RSPduoPermission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.