[Discuss-gnuradio] How to call another blocks in custom out-of-tree module

2013-11-05 Thread y...@solid.co.kr
Hi, Can you help me to call gnu-blocks from my own out-of-tree code written in python? For example, from this code (http://gnuradio.org/redmine/projects/gnuradio/wiki/OutOfTreeModules) 1 import numpy 2 from gnuradio import gr 3 4 class square3_ff(gr.sync_block): 5 " Squaring block " 6

Re: [Discuss-gnuradio] How to call another blocks in custom out-of-tree module

2013-11-06 Thread y...@solid.co.kr
another blocks in custom out-of-tree module On Tue, Nov 05, 2013 at 12:56:24PM +, y...@solid.co.kr wrote: > I want to call another gnu-blocks (or another hier-block) in work function. > (Line 14~16) > > 1) How to connect input item to another block’s input > > 2) Ho