Tuesday, March 27, 2018

[Discuss-gnuradio] Increasing the noutput_items limit

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

_______________________________________________
Discuss-gnuradio mailing list
Discuss-gnuradio@gnu.org
https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

No comments:

Post a Comment