Re: [Discuss-gnuradio] gnuradio flowgraph mechanism

2006-02-14 Thread Jonathan Jacky
On Mon, 13 Feb 2006, Ges wrote: I am trying to rewrite the flowgraph mechanism written in Python into C++ This has come up before, see http://lists.gnu.org/archive/html/discuss-gnuradio/2005-10/msg00027.html Perhaps you might contact the person who tried it then. (keep clicking Thread Pre

Re: [Discuss-gnuradio] gnuradio flowgraph mechanism

2006-02-14 Thread Eric Blossom
On Mon, Feb 13, 2006 at 09:27:42PM -0800, Ges wrote: > Hi Eric, > > I am trying to rewrite the flowgraph mechanism written in Python > into C++ so that I can run the GNU Radio modules written in C++ as > such in the Click software router. But, as I started to work on it, > i found that converting

Re: [Discuss-gnuradio] gnuradio flowgraph mechanism

2006-02-14 Thread John Gilmore
> Firstly, do you think this is the best way to do it? Implement the > flowgraph in C++ and use that to run the gnu radio > modules. As I understand it, the Python flowgraph code basically builds a data structure that describes the connections. At the end it gets turned into a real flowgraph. I

Re: [Discuss-gnuradio] gnuradio flowgraph mechanism

2006-02-14 Thread Martin Dvh
Ges wrote: > Hi Eric, > > I am trying to rewrite the flowgraph mechanism written in Python into > C++ so that I can run the GNU Radio modules written in C++ as such in > the Click software router. But, as I started to work on it, i found > that converting the code written in Python into C++ is no

[Discuss-gnuradio] gnuradio flowgraph mechanism

2006-02-13 Thread Ges
Hi Eric,I am trying to rewrite the flowgraph mechanism written in Python into C++ so that I can run the GNU Radio modules written in C++ as such in the Click software router. But, as I started to work on it,  i found that converting the code written in Python into C++ is not such a trivial exercise