We installed gnuradio 3.6.3 using gnruadio build script. We can't
change the gnuradio version currently. How can we apply this patch to
our installation. What commands should we run? We don't use git.
--
Bob
On Sun, Oct 6, 2013 at 12:39 PM, KB3CS - Chris wrote:
>* (If you just want to cut to th
Hi folks,
i was wondering if it's possible to operate a type conversion from *long
integer* *(green color in GRC)* to *byte/char* *(purple color in GRC)*
with the existing gnuradio blocks.
I'm running the 3.6.5.1 tarball, any suggestions ? Thanks in advance.
Kind Regards,
Ar
On Sun, Oct 6, 2013 at 7:06 PM, Dincer Beken wrote:
> Hi all,
>
> to use the OSMO-SDR blocks with the USRP, I want to use the uhd_source_c.h
> and uhd_source_c.
>
> Without doing anything I cannot use thefunctions like get_sample_rate.
>
> What do I need to include from OSMO-SDR?
The uhd_source_c
Hi all,
to use the OSMO-SDR blocks with the USRP, I want to use the uhd_source_c.h and
uhd_source_c.
Without doing anything I cannot use thefunctions like get_sample_rate.
What do I need to include from OSMO-SDR?
Can I get some help, please..
Thanks,
_
On Sat, Oct 5, 2013 at 3:03 PM, ikjtel wrote:
> This is a case of "everything used to just work" in 3.6 and below, our
> Gardner/Costas block relies on this functionality; i.e., it did a #include
> of gri_mmse_fir_interpolator_cc.h and contructed a new one via "new
> gri_mmse_fir_interpolator_cc()
This is a useful patch for anyone using the 3.6 code. Since we have
basically stopped updating 3.6, this may or may not ever make it back
in there to be fixed up from our side. There's a chance we'll need to
release 3.6.5.2 at some point, but we'd prefer not to unless it's
something critical that c
(If you just want to cut to the chase, the diff against 3.6.5.1 is attached)
How i got here: Contemplating some filters using gnuradio-companion with a
simple flowgraph (simple enough to describe in words alone). Noticed the
frequency response with a Rectangular filter was exactly the same as wi
Hi all,
after experimenting and searching a little bit I found the solution:
gr::filter::rational_resampler_base_ccf sptr resampler_filter;
resampler_filter = gr::filter::rational_resampler_base_ccf::make(...);
top_block-> connect(samp_src,resampler_filter,0)
And so on,
The resampler filte
Hi all,
I want to connect the rational resampler to the block called "state machine".
Whenever I invoke the rational resampler I get an "SEGMENTATION FAUL" error. I
use an C++ flowgraph.
Header file:
gr::top_block_sptr top_block; // Included hier_block2.h
gr::filter::rational_resampler_base_ccf