Search found 980 matches

by sdrplay
Fri Mar 18, 2016 2:36 pm
Forum: General
Topic: Ordered rsp inted with Ubuntu Linux..concerned
Replies: 15
Views: 35175

Re: Ordered rsp inted with Ubuntu Linux..concerned

yes, that libusb error will be a problem - that is saying that something else has grabbed the device. Using lsmod, check to see if there is anything like msi001, msi2500 or sdr_msi3101 loaded - these will cause a problem and will need to be blacklisted. If not, then you need to make sure only 1 appl...
by sdrplay
Fri Mar 18, 2016 7:48 am
Forum: New Users' experiences
Topic: Soapy Sales Show
Replies: 1
Views: 9910

Re: Soapy Sales Show

You need to build SoapySDR and SoapySDRPlay before SoapySDR will work - if you have a 32bit OS that might be why SoapySDR didn't work after the API install - we only distribute the 64bit version.

Best regards,

SDRplay Support
by sdrplay
Thu Mar 17, 2016 7:18 am
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 269781

Re: SDRPLAY linux commandline tools?

In the code I posted -b is not used and the bandwidth is fixed at 1.536MHz - using -s of anything less than 2 is not a valid state so this maybe why you are getting strange buffer sizes being malloc'd? The code was an example and needs more work to be robust. I'm happy to update the github repositor...
by sdrplay
Wed Mar 16, 2016 10:22 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 269781

Re: SDRPLAY linux commandline tools?

For 16bit output the 2nd parameter in the fwrite statement should be a 2 otherwise it's only writing 8 bits of the buffer value.

Best regards,

SDRplay Support
by sdrplay
Wed Mar 16, 2016 8:42 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 269781

Re: SDRPLAY linux commandline tools?

it's signed (short)

Best regards,

SDRplay Support
by sdrplay
Wed Mar 16, 2016 8:22 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 269781

Re: SDRPLAY linux commandline tools?

I'm not sure about the post processing - what is the -r option in sox doing? The sample rate used in the play_sdr is 2MHz - are you taking that into account anywhere?

Best regards,

SDRplay Support
by sdrplay
Wed Mar 16, 2016 6:49 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 269781

Re: SDRPLAY linux commandline tools?

If you want a 16 bit output, don't do the right shift and change the output buffer to 16 bits instead of 8

Best regards,

SDRplay
by sdrplay
Wed Mar 16, 2016 6:48 pm
Forum: General
Topic: Ordered rsp inted with Ubuntu Linux..concerned
Replies: 15
Views: 35175

Re: Ordered rsp inted with Ubuntu Linux..concerned

Hi,

The best supported option is CubicSDR (the API installation will also contain SoapySDR/SoapySDRPlay which you need to communicate with the RSP)

http://cubicsdr.com - it's still in development but already becoming pretty popular.

Best regards,

SDRplay Support
by sdrplay
Wed Mar 16, 2016 4:58 pm
Forum: Code Corner
Topic: SDRPLAY linux commandline tools?
Replies: 83
Views: 269781

Re: SDRPLAY linux commandline tools?

The output of the RSP is 16 bits. To be compatible with the RTL code you need to remove the top 8 bits which is what...

>> 8

is doing

In the ADS-B code we have to do >> 8 + 127

so you can try with that as well.

Hope that helps,

Best regards,

SDRplay Support
by sdrplay
Tue Mar 15, 2016 7:13 am
Forum: New Users' experiences
Topic: Looking for help with SDRplay and Ubuntu
Replies: 3
Views: 14762

Re: Looking for help with SDRplay and Ubuntu

The lilbusb -6 error means that a driver has already grabbed the USB port, so the RSP API cannot get access to it. I would check to see if you have any kernel drivers loaded that have done that by usng lsmod (you are looking for something like msi001, msi2500 or sdr_msi3101) - if that's the case you...