Re: [Discuss-gnuradio] Make fails

2016-06-01 Thread Ron Economos
Master builds okay here. The VOLK commit for this is: https://github.com/gnuradio/volk/commit/11fadd3af8ebd3c9ddda6160e115a686a3aec5d8 The corresponding GNU Radio commit is: https://github.com/gnuradio/gnuradio/commit/cee8f5041c70c01e8ee128be7d817d4594f8cffb Ron On 06/01/2016 07:32 PM, Ron

Re: [Discuss-gnuradio] Make fails

2016-06-01 Thread Ron Economos
Your VOLK version doesn't look correct. It should be b930d7f. I suggest you do a git clone instead of git pull. I'm building master right now just to be sure. Ron W6RZ On 06/01/2016 06:57 PM, Tom McDermott wrote: For the first time in a couple of years of successful monthly or so updates

[Discuss-gnuradio] Make fails

2016-06-01 Thread Tom McDermott
For the first time in a couple of years of successful monthly or so updates from git on master, I've had make fail. Ubuntu 14.04, 64-bit architecture, using all 8 cores for make. Volk did an update on the pull from git tonight. gnuradio master version a7285ea volk master version 56c0235 Seems to

Re: [Discuss-gnuradio] OOT Module Issue

2016-06-01 Thread Patrick Sathyanathan
Try running "nm -u -C libgnuradio-ins_blocks.so" and search for any class methods that are supposed to be defined in the module. --Patrick Date: Wed, 1 Jun 2016 12:01:04 -0700 From: richard.be...@gmail.com To: discuss-gnuradio@gnu.org Subject: [Discuss-gnuradio] OOT Module Issue Hi, This is

Re: [Discuss-gnuradio] Wideband Random Noise Cypherpunk Guerrilla Radio - Doc Req

2016-06-01 Thread Marcus Müller
Hi grarpamp, > Is there a more general, gnuradio agnostic, SDR list? Puh, the SDR community is huge, and we're probably one of the largest forum amongst them; I really don't know > IEEE probably doesn't accept papers dealing with, at least in part, > possibly applied toward "illegal in some

Re: [Discuss-gnuradio] Wideband Random Noise Cypherpunk Guerrilla Radio - Doc Req

2016-06-01 Thread grarpamp
On 6/1/16, Marcus Müller wrote: > Well, then this discussion gets quickly out of scope of GNU Radio – you > see, GNU Radio is mostly for complex baseband signal processing, and > that kind of radio really depends on things being done in hardware. So, > not SDR. The

[Discuss-gnuradio] OOT Module Issue

2016-06-01 Thread Richard Bell
Hi, This is on Ubuntu 14.04 with GNU Radio 3.7.10 I have a module that I use just for altering existing GNU Radio blocks. Currently, it has the header/payload demux block and the packet_header_parser block in it, which I copied and pasted from the built-in block files. The HPD block was working

Re: [Discuss-gnuradio] Testing 'noblock' Class

2016-06-01 Thread Dave NotTelling
Also, when I use CPPUNIT_ASSERT_MESSAGE("foobar\n", 1 == 2) I only see the 'F' get printed in the output of ./test-moo. I do not see the requested message. Perhaps a better question would be are there any good examples of doing this? Thanks! On Wed, Jun 1, 2016 at 1:52 PM, Dave NotTelling

[Discuss-gnuradio] Extending a GNU Radio block with use of inheritance

2016-06-01 Thread Piotr Krysik
Hi all, I want to extend a little general_work function of one of the blocks (fractional_resampler) in order to add processing of stream tags that will change parameters of the block instance (i.e. call function set_mu) at a moment marked by a stream tag. Probably the optimal solution in terms

Re: [Discuss-gnuradio] Testing 'noblock' Class

2016-06-01 Thread Dave NotTelling
That worked! One more question: How do I make the test run with 'make test'? It seems that 'make test' only runs the actual GNU Radio modules and not the 'noblock' classes. On Wed, Jun 1, 2016 at 12:32 PM, Dave NotTelling wrote: > I was not using CPPUINT_ASSER_EQUAL. I

Re: [Discuss-gnuradio] plot_data options in gr-utils

2016-06-01 Thread Marcus Müller
Hi Adellain, have you tried doing for example gr_plot_fft_c --help ? That should give you all options you can call those with. Now, if you're writing your own visualizations: I recommend using IPython notebooks, with matplotlib configured to produce inline images. Best regards, Marcus On

Re: [Discuss-gnuradio] Testing 'noblock' Class

2016-06-01 Thread Dave NotTelling
I was not using CPPUINT_ASSER_EQUAL. I will give that a go later today. Thank you! On Wed, Jun 1, 2016 at 12:08 PM, Martin Braun wrote: > Are you using assert() or CPPUNIT_ASSERT_*? > > I just hacked something together, and it worked/failed just fine. > > This is my

Re: [Discuss-gnuradio] Testing 'noblock' Class

