The function is there. Perhaps you're not calling it correctly, but I can't tell.
On Wed, Mar 15, 2023 at 11:11 AM George Edwards <[email protected]> wrote: > Hi Jeff, > Thanks for the suggestion. > > I tried set_min_noutput_items(16) first in the __init__() method, then the > work() of Python file and each time I get the response Name Error: name > 'set_min_noutput_items' is not defined. > > Any more suggestions! 🤔 > > George > > On Tue, Mar 14, 2023, 7:03 PM Jeff Long <[email protected]> wrote: > >> Try: set_min_noutput_items(16) >> >> On Tue, Mar 14, 2023 at 5:39 PM George Edwards <[email protected]> >> wrote: >> >>> Dear GNURadio Community, >>> I have a decimator OOT block doing my signal processing. It works well, >>> but after 30 or epochs, it schedule an output of one sample which breaks my >>> signal processing algorithm. Then the output gets scheduled to a good >>> number and the algorithm starts working good again before going off script >>> to scheduling an output of 1 sample again. Every time it does this, it >>> breaks my signal processing algorithm. Is there a way to force the >>> decimator to schedule a minimum number outputs, like say 16 samples (which >>> would work for my algorithm because the correspondingnumber of input >>> samples would be just fine)? >>> >>> Will appreciate any suggestion towards a solution. >>> >>> Thank you! >>> >>> George >>> >>
