Re: [Discuss-gnuradio] gr_firdes.cc/firdes.cc - window functions - flawe

2013-10-06 Thread bob wole
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

[Discuss-gnuradio] conversion from long integer to byte/char

2013-10-06 Thread Arturo Rinaldi
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

Re: [Discuss-gnuradio] using osmo-sdr with usrp

2013-10-06 Thread Alexandru Csete
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

[Discuss-gnuradio] using osmo-sdr with usrp

2013-10-06 Thread Dincer Beken
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, _

Re: [Discuss-gnuradio] OOT module error linking to gr::filter::mmse_fir_interpolator_cc in 3.7

2013-10-06 Thread Tom Rondeau
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()

Re: [Discuss-gnuradio] gr_firdes.cc/firdes.cc - window functions - flawed code found and fixed

2013-10-06 Thread Tom Rondeau
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

[Discuss-gnuradio] gr_firdes.cc/firdes.cc - window functions - flawed code found and fixed

2013-10-06 Thread KB3CS - Chris
(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

Re: [Discuss-gnuradio] [Openlte-discuss] Segmentation fault in when using gnuradioresampler block in c++ flowgraph [SOLVED]

2013-10-06 Thread Dincer Beken
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

[Discuss-gnuradio] Segmentation fault in when using gnuradio resampler block in c++ flowgraph

2013-10-06 Thread Dincer Beken
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