Re: [Discuss-gnuradio] On config.h (was Check for gr-ctrlport)

2013-03-31 Thread Sylvain Munaut
Hi, Does anyone else have strong opinions on this subject? Or will the path to using the gnuradio/header.h model be enough? Personally I think that gnuradio/header.h is the right way to go. Of course that also mean that the pkg-config .pc must have -I${PREFIX}/include rather than

[Discuss-gnuradio] macport switching between gnuradio and gnuradio-devel ports with installed gr-osmosdr?

2013-03-31 Thread Michael L Kornegay
Mike, I wanted to switch from gnuradio macport to gnu radio-devel port to hopefully avoid the following error: bash-3.2$ ./multimode.py Mac OS; GNU C++ version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00); Boost_105300; UHD_003.005.001-0-unknown Using Volk machine:

Re: [Discuss-gnuradio] Source block for the funcube pro plus

2013-03-31 Thread Alexandru Csete
On Thu, Mar 28, 2013 at 11:41 AM, Volker Schroer dl1...@gmx.de wrote: Just for your information: In imitation of the gr-fcd source I set up a gnuradio source for the funcube pro+ ( linux only) . To avoid the crashes depending on libusb I used the hidraw driver. The source and an example can

[Discuss-gnuradio] Radio frequency range description list?

2013-03-31 Thread Andre-John Mas
Hi, Has anyone created a machine parsable file that lists radio frequencies and what is covered by that range? At the simplest level I am thinking of something that would include country code, a frequency range and the identifier to what that range is, and possibly a string indicating typical

Re: [Discuss-gnuradio] pktno ??!!

2013-03-31 Thread Manu T S
I suppose you can do something similar to this n = 0 data = file.read(pkt_size) while data != : make payload send payload n += 1 print n On Fri, Mar 29, 2013 at 11:29 PM, manjusha yandamuri.ma...@gmail.comwrote: is there no way to do it??!!any other ideas on how can it be

Re: [Discuss-gnuradio] pktno ??!!

2013-03-31 Thread Manu T S
Sorry, I missed a line. you should have a data = file.read(pkt_size) inside the while loop as well. On Mon, Apr 1, 2013 at 7:53 AM, Manu T S manu.t.s...@gmail.com wrote: I suppose you can do something similar to this n = 0 data = file.read(pkt_size) while data != : make payload