Re: [Discuss-gnuradio] change number of input bytes in block

2007-03-12 Thread Eric Blossom
On Fri, Mar 09, 2007 at 04:18:29PM +, steve wrote: > Hi, > > i've a _bb block that i wrote. On the first call to work() i > get 2047 bytes, 2nd call 127, then 7 and then 1 byte ..then the > whole thing starts again. > > I would like to get the same amount of data for each call to > work() (e.

Re: [Discuss-gnuradio] change number of input bytes in block

2007-03-09 Thread Matt Ettus
steve wrote: Hi, i've a _bb block that i wrote. On the first call to work() i get 2047 bytes, 2nd call 127, then 7 and then 1 byte ..then the whole thing starts again. The scheduler will basically give you every input sample it has available. I would like to get the same amount of data fo

[Discuss-gnuradio] change number of input bytes in block

2007-03-09 Thread steve
Hi, i've a _bb block that i wrote. On the first call to work() i get 2047 bytes, 2nd call 127, then 7 and then 1 byte ..then the whole thing starts again. I would like to get the same amount of data for each call to work() (e.g. always 512 bytes on input). Is that possible? Where does 2047, 127,