Re: [Discuss-gnuradio] saving a complex data into a file

2012-10-30 Thread Josh Blum
On 10/30/2012 03:24 AM, Jose Torres Diaz wrote: > Hi Community, > > I'm trying to save complex data from a block into a file, in order to > process the information later on. My code is very simple, as shown bellow: > > //Definition of values > std::vector complex_values(4); > > complex_values[

Re: [Discuss-gnuradio] Changing Bit Rate in GRC

2012-10-30 Thread Josh Blum
On 10/29/2012 09:47 PM, sibar002 wrote: > Hello, > > I was wondering if there is any way to control the rate at which the bits > are transmitted from my USRP in GRC? I tried using different blocks but the > rate seems to stay the same. Thank you for your time and help. > The USRP source and si

Re: [Discuss-gnuradio] Anybody having QAM mod/demod.

2012-10-30 Thread Ben Reynwar
The 'master' branch contains bug fixes to the most recent release. The 'next' branch also contains new features. If you used the build-gnuradio script to install you should just be able to go into the gnuradio directory and type 'git pull' to update it. If you installed it using a package manage

Re: [Discuss-gnuradio] Anybody having QAM mod/demod.

2012-10-30 Thread Ahmed Zaheer
Hi Ben. What is this current master or next branch? From: Ben Reynwar To: Ahmed Zaheer ; discuss-gnuradio Discussion Group Sent: Tuesday, October 30, 2012 9:08 AM Subject: Re: [Discuss-gnuradio] Anybody having QAM mod/demod. There was a bug in the QAM demo

Re: [Discuss-gnuradio] Anybody having QAM mod/demod.

2012-10-30 Thread mleech
On 30 Oct 2012 12:08, Ben Reynwar wrote: > There was a bug in the QAM demodulator that has been recently fixed > (merged in two weeks ago). Try checking out the current master or > next branch. > > Ben > > On Tue, Oct 30, 2012 at 8:47 AM, Ahmed Zaheer wrote: > >> Does anybody have QAM mod/

Re: [Discuss-gnuradio] Anybody having QAM mod/demod.

2012-10-30 Thread Ben Reynwar
There was a bug in the QAM demodulator that has been recently fixed (merged in two weeks ago). Try checking out the current master or next branch. Ben On Tue, Oct 30, 2012 at 8:47 AM, Ahmed Zaheer wrote: > Does anybody have QAM mod/demodulator working in loop back simulation. Mine > in attached

Re: [Discuss-gnuradio] gnuradio-companion & hamlib bodging

2012-10-30 Thread Tom Rondeau
On Sun, Oct 28, 2012 at 5:36 PM, Darren Long wrote: > Hi again, > > I've got my gnuradio 'pan-adapter' for my KX3 transceiver pretty much > working now: http://www.g0hww.net/2012/10/gnuradio-hamlib-and-kx3.html > > but there seems to be a memory leak occurring when I call > > self.wxgui_water

[Discuss-gnuradio] saving a complex data into a file

2012-10-30 Thread Jose Torres Diaz
Hi Community, I'm trying to save complex data from a block into a file, in order to process the information later on. My code is very simple, as shown bellow: //Definition of values std::vector complex_values(4); complex_values[0]=(-0.707,-0.707); complex_values[1]=(0.707,-0.707); complex_values