[Discuss-gnuradio] Downloading USRP

2006-03-17 Thread jjw
Does anybody have a copy of the source code for the newest version of USRP (not GR-USRP) or know of a place to get it besides Sourceforge CVS? The SF CVS repository has been down the entire week and I am not hopeful that it will be up anytime soon. Thanks for any help! -- View this message in

Re: [Discuss-gnuradio] pll_refout_cc - finding optimum alpha beta ??

2006-03-17 Thread Robert McGwier
Matt Ettus wrote: It just seeemd strange to me that a very large number, d_freq, which is bounds limited to between d_min_freq and d_max_freq, is inside a function trying to limit it's output to between +PI and -PI. if(100e3 M_PI) return(100e3-M_TWOPI) or 3.7168... error can get

Re: [Discuss-gnuradio] pll_refout_cc - finding optimum alpha beta ??

2006-03-17 Thread Charles Swiger
On Fri, 2006-03-17 at 10:16 -0800, Eric Blossom wrote: The function has the right name, mod_2pi, but the wrong implementation ;) These are commonly called bugs ;) Hence my comments above about doing the mod the right way. Roger that. Plowing right ahead with a hacked 1st order PLL filter,

Re: [Discuss-gnuradio] Modifying vectors

2006-03-17 Thread Eric Blossom
On Fri, Mar 17, 2006 at 10:27:45AM +0100, Patrick Strasser wrote: Hello! I've following working code: src = audio.source (sample_rate, options.audio_input) dst = audio.sink (sample_rate, options.audio_output) fft_size = 1024 s2p =

Re: [Discuss-gnuradio] pll_refout_cc - finding optimum alpha beta ??

2006-03-17 Thread Charles Swiger
On Fri, 2006-03-17 at 14:46 -0500, Charles Swiger wrote: There must be a trivial way to change +7.5kHz to -7.5kHz so we can use complex mixing... Ah ha - it's invert either I or Q. c2f = gr.complex_to_float() phase1 = gr.multiply_const_ff(-1) phase2 = gr.multiply_const_ff(1) f2c =

[Discuss-gnuradio] how can I receive signals from four antennas???

2006-03-17 Thread Rafael Schena
I have to make an antenna array to discover the direction of arrival of one signal. For this, I need to connect four antennas to the USRP board, and export the data to an algorithm that will detect the direction of arrival. Does anyone have an example that uses the four ADCs of USRP board?

Re: [Discuss-gnuradio] pll_refout_cc - finding optimum alpha beta ??

2006-03-17 Thread Charles Swiger
On Fri, 2006-03-17 at 15:02 -0800, [EMAIL PROTECTED] wrote: On Fri, Mar 17, 2006 at 05:32:20PM -0500, Charles Swiger wrote: On Fri, 2006-03-17 at 14:46 -0500, Charles Swiger wrote: There must be a trivial way to change +7.5kHz to -7.5kHz so we can use complex mixing... A

Re: [Discuss-gnuradio] how can I receive signals from four antennas???

2006-03-17 Thread Eric Blossom
On Fri, Mar 17, 2006 at 03:21:38PM -0800, Rafael Schena wrote: I have to make an antenna array to discover the direction of arrival of one signal. For this, I need to connect four antennas to the USRP board, and export the data to an algorithm that will detect the direction of arrival. Does

Re: [Discuss-gnuradio] gr-audio-portaudio module vs portaudio-0.19

2006-03-17 Thread Eric Blossom
On Sat, Mar 18, 2006 at 12:09:02PM +1030, Berndt Josef Wulf wrote: G'day, I'm trying to create a gr-audio-portaudio package for pkgsrc. Running gr-audio-portaudio's configure script will lead to the following error message: echo $ECHO_N checking for portaudio = 19... $ECHO_C 6 checking

[Discuss-gnuradio] portaudio sink, try round 2

2006-03-17 Thread Robert McGwier
Thanks to tons of grunt work by Eric, we have used the highly tuned ring buffers in the audio_portaudio_sink code and it functions nicely with a little bit of operator help.I can now get solid performance on all Linux hosts with the example code mono_tone_portaudio.py and