Hi list, I have a custom block trying to connect with other blocks in gnuradio like: for i in xrange(len(self.sources)): self.connect(self.src[i], self.filt[i], self.resampler[i], (self.finder, i)) number of connections should be equal to number of sources. All goes well, but it is executing only once, i.e. first block with : self.connect(self.src[0], self.filt[0], self.resampler[0], (self.finder, 0)) other one getting terminated once above connection terminates.
Possible bug: my finder block looks for FCCH in input stream and if it does not find, will terminate, I suspect if it impacts on going connection of GRC. Presume: It should not be matter if first connection terminates, it should keep executing till last one GRC connections executes sequentially??? if yes, how can I achieve to execute all connections simultaneously please give me your thoughts Thank you in advance
_______________________________________________ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio