discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] Two outputs (sinks) from a single radio...Possibl


From: Eric Blossom
Subject: Re: [Discuss-gnuradio] Two outputs (sinks) from a single radio...Possible?
Date: Fri, 5 Jan 2007 12:21:04 -0800
User-agent: Mutt/1.5.9i

On Sat, Jan 06, 2007 at 03:00:48AM +0900, Mamoru Yamamoto wrote:
> I have one very simple question.
> 
> I want to know how I can "tee" the GNUradio 
> flow graph.  I mean, for example, I want to hear 
> radio sound while recording the same data into a file.  
> I want to know where I can find such example.
> Or, can I just switch them from time to time?
> 
> Thank you for your help in advance.
>
> Regards,
> 
> ----
> Mamoru Yamamoto  address@hidden

 src1 = gr.foo(...)
 dst1 = gr.bar(...)
 dst2 = gr.baz(...)

 fg.connect(src1, dst1)
 fg.connect(src1, dst2)


The output of any block can be connected to any number of inputs of
other blocks as long as the data type is correct.

Eric




reply via email to

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