Thanks for your reply!
I now found the error in my code regarding using gr_interleave. I had to
pass two "sptr" types so that they can connect. So now I have another
problem.
Since my sources are all of "list" type that has been generated in Python
without using any GNU Radio blocks; is there som
On Tue, Jan 29, 2008 at 05:27:44PM +0800, Jonas wrote:
> Hi!
>
> Is it possible to interleave from three different sources by using
> gr_interleave? For example, will the following codes be possible using
> gr_interleave:
To find the answer to this question, you can either
see the section called
Hi!
Is it possible to interleave from three different sources by using
gr_interleave? For example, will the following codes be possible using
gr_interleave:
src0 =
src1 =
src2 =
interleave = gr.interleave(gr.sizeof_float)
downstream =
fg.connect(src0, (interleave, 0))
fg.connect(src1, (inte