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

2016-06-02 Thread Dave NotTelling
Martin, I have no idea how or why, but it magically works now. Must have heard you were on the case :D Thank you! -Dave On Thu, Jun 2, 2016 at 11:19 AM, Martin Braun wrote: > Dave, > > what I did was > > 1. gr_modtool add -t noblock fo. Answer 'yes' when

Re: [Discuss-gnuradio] GNURadio autmatic gain adjustment

2016-06-02 Thread Simon Olvhammar
Hi Ben, I have implemented a function to dynamically change my system gain based on sample distribution (to utilize full range of A/D converter). However I'm wondering why the sample values have a dependance on sample rate. Simon Den 2016-06-01 kl. 17:19, skrev Ben Hilburn: Hi Simon - Just

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

2016-06-02 Thread Martin Braun
Dave, what I did was 1. gr_modtool add -t noblock fo. Answer 'yes' when asked for a QA file. 2. Add a silly function to the new class 3. Populate the QA files 4. 'make test' That's it. Worked fine. M On 06/01/2016 02:58 PM, Dave NotTelling wrote: > Also, when I use

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

2016-06-02 Thread Piotr Krysik
W dniu 02.06.2016 o 12:12, Sylvain Munaut pisze: > Hi, > >> but I still don't know how to use inheritance to extend >> existing blocks (something that in a lot of cases would make perfect sense). > You can't. > > The whole _impl coding pattern is specifically designed to hide the > internals to

Re: [Discuss-gnuradio] Gnu Radio Profiling Questions

2016-06-02 Thread Ben Hilburn
Hi Yile - Please keep your responses on-list so that others can benefit. Did you try running other programs from your GNU Radio install, like GRC? Cheers, Ben On Wed, Jun 1, 2016 at 4:44 PM, Yile Ku wrote: > Notes on building performance profiling GNU radio > 1. install

Re: [Discuss-gnuradio] Make fails

2016-06-02 Thread Ben Hilburn
Hi Tom - Just to be sure, after pulling the latest from `master`, did you also update your Volk submodule pointer? $ git submodule update Cheers, Ben On Wed, Jun 1, 2016 at 10:44 PM, Ron Economos wrote: > Master builds okay here. > > The VOLK commit for this is: > > >

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

2016-06-02 Thread Sylvain Munaut
Hi, > but I still don't know how to use inheritance to extend > existing blocks (something that in a lot of cases would make perfect sense). You can't. The whole _impl coding pattern is specifically designed to hide the internals to outsiders and as such, you just can't extend it from an

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

2016-06-02 Thread Piotr Krysik
W dniu 02.06.2016 o 11:28, Andrej Rode pisze: > Hello Piotr, > >> If I can inherit from *_impl classes - are you able to present how to do >> it? *_impl.h headers are not installed together with GNU Radio so I'm >> not able include them. > If you want to modify basic blocks shipped with GNU Radio

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

2016-06-02 Thread Piotr Krysik
W dniu 02.06.2016 o 10:46, Andrej Rode pisze: > Hello Piotr, > > > > Is it possible to do what I want with use of inheritance? If yes - > > how to do it so I wouldn't have to copy the code? > > If your extension of the block is a general enhancement