[Discuss-gnuradio] how to send patches? how to become bug reporter on redmine?

2013-07-09 Thread Timo Juhani Lindfors
Hi, can somebody set the appropriate redmine flag to allow me to send patches? I'd like to send a patch. http://gnuradio.org/redmine/projects/gnuradio/issues says "logged in as lindi" but I don't see any option of adding new issues http://gnuradio.org/redmine/projects/gnuradio/issues/new says

[Discuss-gnuradio] GRC problems, saving data to files

2013-07-09 Thread Baier
Dear all, I generated random data with random source block and saved it to rhe file data_1k(File sink). After that I modulated the random data (ofdmmod block, fft size 256, occupied tones 100, cyclic prefix 128) and then demodulated them (ofdmdem block). Then I saved data to the file data_dem

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Peter
Thanks for maintaining this for the mac. I am just getting my feet wet in SDR. I have a working dongle that I can use with the gqrx.app program-- I can tune radio stations and hear them. I would like to start using gnuradio for its added flexibility and power. I tried installing gnuradio (3.7) and

Re: [Discuss-gnuradio] GRC problems, saving data to files

2013-07-09 Thread Adeel Anwar
Baier, For ur file-sink, what was the setting of "unbuffered" flag? If unbuffered=off, file-sink will first buffer specified no. of items before writing them to file, so there is a chance that when FG is stopped some items at the end gets lost. if unbuffered=on, file-sink will write items in file

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Michael Dickens
Hi Peter - When I hear of the error "No module named gnuradio", I immediately wonder if the GNU Radio related ports were installed using the +swig variant. I prefer to use +full myself, to get everything that GNU Radio can do. If you want just Python and GRC, there are variants for those. If

Re: [Discuss-gnuradio] how to send patches? how to become bug reporter on redmine?

2013-07-09 Thread Johnathan Corgan
On 07/09/2013 12:20 AM, Timo Juhani Lindfors wrote: > can somebody set the appropriate redmine flag to allow me to send patches? This is done. -- Johnathan Corgan Corgan Labs - SDR Training and Development Services http://corganlabs.com signature.asc Description: OpenPGP digital signature __

Re: [Discuss-gnuradio] how to send patches? how to become bug reporter on redmine?

2013-07-09 Thread Timo Juhani Lindfors
Johnathan Corgan writes: > This is done. Thanks! How about also updating http://gnuradio.org/redmine/projects/gnuradio/wiki/Development#How-do-I-submit-patches to state that you should write to the discuss list to ask for reporter permissions? ___ Di

Re: [Discuss-gnuradio] how to send patches? how to become bug reporter on redmine?

2013-07-09 Thread Johnathan Corgan
On 07/09/2013 05:28 AM, Timo Juhani Lindfors wrote: > Johnathan Corgan writes: >> This is done. > > Thanks! > > How about also updating > http://gnuradio.org/redmine/projects/gnuradio/wiki/Development#How-do-I-submit-patches > to state that you should write to the discuss list to ask for reporte

[Discuss-gnuradio] Measuring RSS during packet reception

2013-07-09 Thread Nemanja Savic
Hi again gnuradioers, as always, I would like to ask for your opinion before starting to write my own block. Basically, I would like to add a feature to my receiver to be able to calculate average signal strength during signal reception. When I receive a valid packet I would like to have a RSS val

[Discuss-gnuradio] London Meetup tonight!

