Re: [Discuss-gnuradio] How to control latency

2015-05-13 Thread Daniele Nicolodi
Hello Marcus, I went looking at the code and I found this: d_fftsize = (int) (2 * pow(2.0, ceil(log(double(ntaps)) / log(2.0; d_nsamples = d_fftsize - d_ntaps + 1; set_output_multiple(d_nsamples); which I'm not sure I understand, but is in agreement with what I observe. Can someone explain t

Re: [Discuss-gnuradio] How to control latency

2015-05-13 Thread Marcus Müller
Hi Daniele, alignment requirements for the FFTw aren't that strict, but you'll have to wait for a decimation*ntaps of samples to accumulate before you can do the FFT. Greetings, Marcus On 05/13/2015 05:47 PM, Daniele Nicolodi wrote: > On 01/04/15 00:30, Matt Ettus wrote: >> Daniele, >> >> GNU Ra

Re: [Discuss-gnuradio] How to control latency

2015-05-13 Thread Daniele Nicolodi
On 01/04/15 00:30, Matt Ettus wrote: > > Daniele, > > GNU Radio tries to maximize the size of the chunks of data it deals > with. Clearly that works well for high rate data, but not low rate > data. There are some handles to control buffer sizes and things within > GNU Radio, but you may have b

Re: [Discuss-gnuradio] How to control latency

2015-03-31 Thread Matt Ettus
Daniele, GNU Radio tries to maximize the size of the chunks of data it deals with. Clearly that works well for high rate data, but not low rate data. There are some handles to control buffer sizes and things within GNU Radio, but you may have better luck just using a much higher sample rate. If