discuss-gnuradio
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Discuss-gnuradio] RX and TX with single USRP


From: wolfgang buesser
Subject: Re: [Discuss-gnuradio] RX and TX with single USRP
Date: Thu, 27 Dec 2007 13:43:27 -0800 (PST)



Johnathan Corgan-2 wrote:
> 
> Wolfgang Buesser wrote:
> 
>> Any suggestions for a straightforward approach would be more than
>> welcome.
> 
> The pattern to use (in pseudo code) is:
> 
> class receive_path(gr.hier_block2), with no inputs or outputs
> (instantiate and self.connect your receive chain here)
> 
> class transmit_path(gr.hier_block2), with no inputs or outputs
> (instantiate and self.connect your transmit chain here)
> 
> class my_top_block(gr.top_block)
> 
> In my_top_block's __init__ function:
> 
> rx = receive_path(...)
> tx = transmit_path(...)
> self.connect(rx)
> self.connect(tx)
> 
> 

Thank's!
Meanwhile I found a different solution:
http://www.nabble.com/file/p14519016/my_both.py my_both.py 

It works fine - I just can't get it to quit after nsamples have been read
Any idea how that could be achieved?

Wolfgang
-- 
View this message in context: 
http://www.nabble.com/RX-and-TX-with-single-USRP-tp14513947p14519016.html
Sent from the GnuRadio mailing list archive at Nabble.com.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]