[Discuss-gnuradio] Unsubscribe request

2008-06-15 Thread Sarang Mandke
On Sun, Jun 15, 2008 at 5:17 PM, Richard Clarke <[EMAIL PROTECTED]> wrote: > Hi Chiara, > > well done! Just wanted to say I'd definitely be interested in obtaining the > VmWare image you've created. As you say though, 2GB is pretty big. If you > don't find a host for the image within the next few

Re: [Discuss-gnuradio] GNURadio on VmWare: success!

2008-06-15 Thread Richard Clarke
Hi Chiara, well done! Just wanted to say I'd definitely be interested in obtaining the VmWare image you've created. As you say though, 2GB is pretty big. If you don't find a host for the image within the next few days I may be able to arrange a temporary FTP location where you can upload to.

[Discuss-gnuradio] Re: Re: problem in using: dqpsk_mod() with gr.top_block

2008-06-15 Thread Van Tran
Josh Blum wrote: > You are using the new top_block with the old blks dqpsk modulator. > > Replace blks with blks2, also change "blks.dqpsk_mod(self,2,.35,True, > False, False)" to "blks2.dqpsk_mod(2,.35,True, False, False)" and see > what happens. > > -Josh I have done like this and have no more

Re: [Discuss-gnuradio] Re: problem in using: dqpsk_mod() with gr.top_block

2008-06-15 Thread Josh Blum
You are using the new top_block with the old blks dqpsk modulator. Replace blks with blks2, also change "blks.dqpsk_mod(self,2,.35,True, False, False)" to "blks2.dqpsk_mod(2,.35,True, False, False)" and see what happens. -Josh Van Tran wrote: It lacks the beginning part, so I paste again m

Re: [Discuss-gnuradio] Re: problem in using: dqpsk_mod() with gr.top_block

2008-06-15 Thread Eric Blossom
On Sun, Jun 15, 2008 at 06:19:06PM +0200, Van Tran wrote: > > > ValueError: unable to coerce endpoint > Seeing the full trace back would be useful. It usually provides a clue as to where the problem is. Eric ___ Discuss-gnuradio mailing list Discu

[Discuss-gnuradio] Re: problem in using: dqpsk_mod() with gr.top_block

2008-06-15 Thread Van Tran
It lacks the beginning part, so I paste again my program: #!/usr/bin/env python from gnuradio import gr from gnuradio import blks #no GUI #source: stream from file_source #connect with DQPSK: input: byte stream, output:complex #change it to 2 parts:imagine and Real #connect with gr.comple

[Discuss-gnuradio] problem in using: dqpsk_mod() with gr.top_block

2008-06-15 Thread Van Tran
Hi, I am new in using GNURadio. I try to test the dqpsk_mod() function and have always this error: ValueError: unable to coerce endpoint Could anyone tell me what wrong I have made? Thanks so much. Program: #no GUI #source: stream from file_source #connect with DQPSK: input: byte stream, o