Re: [Discuss-gnuradio] GNURadio retrictions

2014-11-24 Thread Mostafa Alizadeh
On Mon, Nov 24, 2014 at 4:11 PM, Sylvain Munaut <246...@gmail.com> wrote: > > Please help me find the rational reason! > > Because calling "produce" means, "I'm done, go ahead and take those > sample". > Don't call it until you are reall done ... > > GR is a multi-threaded applications, each work(

Re: [Discuss-gnuradio] GNURadio retrictions

2014-11-24 Thread Mostafa Alizadeh
Hi Marcus, On Mon, Nov 24, 2014 at 1:33 AM, Marcus Müller wrote: > Hi Mostafa, > > On 11/23/2014 10:39 PM, Mostafa Alizadeh wrote: > > I just figured > > out the following limitation of GNURadio's framework that I want to > diacuss > > them to clarify whether I'm wrong or not: > > > > 1- For gen

Re: [Discuss-gnuradio] Install: qa_volk_test_all fails

2014-11-24 Thread madengr
Run volk_profile then rerun the tests. Lou Cocacola93 wrote > On Ubuntu 14.04LTS 32bit, I tried installing using gnuradio-3.7.5 > The build completed, but several of the build tests fail > 98 % tests passed,4 test failed out of 193 > > The following tests FAILED: > 1 - qa_volk_test_all

Re: [Discuss-gnuradio] QT GUI Time Sink text scale bug

2014-11-24 Thread madengr
Marcus, OK; dumb question. How do I apply that, other an editing the source manually? I tried the following, but it didn't like it: cd /usr/local/src/gnuradio/ patch < 0001-qtgui-fixed-non-changing-from-sec-to-ms.patch Thanks, Lou Marcus Müller wrote > -BEGIN PGP SIGNED MESSAGE- > Ha

Re: [Discuss-gnuradio] Inconsistant Gain in X310

2014-11-24 Thread Marcus D. Leech
On 11/24/2014 10:26 AM, Daigle, Andrew - 1008 - MITLL wrote: Ben, I have tried injecting both a 50.0 MHz and a 50.1 MHz tone and setting the USRP with a center frequency of 50 MHz and a sampling rate of 1 MSps. The signal generator I am using is clocked with the same 10 MHz reference as the

Re: [Discuss-gnuradio] Patching airprobe to compile with GNURadio 3.7

2014-11-24 Thread Tom Rondeau
On Sun, Nov 23, 2014 at 5:10 PM, jkkjjkjk kjjkjkjkj wrote: > Hey, I've spent the last couple of days trying to get airprobe rtl GSM > software to work with the new GNU Radio. > I made a patch to grcompat to fill in the missing functions: > https://github.com/genjix/grcompat > And have got ported

Re: [Discuss-gnuradio] linking Gnuradio and Gpredict ?

2014-11-24 Thread Darren Long
Hi Mike Alex (the gqrx and Gpredict author) suggested using pyephem to me once when I asked about this. I did have a little play with it, but haven't done anything interesting or useful. http://rhodesmill.org/pyephem/ Darren, G0HWW On 24/11/14 10:15, Mike Willis wrote: > I know this is going b

Re: [Discuss-gnuradio] Inconsistant Gain in X310

2014-11-24 Thread Daigle, Andrew - 1008 - MITLL
Ben, I have tried injecting both a 50.0 MHz and a 50.1 MHz tone and setting the USRP with a center frequency of 50 MHz and a sampling rate of 1 MSps. The signal generator I am using is clocked with the same 10 MHz reference as the USRP (octoclock). I am currently setting the digital gain to zer

Re: [Discuss-gnuradio] working with TCP source/sink

2014-11-24 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Sreena, this is a bit hard to debug like this. I smell network problems, possibly firewall-related. Use a network sniffer like wireshark to figure that one out :) Greetings, Marcus On 11/24/2014 10:34 AM, sreena p h wrote: > Hi I would like to wo

Re: [Discuss-gnuradio] Received Signal Power question

2014-11-24 Thread madengr
I assume m.data is a list of FFT magnitude-squared data; it can't be complex otherwise math.log10() won't work. It must be magnitude-squared since it is using 10*math.log10(), otherwise it needs to be 20*math.log10(). It finds the minimum out of all the bins and calls that the noise floor. For e

Re: [Discuss-gnuradio] Question about Plotting the Spectrum(Power against frequency) with usrp_sense.py

2014-11-24 Thread Leo Yang
the plot should be the power of the signal against the frequency, when u say the format, do u mean the type of the variable ? -- View this message in context: http://gnuradio.4.n7.nabble.com/Question-about-Plotting-the-Spectrum-Power-against-frequency-with-usrp-sense-py-tp51380p51413.html Sent

Re: [Discuss-gnuradio] Question about Plotting the Spectrum(Power against frequency) with usrp_sense.py

2014-11-24 Thread Martin Braun
Do you want to plot the data using GNU Radio? What's the format? M On 11/21/2014 06:38 PM, Leo Yang wrote: > Question about the spectrum plot of the usr_sense.py: > I have modified the old usrp_spectrum_sense.py to fit the latest version of > gnuradio, and now I can run the program and export the

Re: [Discuss-gnuradio] plateau detectors

2014-11-24 Thread Martin Braun
On 11/22/2014 06:01 PM, Marcus Müller wrote: > Hi zs, > hm, there's basically three places (that I know of) that GR uses Schmidl > & Cox: > the ofdm_chanest Channel estimator, the original S&C-based > ofdm_sync_pn.py and the more robustness-optimized version in > ofdm_sync_pnac.py. > I suspect you'

Re: [Discuss-gnuradio] GNURadio retrictions

2014-11-24 Thread Marcus Müller
Forgot to CC: the list: Hi Mostafa, On 11/23/2014 10:39 PM, Mostafa Alizadeh wrote: > I just figured > out the following limitation of GNURadio's framework that I want to diacuss > them to clarify whether I'm wrong or not: > > 1- For general blocks with multiple output ports, there is a problem w

[Discuss-gnuradio] Received Signal Power question

2014-11-24 Thread Leo Yang
I found one modified example from usrp_spectrum_sense.py which mentioned the power and noise calculation, could u plz help me figure out how it works? for i_bin in range(bin_start, bin_stop): center_freq = m.center_freq freq = bin_freq(i_bin, center_freq)

Re: [Discuss-gnuradio] GNURadio retrictions

2014-11-24 Thread Sylvain Munaut
> Please help me find the rational reason! Because calling "produce" means, "I'm done, go ahead and take those sample". Don't call it until you are reall done ... GR is a multi-threaded applications, each work() function is executed in different threads and as soon as you call produce(), other th

Re: [Discuss-gnuradio] linking Gnuradio and Gpredict ?

2014-11-24 Thread Mike Willis
I know this is going back a bit but I would like to do the same thing for my Gnuradio satellite ground station. I was actually tempted to compile satellite tracking into a Gnuradio block. One you could simply use in a flowchart without any of the messing about with XMLRPC but like my new hexagonal