[Discuss-gnuradio] How to set up MP-Benchmark Test PowerPC Processors (using Altivec)

2010-04-30 Thread matty
I want to set up several Benchmark Tests for PowerPC Processors using Altivec. The MP-Scheduler Benchmark works for Core2 Duo and on PS3 (without Altivec) fine. But how can i set up the Benchmark for PowerPC Processors (e.g. Cell BE) using the Altivec Extensions? There are no options given to use

Re: [Discuss-gnuradio] How to synchronize feedback between blocks?

2010-04-30 Thread Martin Braun
Thanks Matt, and Michael, for your input. To clarify: I was thinking about a frequency offset detection at a later stage in the demodulation process, which feeds back the frequency offset to an initial xlating FIR filter (I do realise feeding back individual samples is kind of ridiculous from a

Re: [Discuss-gnuradio] How to synchronize feedback between blocks?

2010-04-30 Thread Dave
i remember the gr-fsk4 demodulator uses the message queue to send frequency correction info to a pre-demod freq-xlating filter. Check out the code here maybe it will help http://7120804464424340617-a-1802744773732722657-s-sites.googlegroups.com/site/radiorausch/GnuradioFourLevelFSK.html Sent

[Discuss-gnuradio] How to compute square root?

2010-04-30 Thread JAS DEO
Hi, I am doing linc transmitter by using gnu radio.In which i want to separate OFDM signal in two constant envelope(software part) and then power amplify it seprately, finally combine two signal(hardware part).I have done the software part in Matlab and here is the code for that.

[Discuss-gnuradio] UHD: uhd_find_devices

2010-04-30 Thread Per Zetterberg
Hi, I have finally compiled the uhd library. When I do sudo ./uhd_find_devices I get No UHD Devices Found. I have turned off the firewall. I have loaded the firmware unto the SD card. When I turn on the power of the USRP2 first all leds on the front are lit and then only D is on. I have no

[Discuss-gnuradio] Re: UHD: uhd_find_devices

2010-04-30 Thread Josh Blum
On 04/30/2010 06:53 AM, Per Zetterberg wrote: Hi, I have finally compiled the uhd library. When I do sudo ./uhd_find_devices I get No UHD Devices Found. I have turned off the firewall. I have loaded the firmware unto the SD card. When I turn on the power of the USRP2 first all leds on the

Re: [Discuss-gnuradio] Re: UHD: uhd_find_devices

2010-04-30 Thread Marcus D. Leech
On 04/30/2010 11:07 AM, Josh Blum wrote: I know you got me off-list, but I would like to share the answer because people tend to google these things and get list postings: The solution was to set a static IP address on the network interface. Its not like the raw ethernet communication where

Re: [Discuss-gnuradio] Re: UHD: uhd_find_devices

2010-04-30 Thread Josh Blum
Thanks for bringing that up, i should have sent the link as well: http://www.ettus.com/uhd_docs/manual/html/usrp2.html#setup-networking -Josh How does the USRP2 get its IP address, how do you deal with multiple USRP2 on the same host? With IP routing, you'll generally need to have each

Re: [Discuss-gnuradio] How to set up MP-Benchmark Test PowerPC Processors (using Altivec)

2010-04-30 Thread Eric Blossom
On Fri, Apr 30, 2010 at 09:08:59AM +0200, matty wrote: I want to set up several Benchmark Tests for PowerPC Processors using Altivec. The MP-Scheduler Benchmark works for Core2 Duo and on PS3 (without Altivec) fine. But how can i set up the Benchmark for PowerPC Processors (e.g. Cell BE)

[Discuss-gnuradio] [ANN] Bitshark USRP RX daughterboards now available

2010-04-30 Thread John Orlando
Epiq Solutions is pleased to announce that the first production of the Bitshark USRP RX (BURX) daughterboard has been completed. The BURX daughterboard is a broadband RF receiver that is capable of tuning from 300 MHz to 4 GHz, providing up to 50 MHz of RF bandwidth. It plugs into either the

[Discuss-gnuradio] Resource busy Error

2010-04-30 Thread William Pretty Security Inc
My program: usrp_wbfm_receive.grc was working fine. Now there seems to be a problem with Ubuntu L When I now run usrp_wbfm_receive.grc, I get the following error: Audio_alsa_sink[hw0:0]: Device or resource busy How do I find out what software is using the resource ?? Bill

Re: [Discuss-gnuradio] Resource busy Error

2010-04-30 Thread Alexandru Csete
On 30 April 2010 23:28, William Pretty Security Inc bill.pre...@xplornet.com wrote: My program: usrp_wbfm_receive.grc was working fine. Now there seems to be a problem with Ubuntu L When I now run usrp_wbfm_receive.grc, I get the following error: Audio_alsa_sink[hw0:0]: Device or resource

[Discuss-gnuradio] thread safety of gr_wavfile_sink::close()

2010-04-30 Thread Don Ward
I have a question about the thread safety of gr_wavfile_sink::close(). The description says it is thread safe and it uses d_mutex, but what is to stop the work() function from writing the file at the same time that close() (via close_wav()) is writing and closing the file?

[Discuss-gnuradio] Failed to set frequency to ... message in Spectrum scan

2010-04-30 Thread Rahman Doost
hello everyone, I 'm trying to collect some samples from my spectrum sensing code running on USRP2, which is a slightly revised version of 'usrp_spectrum_sense.py'. My problem is that after some time during the scan of some band, this message appears: Failed to set frequency to For instance

Re: [Discuss-gnuradio] Failed to set frequency to ... message in Spectrum scan

2010-04-30 Thread Marcus D. Leech
On 04/30/2010 08:02 PM, Rahman Doost wrote: hello everyone, I 'm trying to collect some samples from my spectrum sensing code running on USRP2, which is a slightly revised version of 'usrp_spectrum_sense.py'. My problem is that after some time during the scan of some band, this message

Re: [Discuss-gnuradio] Failed to set frequency to ... message in Spectrum scan

2010-04-30 Thread Rahman Doost
Well, the modification is for changing the code in such a way that it works on USRP2 since the original version is written for USRP. The rest is the same. Also it does't seem this is a programming bug since, it works for some time and then it crashes. Rahman On Fri, Apr 30, 2010 at 8:06 PM,

Re: [Discuss-gnuradio] thread safety of gr_wavfile_sink::close()

2010-04-30 Thread Eric Blossom
On Fri, Apr 30, 2010 at 07:42:32PM -0400, Don Ward wrote: I have a question about the thread safety of gr_wavfile_sink::close(). The description says it is thread safe and it uses d_mutex, but what is to stop the work() function from writing the file at the same time that close() (via

Re: [Discuss-gnuradio] Failed to set frequency to ... message in Spectrum scan

2010-04-30 Thread Marcus D. Leech
On 04/30/2010 08:17 PM, Rahman Doost wrote: Well, the modification is for changing the code in such a way that it works on USRP2 since the original version is written for USRP. The rest is the same. Also it does't seem this is a programming bug since, it works for some time and then it

Re: [Discuss-gnuradio] thread safety of gr_wavfile_sink::close()

2010-04-30 Thread Don Ward
- Original Message - From: Eric Blossom e...@comsec.com To: Don Ward don2387w...@sprynet.com Cc: gnuradio mailing list discuss-gnuradio@gnu.org Sent: Friday, April 30, 2010 8:25 PM Subject: Re: [Discuss-gnuradio] thread safety of gr_wavfile_sink::close() On Fri, Apr 30, 2010 at

Re: [Discuss-gnuradio] thread safety of gr_wavfile_sink::close()

2010-04-30 Thread Eric Blossom
On Fri, Apr 30, 2010 at 08:48:48PM -0400, Don Ward wrote: - Original Message - From: Eric Blossom e...@comsec.com To: Don Ward don2387w...@sprynet.com Cc: gnuradio mailing list discuss-gnuradio@gnu.org Sent: Friday, April 30, 2010 8:25 PM Subject: Re: [Discuss-gnuradio] thread

Re: [Discuss-gnuradio] How to compute square root?

2010-04-30 Thread Eric Blossom
On Fri, Apr 30, 2010 at 04:07:00AM -0700, JAS DEO wrote: Hi, I am doing linc transmitter by using gnu radio.In which i want to separate OFDM signal in two constant envelope(software part) and then power amplify it seprately, finally combine two signal(hardware part).I have done the software

Re: [Discuss-gnuradio] Failed to set frequency to ... message in Spectrum scan

2010-04-30 Thread Rahman Doost
Again the same, works for some time, then crashes! On Fri, Apr 30, 2010 at 8:34 PM, Marcus D. Leech mle...@ripnet.com wrote: On 04/30/2010 08:17 PM, Rahman Doost wrote: Well, the modification is for changing the code in such a way that it works on USRP2 since the original version is written

Re: [Discuss-gnuradio] Failed to set frequency to ... message in Spectrum scan

2010-04-30 Thread Marcus D. Leech
On 04/30/2010 09:59 PM, Rahman Doost wrote: Again the same, works for some time, then crashes! On Fri, Apr 30, 2010 at 8:34 PM, Marcus D. Leech mle...@ripnet.com mailto:mle...@ripnet.com wrote: On 04/30/2010 08:17 PM, Rahman Doost wrote: Well, the modification is for changing the