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

2013-11-10 Thread Martin Braun (CEL)
On Wed, Nov 06, 2013 at 11:55:00AM +, y...@solid.co.kr wrote: > Thank you for your concern. > > I will tell you more detail about my problem. > > > I'm trying to make frequency hopping system. > > [...] You don't need to call other blocks from your blocks to do this. Perhaps this can help

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

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

2013-11-05 Thread Martin Braun (CEL)
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) How to connect local array to another block’s output In GNU Radi

[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