Re: [Discuss-gnuradio] RuntimeError: audio_alsa_source

2007-12-12 Thread Firas A.
What is your OS, gnuradio version ? Firas, Brook Lin wrote: > > Hi All, > > I just ran tx_voice and rx_voice.And I wanted to transmit a music and > receive it using Basic RX/TX. However, I got the error: > $ sudo ./tx_voice.py -f 30M -I music.pcm -T A -v gr_fir_fff: using SSE > bits per

Re: [Discuss-gnuradio] Controlling USRP From Inside General Gnuradio Block

2007-12-12 Thread Firas Abbas
Hi, Yes I'm sure, when I remove (or mark //) [d_center_freq = d_tune->calleval(0);] in enter_tune_delay () of bin_statistics.cc, the scanning speed increases rapidly. Is there away to solve this problem and control the USRP directly from the bin_statistics block? Regards, Firas Eric Blosso

[Discuss-gnuradio] Help: make problem with 3.1.1 on 64 bit FC6

2007-12-12 Thread W. David Li
Hello, I have a 64 bit machine with FC6. Downloaded the 3.1.1 release tar ball and unpacked it. Did ./configure and everything was fine. Under regular user name I did 'make' and kept getting errors shown below. Never had this problem with previous releases. Anyone has any idea what's wrong? -

[Discuss-gnuradio] RuntimeError: audio_alsa_source

2007-12-12 Thread Brook Lin
Hi All, I just ran tx_voice and rx_voice.And I wanted to transmit a music and receive it using Basic RX/TX. However, I got the error: $ sudo ./tx_voice.py -f 30M -I music.pcm -T A -v >>> gr_fir_fff: using SSE bits per symbol = 1 Gaussian filter bt = 0.35 Using TX d'board A: Basic Tx Tx amplitude

Re: [Discuss-gnuradio] This python version requires swig to be run....

2007-12-12 Thread Matt Ettus
Vincenzo Pellegrini wrote: Hi, I've just tried to compile my DVB-T application on a Fedora 7 system which has Python 2.5 instead of 2.4 installed. I get this: dvb.cc:139:20: error: Python.h: No such file or directory A missing python.h file usually means you don't have python-devel installed

Re: [Discuss-gnuradio] Controlling USRP From Inside General Gnuradio Block

2007-12-12 Thread Eric Blossom
On Wed, Dec 12, 2007 at 12:08:24PM -0800, Firas A. wrote: > > What I'm trying to do, is to control the usrp directly from inside a general > gnuradio block. The reason for this is that in usrp_spectrum_sense.py, the > call from inside bin_statistics block (C++) to the tune function (python) > tak

[Discuss-gnuradio] Unable to find USRP #0 in kernel 2.6.24-rc4-gd7f0b481 on Fedora 7

2007-12-12 Thread gef
I installed kernel of 2.6.24-rc4-gd7f0b481 for Fedora 7 in PS3 following http://www.gnuradio.org/trac/wiki/PS3FC7Install. The linux system runs well. Then I installed GNU radio as told in above URL. Everything went well too. However, I could not get USRP work. I am not sure whether it is because

[Discuss-gnuradio] Controlling USRP From Inside General Gnuradio Block

2007-12-12 Thread Firas A.
Hi, If : u = usrp.source_c(0) then if I passed the usrp source instance (u) to a gnuradio block, what is the class (type) that should be used in the c++ code to receive (define) this instance ? I thought at first we can define it as a class of usrp_standard_rx, but I was totally wrong. What

Re: [Discuss-gnuradio] Writing SIMD code with sse

2007-12-12 Thread Dominik Auras
Hi, Just found a small error. You should exchange __builtin_ia32_punpcklwd128(x,x)),16)); __builtin_ia32_punpckhwd128(x,x)),16)); (note the h/l). First ..hwd, then ..lwd. Dominik ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lis

Re: [Discuss-gnuradio] Writing SIMD code with sse

2007-12-12 Thread Pascal Charest
Hi, You can find some doc on intrinc functions on MSDN. Information is also valid for gnu gcc: For library using SIMD, you can start looking BLAS on wikipedia. There is some links on the page about libraries doing optimized linea

