I guess that there's something I don't get about how gr.feval_XX is supposed to work.

I do the following

class my_thing_dd(gr.feval_dd):
   def eval(self,x):
       x = x
       return(x)

...
...
...

      my_handle = my_thing_dd()
      ....
      self.connect(some_block, my_handle, some_other_block)


In the hopes that I could "hook in" my_thing_dd into the flow graph. No such luck.

It provokes an error from within basic_block.py/coerce_endpoint:

         raise ValueError, "Not coercible to endpoint: %s" % (x,)


_______________________________________________
Discuss-gnuradio mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Reply via email to