[Discuss-gnuradio] Gnuradio presentation

2006-02-14 Thread Martin Dvh
Hi All, I am going to give a gnuradio talk for a local VERON/VRZA group (Dutch radio amateurs) As I don't like to reinvent the wheel I was wondering if anybody has any presentation material about Gnuradio and is willing to share it. (plain text,powerpoint,drawings,pictures/foto's,signals) I am

[Discuss-gnuradio] uint64

2006-02-14 Thread Martin Dvh
Hi All, I am creating a block which needs an unsigned 64 bit int (uint64) in a struct I want to do this in a cross-platform way but there is no gr_uint64 yet. I can just use unsigned long long int, but I am not sure this is save (allways 64 bit) I can include stdint.h and use uint64_t, but I don

Re: [Discuss-gnuradio] Dropped Packets

2006-02-14 Thread Eric Blossom
On Tue, Feb 14, 2006 at 02:12:38PM -0500, Tom Rondeau wrote: > I am currently developing a BPSK transceiver with a fully-functional PHY and > MAC layer defined in the GNU Radio/USRP. Everything almost works perfectly > (the code will be released on our website once this final problem is > solved),

[Discuss-gnuradio] Re: 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

[Discuss-gnuradio] Dropped Packets

2006-02-14 Thread Tom Rondeau
I am currently developing a BPSK transceiver with a fully-functional PHY and MAC layer defined in the GNU Radio/USRP. Everything almost works perfectly (the code will be released on our website once this final problem is solved), but I cannot get the final packet to receive correctly. Even

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

[Discuss-gnuradio] Ignore: This is a test message

2006-02-14 Thread Berndt Josef Wulf
Told you, this is just a test cheerio Berndt pgpMjE9Ivv6nn.pgp Description: PGP signature ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

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