discuss-gnuradio
[Top][All Lists]
Advanced

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

[Discuss-gnuradio] grc connection issue??


From: gsmandvoip
Subject: [Discuss-gnuradio] grc connection issue??
Date: Thu, 16 Oct 2014 13:22:04 +0530

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

reply via email to

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