Re: [Discuss-gnuradio] Added functionality for pre and post samples to burst tagger

2011-12-23 Thread Daniel Bartel
Hi, I have made some improvements to my code at GitHub: - Created GRC xml files for the modified burst tagger and the existing tagged file sink - Added a tagged message sink, which is based on the existing tagged file sink - Added Python QA code for the burst tagger and the tagged message sink

[Discuss-gnuradio] Question about grc parameter entry

2011-12-23 Thread John L DuBois
Just curious: what is the meaning of the different colors of the parameter entry blocks in the various grc modules ?? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] DC component

2011-12-23 Thread Evan Merewether
I have noticed that there are some fixed frequency spurious signals in my N210. These spurious signals are probably associated with the harmonics of the clock. If your DC component is at some nice even frequency like 2GHz, I would suspect a spurious signal to be the cause. Evan -Original

Re: [Discuss-gnuradio] DC component

2011-12-23 Thread Evan Merewether
Please do not get me wrong. I believe that the work from Ettus and the contributors to GNU-Radio are revolutionary! The equipment with the interface to GNU-Radio is not only priced at a level that is affordable to many amateurs and hobbyists, it opens up a brand new world for... (the list is too

Re: [Discuss-gnuradio] Added functionality for pre and post samples to burst tagger

2011-12-23 Thread Tom Rondeau
On Fri, Dec 23, 2011 at 4:35 AM, Daniel Bartel dan.bar.mailingl...@gmx.atwrote: Hi, I have made some improvements to my code at GitHub: - Created GRC xml files for the modified burst tagger and the existing tagged file sink - Added a tagged message sink, which is based on the existing

Re: [Discuss-gnuradio] DC component

2011-12-23 Thread Marcus D. Leech
Please do not get me wrong. I believe that the work from Ettus and the contributors to GNU-Radio are revolutionary! The equipment with the interface to GNU-Radio is not only priced at a level that is affordable to many amateurs and hobbyists, it opens up a brand new world for... (the list

[Discuss-gnuradio] GNURadio website

2011-12-23 Thread Philip Balister
http://www.downforeveryoneorjustme.com/gnuradio.org Philip ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Question about grc parameter entry

2011-12-23 Thread Josh Blum
On 12/23/2011 04:44 AM, John L DuBois wrote: Just curious: what is the meaning of the different colors of the parameter entry blocks in the various grc modules ?? Each color is a data type. You can mouse over a particular parameter box. A tool top window pops up to describe the parameter

[Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Andrew Davis
Hello all, Some programs don't let you specify a subdevice, they let UHD decide, in my case it picks wrong. Is there a uhd config file to chose the default subdevice if one is not specified ( I also wouldn't have to type --spec A:0 so much ). Thank you!

Re: [Discuss-gnuradio] GNURadio website

2011-12-23 Thread Tom Rondeau
Back up. Tom On Dec 23, 2011, at 1:23 PM, Philip Balister phi...@balister.org wrote: http://www.downforeveryoneorjustme.com/gnuradio.org Philip ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org

Re: [Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Andrew Davis
Could you give me a hint? How do you interface with UHD before a C++/python program requests the device? On Fri, Dec 23, 2011 at 3:21 PM, Marcus D. Leech mle...@ripnet.com wrote: Hello all, Some programs don't let you specify a subdevice, they let UHD decide, in my case it picks wrong.

[Discuss-gnuradio] Regarding internship and PhD opportunities

2011-12-23 Thread shashank gaur
Hello Everyone!! I am an International Student enrolled in Masters of Science in Embedded Systems at ECE Paris. I am pursuing a 2 years MS course in Paris with prestigious Ile de France Fellowship by French Government. Before that I have completed my Bachelor of Technology from BKBIET Pilani in

Re: [Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Marcus D. Leech
Could you give me a hint? How do you interface with UHD before a C++/python program requests the device? Well, you complained about having to type --spec A:0 a lot, which is a natural for a shell script that starts your program--whether that program is written in C++ or Python, and simply

Re: [Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Andrew Davis
I see what your saying but typing --address 'type=usrp1' --spec 'A:0' --antenna 'TX/RX' every time wasn't my problem. The problem is programs that let UHD pick the default device, I don't know how UHD chooses but it could check ~/.uhd/uhd.conf or something instead of guessing. As you said I could

Re: [Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Tom Rondeau
On Fri, Dec 23, 2011 at 8:23 PM, Andrew Davis glneolistm...@gmail.comwrote: I see what your saying but typing --address 'type=usrp1' --spec 'A:0' --antenna 'TX/RX' every time wasn't my problem. The problem is programs that let UHD pick the default device, I don't know how UHD chooses but it

Re: [Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Andrew Davis
That might work, but why worry about people who reconfigure just yet, us who use the device consistently still have to type several args every-time we run a program, the first step is a simple default device config file. On Fri, Dec 23, 2011 at 9:09 PM, Tom Rondeau trondeau1...@gmail.com wrote:

Re: [Discuss-gnuradio] UHD default subdevice.

2011-12-23 Thread Robert McGwier
Capture your complex command line in a shell script seems an easy way to do this yesterday, today, and tomorrow. Bob On Friday, December 23, 2011, Andrew Davis glneolistm...@gmail.com wrote: That might work, but why worry about people who reconfigure just yet, us who use the device