qt waterfall sink time axis

2021-07-02 Thread John Murphy
Hey all, I have been flailing away, and failing, at getting the qt waterfall sink time axis to be scaled properly. Using gnuradio 3.8.2.0-3 on Manjaro One thing I found looking at the source code for the waterfall sink is that despite the option to set an update period the block always uses 10 se

flowgraph ret -11 when oot block calls gr::filter::firdes::low_pass_2

2021-06-26 Thread John Murphy
I am having difficulty using gr::filter::firdes in my OOT cpp block. (Trying to use code block in notorious webmail editor for gmail, sorry if this gets a little garbled) I am calling my setter function as follows... ```cpp set_filter( 31.25f, 50.0f, 96.0f ); ``` And this is the setter func

Re: Getting OOT's to run in GRC

2021-06-14 Thread John Murphy
wrote: > Hi John, > > On 13/06/2021 14.34, John Murphy wrote: > > The blocks pull in > > gr-fft and (for the lfsr stuff) gr-digital. There is a source block, a > > general block, and a couple noblock utility classes in the custom OOT > > module. > > But when I

Getting OOT's to run in GRC

2021-06-13 Thread John Murphy
Hello list, I have been unable to get any OOT module blocks to run in GRC. I initially was using a VirtualBox Manjaro (via Architect) with GNURadio 3.9 and with some finding missing packages (cmake, swig, boost, boost-libs maybe some others Ive forgotten) was able to get gr_modtool created blocks

[Discuss-gnuradio] undefined symbol: _ZNK7QwtPlot5printEP8QPainterRK5QRectRK18QwtPlotPrintFilter

2015-06-12 Thread John Murphy
Hello, New machine with new Kubuntu 15 install, new build-gnuradio install on that system. Had some install issues with a prereq lib that required a force-overwrite to a deb archive. But seemed to progress normally after that was fixed. Also had a warning regarding a missing libzmqt(?) dev packag

[Discuss-gnuradio] Using theme with QTGUI qss files makes transition lines between points on QT GUI Constellation Sink

2015-05-31 Thread John Murphy
The new GRC theme system using qss files looks pretty neat and seems very user configurable. Thanks. To use this, with my build-gnuradio installed setup, I had to create a new file under my home user folder at /home/me/.gnuradio/config.conf and I had to add the following to that file. [QTGUI] qss

Re: [Discuss-gnuradio] modtool noblock and xml files and grc

2015-05-28 Thread John Murphy
DESTINATION share/gnuradio/grc/blocks Thanks, all that worked great now. On Thu, May 28, 2015 at 12:17 PM, John Murphy < mr.john.joseph.mur...@gmail.com> wrote: > > Okay. > Tried this, then deleted the xml file before attempting to make again without it. > Got the following er

Re: [Discuss-gnuradio] Discuss-gnuradio Digest, Vol 150, Issue 31

2015-05-28 Thread John Murphy
/CMakeError.log". make: *** [cmake_check_build_system] Error 1 From: Johnathan Corgan > > > On Thu, May 28, 2015 at 8:26 AM, John Murphy < > mr.john.joseph.mur...@gmail.com> wrote: > > > > Anyhow, it unexpectedly generated an xml file to import the non-block into &g

[Discuss-gnuradio] modtool noblock and xml files and grc

2015-05-28 Thread John Murphy
Hello again, I tried to add a C++ noblock to my OOT module. In this particular case I wanted to provide a reusable "n of m" counter class (for non-signal stuff to count) in C++ code that I could use within various C++ blocks in the module. And I did not know of a better way to manage that with the

[Discuss-gnuradio] Set QT GUI 'extras' from GRC?

2014-08-14 Thread John Murphy
Is there a way from GRC to set some of the 'extra' parameters in the QT GUI's? For example, say I want to enable auto-scaling, or set the FFT averaging, or set signal colors or names for the legend. I understand how to do all that after starting the flowgraph, but it takes some time and it only p

Re: [Discuss-gnuradio] TypeError for gr_vector_float arg

2014-08-06 Thread John Murphy
On Tue, 5 Aug 2014 17:08:31 -0400 John Murphy wrote: > Trying to get my OOT block to accept a vector of floats for filter taps. > Traceback (most recent call last): > File "/usr/local/share/gnuradio-InTree-modules/ofdm_tx_rx.py", line 518, in > > tb = ofdm_tx_

[Discuss-gnuradio] TypeError for gr_vector_float arg

2014-08-05 Thread John Murphy
Trying to get my OOT block to accept a vector of floats for filter taps. I used a couple in-tree blocks (mostly ofdm_carier_allocator and fir_interpolator) for a quick reference. And I have fir interp/decim in my flowgraph and they have no issues at runtime. The flowgraph ran fine with my OOT bl

Re: [Discuss-gnuradio] Out of Tree linker error... libgnuradio-MYMOD.so: undefined reference to `gr::fft::fft_complex::execute()'

2014-07-24 Thread John Murphy
> From: Marcus M?ller > you use gr-fft in your code, but then don't tell your linker to link > against that, which leaves your libgnuradio-comso missing the symbols > from gr::fft, which breaks linking test-comso. > So what you need to do is edit your CMakeLists.txt in your module's root > dir and

Re: [Discuss-gnuradio] Out of Tree linker error... libgnuradio-MYMOD.so: undefined reference to `gr::fft::fft_complex::execute()'

2014-07-24 Thread John Murphy
> On Wed, Jul 23, 2014 at 4:24 PM, John Murphy wrote: > > I am getting a link error when making my Out-of-Tree module. > > This Out of Tree module was done with gr_modtool and cmake following > > http://gnuradio.org/redmine/projects/gnuradio/wiki/OutOfTreeModules > &g

Re: [Discuss-gnuradio] Out of Tree linker error... libgnuradio-MYMOD.so: undefined reference to `gr::fft::fft_complex::execute()'

2014-07-23 Thread John Murphy
On Wed, 23 Jul 2014 16:33:50 -0400 Tom Rondeau wrote: > On Wed, Jul 23, 2014 at 4:24 PM, John Murphy wrote: > > I am getting a link error when making my Out-of-Tree module. > > This Out of Tree module was done with gr_modtool and cmake following the > > outline given in &g

[Discuss-gnuradio] Out of Tree linker error... libgnuradio-MYMOD.so: undefined reference to `gr::fft::fft_complex::execute()'

2014-07-23 Thread John Murphy
I am getting a link error when making my Out-of-Tree module. I apologize in advance for the length of this, my first post to this list. I get the daily 'digest' version. This Out of Tree module was done with gr_modtool and cmake following the outline given in http://gnuradio.org/redmine/projec