Il giorno gio, 30/11/2006 alle 11.23 -0800, Eric Blossom ha scritto:
> > > > 3. make a 1-to-N connection?
> > > 
> > > If you mean may one output connect to multiple inputs, yes.
> > > This is frequently done in the examples. 
> > 
> > Which examples? The only one I know is:
> > http://www.gnu.org/software/gnuradio/doc/exploring-gnuradio.html
> 
> That file should be updated.  We haven't written them that way in a
> couple of years ;)
> 
> See gnuradio-examples/python/*/*.py in the tarball of svn tree. 

Is it possible to change run time the structure of the graph? Is it
possible something like this?

src = src_module()
dst1 = dst_module_1()
dst2 = dst_module_2()

while <true>
        if <condition>
                graph.connect(src,dst1)
        else
                graph.connect(src,dst2)


I need to pass the stream from an acquiring stage to a tracking one. Is
it possible another approach?
-- 
Davide Anastasia

web: http://www.davideanastasia.com/
email: [EMAIL PROTECTED]



_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to