2016-06-01 Thread Martin Braun
Are you using assert() or CPPUNIT_ASSERT_*? I just hacked something together, and it worked/failed just fine. This is my class: {{{ 34 class TESTOR_API fo 35 { 36 public: 37 fo(); 38 ~fo(); 39 40 int return_five() { return 5; } 41 private:

Re: [Discuss-gnuradio] [GSoC] Weekly update for PyBOMBS and CGRAN integration project

2016-06-01 Thread Ben Hilburn
Hi Ravi - Thanks for the update! Do you plan on sharing mock-ups of your design once you have them? Cheers, Ben On Sun, May 29, 2016 at 2:55 PM, Ravi Sharan < bhagavathula.ravisha...@gmail.com> wrote: > Hi All, > > It's been a week since the GSoC coding period started and I have > summarized

Re: [Discuss-gnuradio] [PyBOMBS] Need your help!

2016-06-01 Thread Martin Braun
On 06/01/2016 06:26 AM, Marcus Müller wrote: > this loolks like there might be some headers of thrift installed on your > machine that don't match the binary library thrift found during linking; > that is especially surprising as it seems that pybombs makes no attempt > at installing thrift in the

Re: [Discuss-gnuradio] B200/mini GPIO

2016-06-01 Thread Marcus D. Leech
On 06/01/2016 10:23 AM, Santos Campos wrote: Hello again, all! I've finally come back to this after a while. I'm trying to get the example code to compile but having some trouble. Does anyone have any experience with using the uhd gpio api? I tried using this to compile: $ gcc

Re: [Discuss-gnuradio] GNURadio autmatic gain adjustment

2016-06-01 Thread Ben Hilburn
Hi Simon - Just to make sure I'm understanding your question correctly: are you asking how to dynamically change your system gain or scale your samples so that you are using the full range [-1, +1]? Cheers, Ben On Tue, May 31, 2016 at 5:07 PM, olvhammar wrote: > Hi,

Re: [Discuss-gnuradio] Gnu Radio Profiling Questions

2016-06-01 Thread Ben Hilburn
Hi Yile - Can you use anything from your install, like `gnuradio-companion`? Based on the error, your issue doesn't appear to be related to profiling, but rather setting up your $PYTHONPATH for using GNU Radio, generally. Have you configured your $PYTHONPATH post install?

Re: [Discuss-gnuradio] B200/mini GPIO

2016-06-01 Thread madengr
Yes, specifically copy uhd/host/examples/init_usrp/CMakeLists.txt over to your build directory, then replace "init_ursp" with "gpio". Then just: cmake . make Marcus D. Leech wrote > The best thing to do is to use the existing UHD build infrastructure to > compile UHD examples. > > Modify,

Re: [Discuss-gnuradio] B200/mini GPIO

2016-06-01 Thread Marcus D. Leech
On 06/01/2016 10:23 AM, Santos Campos wrote: Hello again, all! I've finally come back to this after a while. I'm trying to get the example code to compile but having some trouble. Does anyone have any experience with using the uhd gpio api? I tried using this to compile: $ gcc

Re: [Discuss-gnuradio] B200/mini GPIO

2016-06-01 Thread Santos Campos
Hello again, all! I've finally come back to this after a while. I'm trying to get the example code to compile but having some trouble. Does anyone have any experience with using the uhd gpio api? I tried using this to compile: $ gcc -I/usr/include/boost -I/home/santosec/uhd/host/include/uhd

[Discuss-gnuradio] GRCon Submission Deadline Extension

2016-06-01 Thread Ben Hilburn
Hi all - We have received a number of requests for extensions to the deadline for abstract submission, and so, like all great conferences before us, we are extending the deadlines for GRCon talk, tutorial, and poster abstracts. New dates: *Deadline of Abstract Submission: *June 15th

Re: [Discuss-gnuradio] plot_data options in gr-utils

2016-06-01 Thread Vitt Benv
Hi , take a look at my [ https://sourceforge.net/projects/automodrecog/ ] and tale a look at pyplot docs... not Gnuradio but it work! My app generate a plot as analysis's result and creates a PNG image embedeed into an html form. Bye, I3VFJ, Vittorio 2016-06-01 15:15 GMT+02:00 Adellain

[Discuss-gnuradio] plot_data options in gr-utils

2016-06-01 Thread Adellain TSIAHINA
Hello all, I'm using gnuradio and I would write my own python scripts to plot the data (the data are saved in a binary file which contains the stream - saved with file sink in grc). I spent a day trying to use the scripts in gr-utils such as plot_data but I don't know exactly how to use it (the

Re: [Discuss-gnuradio] [PyBOMBS] Need your help!

2016-06-01 Thread Marcus Müller
Hi Mike, this loolks like there might be some headers of thrift installed on your machine that don't match the binary library thrift found during linking; that is especially surprising as it seems that pybombs makes no attempt at installing thrift in the first place, which either means it detects

Re: [Discuss-gnuradio] Wideband Random Noise Cypherpunk Guerrilla Radio - Doc Req

2016-06-01 Thread Marcus Müller
Hi Grarpamp, On 01.06.2016 05:24, grarpamp wrote: > On 5/29/16, Marcus Müller wrote: >> If you spread it extremely wide and basically put the power level > Probably more like this than in your first larger paragraph. Well, then this discussion gets quickly out of scope

Re: [Discuss-gnuradio] Wideband Random Noise Cypherpunk Guerrilla Radio - Doc Req

2016-06-01 Thread Marcus Müller
Oh and, On 01.06.2016 05:24, grarpamp wrote: > The paper may have even been posted here, but without an unaltered raw > copy of the list archives in mbox format available for download for > people to then load into local MUA's, it's really hard to search for > such text, links, and attachments.