2013-07-09 Thread Tom Rondeau
I have a table reserved under Rondeau at the Mayflower in London (see http://www.trondeau.com/blog/2013/7/2/london-meetup.html). I haven't gotten a huge response, so I reserved a table accordingly. But don't let that stop you from joining us tonight if you're around! Tom _

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Peter
I tried to reply once before but I don't see it anywhere. First of all, thank you Michael (and others) for all your work on gnuradio. I am trying to get my feet wet in SDR. I have a dongle that works with gqrx (I can hear radio stations). I am trying to get gnuradio working to expand my options

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Michael Dickens
Hi Peter - I sent the attached email to the GR discussion list this morning (not to you, assuming you were on the GR list since you posted to it); according to the list archives, it did go out < http://lists.gnu.org/archive/html/discuss-gnuradio/2013-07/msg00110.html >. Maybe you did not recei

[Discuss-gnuradio] Channel Model omits first 3 samples

2013-07-09 Thread Gregory Warnes
Hi All, I've been working on calculating BER for simulated transmitter/recieved pair and have noticed that the channel_model eats the first 3 samples. Thus to correctly align the data input and output from channel_model (e.g. for calculating BER), it is necessary to account for the 3-sample offse

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Peter
Thanks. I see your response now. I am trying to understand the gmane modes-- I think I was seeing the permalink which showed only your original post. I tried "sudo port install gnuradio +full" which failed. Looking at the log file, I think the relevant lines are: :info:configure CMake Error: The

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Michael Dickens
I fixed this issue last night. You'll need to do: {{{ sudo port selfupdate sudo port clean gnuradio sudo port install gnuradio +full }}} and this time it should work. - MLD On Jul 9, 2013, at 4:19 PM, Peter wrote: > Thanks. I see your response now. I am trying to understand the gmane modes-- >

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Peter
Tried but still no go. More variables were not found: :info:configure CMake Error: The following variables are used in this project, but they are set to NOTFOUND. :info:configure Please set them or make sure they are set and tested correctly in the CMake files: :info:configure ICE_GLACIER2

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Peter
After a bit of digging around and trying different things, I think I have a grasp of what is going on. For whatever reason, I had qwt @5.1.2_2+qt4 (active) and py27-pyqwt @5.2.0_4 (active) installed. It seems that the current version of gnuradio (3.7) uses qwt52. I uninstalled all qwt related p

Re: [Discuss-gnuradio] GNU Radio (etc) via MacPorts Update

2013-07-09 Thread Michael Dickens
Hi Peter - Thanks for doing the hard work, and you're welcome! I'm glad it's working for you now. I didn't think the change from qwt (5.1) to qwt52 would make any difference, but apparently it does. Good to know! - MLD On Jul 9, 2013, at 6:39 PM, Peter wrote: > After a bit of digging around

[Discuss-gnuradio] Question about Cycle Detection in GNU Radio

2013-07-09 Thread Tommy Tracy II
Dear GNU Radio I am working on a GNU Radio Router block that will serve as a communication block between multiple flow graphs. My router will receive information via TCP, and then send it to several other blocks to be processed. After those blocks have completed their processing, my original id

Re: [Discuss-gnuradio] Question about Cycle Detection in GNU Radio

2013-07-09 Thread Johnathan Corgan
On 07/09/2013 05:06 PM, Tommy Tracy II wrote: > I am working on a GNU Radio Router block that will serve as a > communication block between multiple flow graphs. My router will receive > information via TCP, and then send it to several other blocks to be > processed. After those blocks have comple

Re: [Discuss-gnuradio] Question about Cycle Detection in GNU Radio

2013-07-09 Thread Josh Blum
On 07/09/2013 08:25 PM, Johnathan Corgan wrote: > On 07/09/2013 05:06 PM, Tommy Tracy II wrote: > >> I am working on a GNU Radio Router block that will serve as a >> communication block between multiple flow graphs. My router will >> receive information via TCP, and then send it to several othe

Re: [Discuss-gnuradio] Question about Cycle Detection in GNU Radio

2013-07-09 Thread Tommy Tracy II
Perfect; thank you! Tommy James Tracy II Ph.D Student High Performance Low Power Lab University of Virginia Phone: 913-775-2241 On Jul 9, 2013, at 5:46 PM, Josh Blum wrote: > > > On 07/09/2013 08:25 PM, Johnathan Corgan wrote: >> On 07/09/2013 05:06 PM, Tommy Tracy II wrote: >> >>> I am work

Re: [Discuss-gnuradio] Question about Cycle Detection in GNU Radio

2013-07-09 Thread Tommy Tracy II
Another alternative would be to pass around shared pointers to a queue. Does that seem like a reasonable, albeit hack-ee, approach? Sincerely, Tommy James Tracy II Ph.D Student High Performance Low Power Lab University of Virginia Phone: 913-775-2241 On Jul 9, 2013, at 5:46 PM, Josh Blum wrote:

[Discuss-gnuradio] GPS PPS signal to synchronize two usrp N210

2013-07-09 Thread llc1989522
Dear all I am trying to use two GPS PPS signals to synchronize two USRP N210 (Tx and Rx). First I connected the PPS signal to the front SMA port of USRP. Then I just used command set_time_unknown_pps(uhd.time_spec()). However, I found they seems not synchronized. The transmitter is not transmitt

[Discuss-gnuradio] Broken links(404s) in documentation

2013-07-09 Thread Manoj Gudi
A newbie like me would be glad if someone fixes these broken links http://gnuradio.org/redmine/projects/gnuradio/wiki/GNURadioCompanion#Some-Example-Definitions Thanks, Manojg ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.