discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] help on gr_make_io_signature


From: ramanagouda odugoudar
Subject: [Discuss-gnuradio] help on gr_make_io_signature
Date: Wed, 23 Jun 2010 17:03:01 +0530 (IST)

Hi,
   I am writing a block to concatenated data from two input streams of different length and i am using following I/O signatures

ACS_combine_vff::ACS_combine_vff(int len)
  : gr_sync_block("ACS_combine_vff",
          gr_make_io_signature(1,2, sizeof(float)*len),
          gr_make_io_signature(1,1, sizeof(float)*2*len))
    
{
    d_len=len;

}

suppose if i have first input stream of length 10 and second input stream of length 5 , how should i modify the above I/O signature to make sure output stream has length 15 .

thanks in advance
Raman


reply via email to

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