[Discuss-gnuradio] garbage signal when TX is enabled

2010-02-26 Thread Jung Il Choi
Hi all, I am using two RFX2400 daughterboards on USRP1 to implement TX/RX on each daughterboard. When I do ZigBee packet transmission, I found that there are always some trailing garbage signals after each packet. The trailing garbage has strong fixed I and Q values (slightly changing) which la

Re: [Discuss-gnuradio] block that does simple tone detection

2010-02-26 Thread Johnathan Corgan
On Fri, Feb 26, 2010 at 14:49, Eric Blossom wrote: > FWIW, you may want to look at the Goertzel algorithm for computing > power at a single frequency. ...which is conveniently implemented in gr.goertzel_fc() :-) Johnathan ___ Discuss-gnuradio mailin

Re: [Discuss-gnuradio] block that does simple tone detection

2010-02-26 Thread Eric Blossom
On Fri, Feb 26, 2010 at 02:26:53PM -0800, Affan Syed wrote: > Hi all, > I have been building a simple block that can detect energy at a > particular frequency, i.e. a tone detection block. The signal > processing seemed simple enough for me, so I directly coded it. > Essentially my tone_sink takes

Re: [Discuss-gnuradio] about the work function and memory

2010-02-26 Thread Johnathan Corgan
On Fri, Feb 26, 2010 at 14:05, Josh Blum wrote: > Here is a typical work function: > int work(int noutput_items, >                       gr_vector_const_void_star &input_items, >                       gr_vector_void_star &output_items) > > output_items seems to be a pointer to a pointer into some

[Discuss-gnuradio] block that does simple tone detection

2010-02-26 Thread Affan Syed
Hi all, I have been building a simple block that can detect energy at a particular frequency, i.e. a tone detection block. The signal processing seemed simple enough for me, so I directly coded it. Essentially my tone_sink takes in float point samples of the input signal (passed through a

[Discuss-gnuradio] about the work function and memory

2010-02-26 Thread Josh Blum
Here is a typical work function: int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items) output_items seems to be a pointer to a pointer into some pre-allocated memory. What is stopping me from managing

Re: [Discuss-gnuradio] Installing GNU Radio on cygwin

2010-02-26 Thread Ms reena vade
My boost version is 1.42,still it gives the same error. I am still at the ./configure stage.I think I should use sudo command after ./configure is successful,am I right?Thank you for all your help.Regards,Reena --- On Sat, 2/27/10, Ms reena vade wrote: From: Ms reena vade Subject: Re: [Discus

[Discuss-gnuradio] Installing GNU Radio on cygwin

2010-02-26 Thread Ms reena vade
Thank you everyone for your help to my previous query regarding the installation of GNU Radio on Cygwin. I have checked my fortran 77 compiler and it works fine now( thank you zerocool :)),but now I get some : "conftest.err : Permission denied "  and another error which says " your boost librari

Re: [Discuss-gnuradio] RFX900 Failure

2010-02-26 Thread Matt Ettus
On 02/26/2010 10:05 AM, David Evans wrote: Hi, Thanks for the fast response. Yes the SAW filter is broken and putting a capacitor in as you suggested has brought the output power back up to normal. :-) Great! If you can survive without the filtering, you're actually better off now because yo

Re: [Discuss-gnuradio] RFX900 Failure

2010-02-26 Thread David Evans
Hi, Thanks for the fast response. Yes the SAW filter is broken and putting a capacitor in as you suggested has brought the output power back up to normal. :-) So, a couple of questions please, * Can the SAW be damaged by too much power from the PA? (I could find no info on the maximu

[Discuss-gnuradio] trellis.viterbi function_2part

2010-02-26 Thread Simone80
Thanks Achilleas. I read all the documentation concerning the trellis, and the final idea that comes to me is to write a code like the following (to implement the convolutional decoding 1/2, poly 91,121, constraint len 7): input_length = 48 output_length = 24 src_data = [1.0 for index in range (i

Re: [Discuss-gnuradio] Installing GNURadio on Cygwin, Windows XP: URGENT!!!!!!!!!!!!!

2010-02-26 Thread Don Ward
Ms reena vade wrote: Hello everyone! I am new to GNURadio. I tried installing cygwin with all the utilities > and libraries as given on gnuradio.org. And then I unzipped gnuradio as well. I have the following doubts: ( 1 ) Shall I unzip GNURadio in the same drive where I have installed cygwin?

AW: [Discuss-gnuradio] Memory leak when creating several USRP 2objects in C

2010-02-26 Thread Christian Kisters
Hi Eric Here some information for you: C++ Code: #include int main () { usrp2::usrp2::sptr u2; int count = 0; while (count++< 3) { sleep(3); u2.reset(); u2 = usrp2::usrp2::make("eth0",""); } return 0;

RE: [Discuss-gnuradio] M-block integration status

2010-02-26 Thread Patrik Eliardsson
Dear List, We are heading to the end of February, what is the status of the message passing functionality between blocks? I've been looking around in the developers branches but haven't found anything yet... Can someone update me, please? Best regards, Patrik Eliardsson > -Original Mes