Re: Is there a way to change the number of taps of the FIR filter in GNURadio while running?

2021-03-03 Thread Marcus D Leech
This type of problem showed up in 3.9 due to pybind11 issues for setter functions. But this seems like a separate issue. Sent from my iPhone > On Mar 3, 2021, at 11:44 PM, Nick Foster wrote: > >  > It looks like the GRC convenience blocks for the filter tap generation don't > have working

Re: Is there a way to change the number of taps of the FIR filter in GNURadio while running?

2021-03-03 Thread Nick Foster
It looks like the GRC convenience blocks for the filter tap generation don't have working callbacks -- although, from the YAML it looks like they should work. There might be a bug in there. The actual filter generation callbacks work -- if you replace "lp_taps" in the low-pass filter with "firdes.

Re: Is there a way to change the number of taps of the FIR filter in GNURadio while running?

2021-03-03 Thread Marcus D. Leech
On 03/03/2021 10:10 PM, Jay Patel wrote: Hi all, I am using |GNURadio| example |Filter Introduction| flow graph which shows basic introduction of |filtering|. I want to change the |no. of taps| while running the program. I tried to put the |qt gui range| but it looks like |GNURadio| creates/c

gnuradio-releases PPA installs files different from v3.9.0.0 tag

2021-03-03 Thread schneider
Hi, I've just installed GNURadio 3.9.0.0 from the `gnuradio-releases` PPA on a fresh Ubuntu 20.04. I'm now facing an issue with compiling an OOT module: The constructor of `gr::filter::kernel::fir_filter` is expecting a decimation argument. That argument is not present in v3.9.0.0 anymore though.

SDRA-2021

2021-03-03 Thread heller
** apologies for cross-posting ** Call for Papers: SDRA-2021 Online and Friedrichshafen HAMRADIO Friedrichshafen Software Defined Radio Academy 2021 (SDRA-2021) Date: Saturday 26.06.2021 and Sunday 27.06.2021 Conference Websites: * https://www.hamradio-friedrichshafen.de * https://2021.sdra.io

Re: usage of gr.decim_block with python

2021-03-03 Thread Harald Fritzsche
Hello, ok understood. Then i will make it static. Regards vy73 Harald DD0VS Am Wed, 3 Mar 2021 07:10:05 -0500 schrieb Jeff Long : > In 3.8, I don't think you can change the decimation factor after > instantiation. > > In 3.9+, more of the internal functions, e.g., set_decimation() are > exported

Re: usage of gr.decim_block with python

2021-03-03 Thread Jeff Long
In 3.8, I don't think you can change the decimation factor after instantiation. In 3.9+, more of the internal functions, e.g., set_decimation() are exported via PyBind11 BUT there might be some unknowns in how things work if you subclass from the Python blocks (as in 3.8) and then use pybind-expor

Re: usage of gr.decim_block with python

2021-03-03 Thread Harald Fritzsche
Hello Jeff, thanks for your reply. Yes, thats what i did. But for the work function i need to access the decimiation-value. I have no glue how :-( vy73 Harald DD0VS Am Wed, 3 Mar 2021 06:15:20 -0500 schrieb Jeff Long : > If your block inherits from decim_block, then you can set the > decimation s

Re: usage of gr.decim_block with python

2021-03-03 Thread Jeff Long
If your block inherits from decim_block, then you can set the decimation statically when you call the superclass initializer in your block's init. In Python3 it would be something like: class MyBlock(decim_block): def __init__(self, decim): super().__init__(name, in_sig, out_sig, decim