discuss-gnuradio
[Top][All Lists]
Advanced

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

Re: [Discuss-gnuradio] gr_add_cc use


From: Matt Ettus
Subject: Re: [Discuss-gnuradio] gr_add_cc use
Date: Sat, 06 Jan 2007 13:54:17 -0800
User-agent: Thunderbird 1.5.0.9 (X11/20070104)

>
> fg.connect(self.packet_transmitter1, self.chan_filt1, self.adder)
> fg.connect(self.packet_transmitter2, self.chan_filt2, self.adder) (*)
> fg.connect(self.adder, self.amp, self.u)

What is happening here is that you are trying to hook both filt1 and
filt2 to the FIRST input of self.adder.  To hook to the second input,
use "(self.adder, 1)" instead of self.adder.

Matt




reply via email to

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