-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
create wiki and update sidebar #2
Comments
tmachielsen@Laptop[±|master ?:14 ✗]:~/rx_tools $ SoapySDRUtil --probe="driver=sdrplay" Soapy SDR -- the SDR abstraction library###################################################### Probe device driver=sdrplay |
Its a generic std::map error, probably a bug though. Can you get a gdb backtrace? gdb --args SoapySDRUtil --probe="driver=sdrplay" |
why are you using "driver=sdrplay"? SoapySDRUtil --probe=sdrplay or SoapySDRUtil --find=sdrplay works fine. |
The string is parsed as key/value pairs separated by commas and equals, so the driver key unlike the others just tells SoapySDR's factory/discovery to only look at the sdrplay registered functions. Anyway, find works, but probe instantiates the device and reads a lot of settings and prints out a summary to the console. So something may be untested/uninitialized thats not usually read before its set, or something like that. A backtrace would probably point to the exact function in question. |
I've never used or seen --probe used in any other way than --probe=sdrplay So why does --probe=sdrplay work? Should SoapySDRUtil not complain that there isn't a key/value pair specified? |
It just parses it as the key "sdrplay" and value is a "" blank string. There's nothing that cares about key sdrplay, so its just ignored basically. This just means its not filtering out other devices, not really an issue if there is only one device anyhow :-) |
No gdb here. This is a Mac. |
really just looking for a backtrace if possible. so lldb? https://developer.apple.com/library/archive/documentation/IDEs/Conceptual/gdb_to_lldb_transition_guide/document/lldb-command-examples.html |
|
OK, my problem was this: https://askubuntu.com/questions/981663/python2-7-broken-by-weakref-import-error-please-help Now:
|
Cool. However, I'm confused, so probe normally crashes for you like this: |
Also add output of SoapySDRUtil --probe="driver=sdrplay" to the wiki for demonstration (scrub any serials)
The text was updated successfully, but these errors were encountered: