Re: [Discuss-gnuradio] Which blocks do you like?

2015-05-15 Thread Ron Economos
The tone reservation PAPR reduction block used with the DVB-T2 transmitter in gr-dtv may be interesting for you. It uses a ton of floating point calculations. https://github.com/gnuradio/gnuradio/blob/master/gr-dtv/lib/dvbt2/dvbt2_paprtr_cc_impl.cc Even though it uses Volk kernels extensively,

[Discuss-gnuradio] Which blocks do you like?

2015-05-15 Thread marco Ribero
Hi, for my thesis I'm making "porting" of gnuradio blocks over CUDA.. For the moment,I've bring basick blocks,FIR filter,FFT,an FM receiver(not so good due to latency) and I'm working with ofdm..I still need to implement IIR filter Which other blocks do you think that could be nice(useful,get perf

[Discuss-gnuradio] QT Freq Sink Display not centering correctly?

2015-05-15 Thread Jason Noble
So, I first noticed this problem with my main GNURadio install (3.7.5 on Debian Jessie) but I've reproduced it on a brand new 3.7.7.1 live USB. Basically I'm looking at two frequency sinks. One of them centered at 0 and one centered at 16kHz. I have a single signal source input to both sinks, star

Re: [Discuss-gnuradio] GNU radio with 1 - qa_test_all failed

2015-05-15 Thread shaunwang
Hello Nathan Can you provide some information on how you are building VOLK? I download the VOLK file from the git, cause the master of gnuradio does not have volk included. https://github.com/gnuradio/volk And then I just follow the instruction in the building website $ mkdir build $ cd build $ c

Re: [Discuss-gnuradio] Scrambler Mask, Seed and Lenght

2015-05-15 Thread Thanasis Balafoutis
ok until 3.8 how can I use this block without making mistakes? If for example want the following polynomials (copy from [1]) x^4 + x^3 + x^0 = 0x19 x^5 + x^3 + x^0 = 0x29 x^6 + x^5 + x^0 = 0x61 do I have to set the length to 5,6,7 respecti

Re: [Discuss-gnuradio] Problems when trying to make out of tree modules

2015-05-15 Thread Marcus Müller
There's a GR_REQUIRED_COMPONENTS CMake variable[e.g. 1]; add FILTER. Best regards, Marcus [1] https://github.com/marcusmueller/gr-debugme/blob/master/CMakeLists.txt#L113 Am 15. Mai 2015 11:47:51 MESZ, schrieb Su Li : >Hi all, > >I found the problem. > >In my OOT block, I try to use mmse_fir_inter

Re: [Discuss-gnuradio] Scrambler Mask, Seed and Lenght

2015-05-15 Thread Johnathan Corgan
On Fri, May 15, 2015 at 1:32 AM, Marcus Müller wrote: > So, yes, I think I agree, and length should at least be 8 here (your > polynomial has degree 7), and it's a bit uncommon to see a LFSR being used > without the x^0 coefficient. > Agree. This was a poor implementation decision by someone w

Re: [Discuss-gnuradio] (Previously working) AttributeError: 'module' object has no attribute

2015-05-15 Thread Nicolas Cuervo Benavides
Solved. I needed just to type "sudo ldconfig" and afterwards it works like a charm. Thanks to all who read the problem. On Thu, May 14, 2015 at 10:02 PM, Nicolas Cuervo Benavides < cuervonico...@gmail.com> wrote: > Hello all, > > I was woking debuging an error that appear in my application, and

Re: [Discuss-gnuradio] Problems when trying to make out of tree modules

2015-05-15 Thread Su Li
Hi all, I found the problem. In my OOT block, I try to use mmse_fir_interpolator. Thus, in the my_block_impl.h file I use the following code to include the fir interpolator: *#include * But when I run ctest for my block, I got the following error: *ImportError: /home/suli/gr-ctia802_15_4/build

Re: [Discuss-gnuradio] How to add RTL_SDR into 3.7.8 gnuradio library?

2015-05-15 Thread Marcus Müller
Hi Shaunwag, rtl-sdr doesn't belong inside your GNU radio source tree, and it never did. Both things are unrelated. Compile rtl-sdr anywhere you've downloaded it, "make install" it; install GNU Radio. After both, build the gr-osmosdr module, and you will get GNU Radio blocks that allow you to acce

Re: [Discuss-gnuradio] Scrambler Mask, Seed and Lenght

2015-05-15 Thread Marcus Müller
HI Thanasis, first things first: That is gr::digital::scrambler_bb, which has doxygen documentation [1]. The length is really just the length of the underlying shift register -- which ought to be at least (order of generator poly)+1, ie. floor(log2(mask))+1 I recommend having a quick glance at its