Page 9 of 9

Re: SDRPLAY linux commandline tools?

Posted: Wed Sep 14, 2016 4:09 pm
by billhatch40
I found that it was necessary to check the mir_sdr_ReadPacket return code and recover from a failure. Otherwise I got a memory fault when the call failed.

Code: Select all

result=mir_sdr_ReadPacket(xi, xq, &firstSamp, &grChanged, &rfChanged, &fsChanged);
        if(result){
                sleep(0);
                continue;

        }

Re: SDRPLAY linux commandline tools?

Posted: Sat Jan 28, 2017 6:47 pm
by deadite66
Wish someone would make a version of rtl_fm for SDRPlay, from my experience rx_tools is pretty poor.

idealy i'd love RTLSDR-Airband to be converted.

Re: SDRPLAY linux commandline tools?

Posted: Mon Mar 13, 2017 7:05 pm
by deadite66
Just noticed the SoapySDR dev has been committing code to rx_tools, hopefully it can be made usable.

Re: SDRPLAY linux commandline tools?

Posted: Thu Nov 29, 2018 10:58 am
by BackgroundNoise
Hello!

Does rawIQ work with the current API?

Thanks!