Re: [Discuss-gnuradio] Writing SIMD code with sse

2007-12-12 Thread Eric Blossom
On Wed, Dec 12, 2007 at 11:51:20PM +0530, Rohit Garg wrote: > Hi all, > > I was following the separate discussion on this list about writing > various trig functions using vector intrinsics. I googled for it. The > top few results I got were for "old" processors when SIMD intrinsics > were new. Th

Re: [Discuss-gnuradio] Writing SIMD code with sse

2007-12-12 Thread Dominik Auras
Hi! The intrinsics are more or less C wrapper functions for assembler commands. You can find a detailed description here: http://www.intel.com/products/processor/manuals/index.htm SSE1-3 is supported by modern AMD and Intel processors. There are many possible improvements, but you need to ha

Re: [Discuss-gnuradio] This python version requires swig to be run....

2007-12-12 Thread Eric Blossom
On Wed, Dec 12, 2007 at 04:14:25PM +0100, Vincenzo Pellegrini wrote: > Hi, > > I've just tried to compile my DVB-T application on a Fedora 7 system > which has Python 2.5 instead of 2.4 installed. > > I get this: > > dvb.cc:139:20: error: Python.h: No such file or directory > dvb.cc:2539:4: erro

[Discuss-gnuradio] Writing SIMD code with sse

2007-12-12 Thread Rohit Garg
Hi all, I was following the separate discussion on this list about writing various trig functions using vector intrinsics. I googled for it. The top few results I got were for "old" processors when SIMD intrinsics were new. The gcc documentation (my version is 4.1.2) has a list of intrinsics but n

[Discuss-gnuradio] This python version requires swig to be run....

2007-12-12 Thread Vincenzo Pellegrini
Hi, I've just tried to compile my DVB-T application on a Fedora 7 system which has Python 2.5 instead of 2.4 installed. I get this: dvb.cc:139:20: error: Python.h: No such file or directory dvb.cc:2539:4: error: #error "This python version requires swig to be run with the '-classic' option" dvb.

Re: [Discuss-gnuradio] Re-writing blocks using intel libraries

2007-12-12 Thread Martin Dvh
Tom Rondeau wrote: > Martin Dvh wrote: >> Eric Blossom wrote: >> >>> On Tue, Dec 11, 2007 at 03:41:46PM -0800, Eugene Grayver wrote: >>> Please see answers in-line. Thanks! General curiosity questions: Are you using oprofile to measure performance? >

Re: [Discuss-gnuradio] can BasicRx daughterboard receive FM and AM broadcast?

2007-12-12 Thread Martin Braun
On Wednesday, 12. December 2007 14:58, yandy wrote: > Dear all, > > I want to know the BasicRx daughterboard can receive FM and AM > broadcast? I look the BasicRx daughterboard circuit diagram,but can't > find any tune and filter on it. I know the USRP's ADC sample rate is > only 64M,

[Discuss-gnuradio] can BasicRx daughterboard receive FM and AM broadcast?

2007-12-12 Thread yandy
Dear all, I want to know the BasicRx daughterboard can receive FM and AM broadcast? I look the BasicRx daughterboard circuit diagram,but can't find any tune and filter on it. I know the USRP's ADC sample rate is only 64M, it can't sample more than 32M base on Nyquist baseband sa

Re: [Discuss-gnuradio] Re-writing blocks using intel libraries

2007-12-12 Thread Tom Rondeau
Martin Dvh wrote: Eric Blossom wrote: On Tue, Dec 11, 2007 at 03:41:46PM -0800, Eugene Grayver wrote: Please see answers in-line. Thanks! General curiosity questions: Are you using oprofile to measure performance? I am a bit of a maverick, and for various reasons am using a

[Discuss-gnuradio] scope with cygwin

2007-12-12 Thread JALLON Pierre 201932
Dear all, I have not been able to have the scope work with my USRP and my TV front end. When I launch the script, the program seems to be freeze, but I can stop it with Ctrl+C. And the FFT works fine. I have a USRP board Rev4.5 and the TV Rx v3 front end. I used a decim rate of 8, a central