discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] Increasing the noutput_items limit


From: Jason Hein
Subject: [Discuss-gnuradio] Increasing the noutput_items limit
Date: Tue, 27 Mar 2018 11:05:11 -0400

I'm having issues increasing the global noutput_items value on my
flowgraph.  I'm setting the value in the python flowgraph to be global
for all blocks.  The code is below.  However, when I print the value
of noutput_items in my general_work() function within one of my
blocks, it's still the default value of 16384.  Any suggestions?

tb = top_block_cls(fft_size=options.fft_size, freq=options.freq,
port=options.port, samp_rate=options.samp_rate,
update_rate=options.update_rate)
tb.set_max_noutput_items(72000)
tb.set_max_output_buffer(72000)
tb.start()
tb.show()

Jason



reply via email to

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