[Discuss-gnuradio] RF no tune preamplifier

2006-03-13 Thread Matteo Campanella
I've just finished a low noise preamplifier prototype based on Avago MGA62563, and I would like to use it in conjunction with the tvrx - the device needs 3V @ 60mA, or 5V - is there any place on the board where I can get such a supply safely? ciao Matteo iz2eeq _

[Discuss-gnuradio] multi_tone.py

2006-03-13 Thread Robert McGwier
multi_tone.py has been committed that supports jack with -O jack portaudio with -O pa oss with -O /dev/dsp alsa otherwise The portaudio sink segment faulted. jack support was partial and produces good sound on one channel if connected and rough sound if connected to the other channel. Thi

[Discuss-gnuradio] mono_tone.py

2006-03-13 Thread Robert McGwier
mono_tone similarly modified. Bob -- AMSAT VP Engineering. Member: ARRL, AMSAT-DL, TAPR, Packrats, NJQRP/AMQRP, QRP ARCI, QCWA, FRC. ARRL SDR Wrk Grp Chairman Laziness is the number one inspiration for ingenuity. Guilty as charged! ___ Discuss-gnur

Re: [Discuss-gnuradio] multi_tone.py

2006-03-13 Thread Berndt Josef Wulf
On Monday 13 March 2006 20:49, Robert McGwier wrote: > multi_tone.py has been committed that supports > > jack with -O jack > portaudio with -O pa > oss with -O /dev/dsp > alsa otherwise > > The portaudio sink segment faulted. jack support was partial and > produces good sound on one channel if c

Re: [Discuss-gnuradio] multi_tone.py

2006-03-13 Thread Ramakrishnan Muthukrishnan
On 3/13/06, Berndt Josef Wulf <[EMAIL PROTECTED]> wrote: > multi_tone.py is now broken as it requires audio_portaudio and audio_jack > modules. > > barossa: {11} ./multi_tone.py -O /dev/audio > Traceback (most recent call last): > File "./multi_tone.py", line 25, in ? > from gnuradio import a

Re: [Discuss-gnuradio] multi_tone.py

2006-03-13 Thread Robert McGwier
Good point. I commented out the offending lines. If you have portaudio and/or jack, they are easily replaced. #from gnuradio import audio_portaudio #from gnuradio import audio_jack and then remove the comment in front of the dst = audio_jack.sink and/or dst = audio_portaudio.sink if you

Re: [Discuss-gnuradio] initial gr-audio-portaudio

2006-03-13 Thread Martin Dvh
Stephane Fillod wrote: > On Sun, Mar 12, 2006 at 02:36:21PM -0500, Robert McGwier wrote: > >>That is why I put the message out. It will be good to have a working >>starting point. > > > Okay, there it is. Just checked in to gr-audio-portaudio repository. > It's somewhat working, but there's st

[Discuss-gnuradio] gr-usrp from cvs, please help

2006-03-13 Thread Vincenzo Pellegrini
after installing all the requested gnu-radio packages which compiled with no errors I launched usrp_oscope.py to test the whole thing but I got the "unknown usrp rev" runtime error. so I downloaded latest updates from cvs. everything makes succesfully but gr-usrp does not. I think it is the respon

Re: [Discuss-gnuradio] gr-usrp from cvs, please help

2006-03-13 Thread jjw
I am experiencing the same error when making gr-usrp. Hopefully someone can shed light. Someone offered up the suggestion that my usrp package was out of date, but I have been unable to log into CVS to download the latest version, it asks for a password even for anonymous log in and then times o

Re: [Discuss-gnuradio] DC on antenna

2006-03-13 Thread Clark Pope
Thanks, I see it on the board. But you mean short pins on J100, right? From: Matt Ettus <[EMAIL PROTECTED]> To: Clark Pope <[EMAIL PROTECTED]> CC: discuss-gnuradio@gnu.org Subject: Re: [Discuss-gnuradio] DC on antenna Date: Sun, 12 Mar 2006 20:37:20 -0800 Clark Pope wrote: > > Has anyone tried

Re: [Discuss-gnuradio] initial gr-audio-portaudio

2006-03-13 Thread Thomas Schmid
With help of the examples, I was able to get a little bit further. The portaudio_sink now gets initialized, but it shortly after fails with an abort trap. The cause is line 167 in audio_portaudio_sink.cc where d_portaudio_buffer_size is 0. It looks like if Pa_GetStreamInfo(d_stream)->outputLatency

Re: [Discuss-gnuradio] gr-usrp from cvs, please help

2006-03-13 Thread Eric Blossom
On Mon, Mar 13, 2006 at 04:37:59PM +0100, Vincenzo Pellegrini wrote: > after installing all the requested gnu-radio packages which compiled > with no errors I launched usrp_oscope.py to test the whole thing but I > got the "unknown usrp rev" runtime error. > > so I downloaded latest updates from c

[Discuss-gnuradio] Plotting doubt

2006-03-13 Thread Ramakrishnan Muthukrishnan
I was looking at the fftsink.py and the plot.py that it uses. Is there a simple way to plot a graph with everything down under the points also filled with a colour ? I am trying to see if plot.py has a way to do that. -- Ramakrishnan ___ Discu

Re: [Discuss-gnuradio] mono_tone.py

2006-03-13 Thread Eric Blossom
On Mon, Mar 13, 2006 at 05:24:43AM -0500, Robert McGwier wrote: > mono_tone similarly modified. > > Bob Thanks. In general, I think we ought to push the selection of audio "subsystem" into a preference somewhere. Yes, I know we're missing that feature right now. I'm fine that you've modified t

Re: [Discuss-gnuradio] multi_tone.py

2006-03-13 Thread Eric Blossom
On Mon, Mar 13, 2006 at 05:25:58PM +0530, Ramakrishnan Muthukrishnan wrote: > > > > Why force users to install all modules in order to run a otherwise very > > simple > > test application? We shouldn't > > Jack and portaudio may not even be available for some platforms. Agreed. > We can provid

Re: [Discuss-gnuradio] RF no tune preamplifier

2006-03-13 Thread Matt Ettus
Matteo Campanella wrote: > I've just finished a low noise preamplifier prototype based on Avago > MGA62563, and I would like to use it in conjunction with the tvrx - the > device needs 3V @ 60mA, or 5V - is there any place on the board where I > can get such a supply safely? > > If you have unuse

Re: [Discuss-gnuradio] RF no tune preamplifier

2006-03-13 Thread Eric Blossom
On Mon, Mar 13, 2006 at 10:09:57AM -0800, Matt Ettus wrote: > Matteo Campanella wrote: > > I've just finished a low noise preamplifier prototype based on Avago > > MGA62563, and I would like to use it in conjunction with the tvrx - the > > device needs 3V @ 60mA, or 5V - is there any place on the b

Re: [Discuss-gnuradio] Plotting doubt

2006-03-13 Thread Eric Blossom
On Mon, Mar 13, 2006 at 11:08:52PM +0530, Ramakrishnan Muthukrishnan wrote: > > I was looking at the fftsink.py and the plot.py that it uses. Is there a > simple way to plot a graph with everything down under the points also filled > with a colour ? I am trying to see if plot.py has a way to do

Re: [Discuss-gnuradio] Plotting doubt

2006-03-13 Thread Ramakrishnan Muthukrishnan
|| On Mon, 13 Mar 2006 10:10:31 -0800 || Eric Blossom <[EMAIL PROTECTED]> wrote: eb> It currently plots by drawing lines between data points. eb> You'd need to change it one of a couple of ways: eb> * draw vertical lines from the bottom horizontal axis to the right Y value. eb> * cha

Re: [Discuss-gnuradio] Simulateous transmission from two daughterboards - I've got it !

2006-03-13 Thread Angilberto Muniz Sb
Ok, Eric -- I really understand it now. Im able to start "dual_tx.py" and "dual_fft.py" and I can see the two signals ! (I have Tx_A -> Rx_A and Tx_B -> Rx_B) I can switch the signals by just swapping mux values -- nice... Now it seems trivial, but I can upload the "dual_fft.py" if is there anyo

Re: [Discuss-gnuradio] DC on antenna

2006-03-13 Thread Matt Ettus
No. Let me be clearer... If you have a DBSRX Rev 2.0 board (what most people have): Apply your bias voltage to the pin labeled "+" on J100 (the one closer to the SMA). The other pin on J100 is ground. Your bias voltage can be up to 30 V, and you

Re: [Discuss-gnuradio] DC on antenna

2006-03-13 Thread Matt Ettus
Clark Pope wrote: > > Has anyone tried using the GPS antennas where you have to provide DC > power over the antenna line with a USRP? Especially for the DBS board? > Seems like there ought to be a way to get one of the DAC outputs coupled > into the RF to power a gps lna or switch elements, etc.

Re: [Discuss-gnuradio] initial gr-audio-portaudio

2006-03-13 Thread Eric Blossom
On Sun, Mar 12, 2006 at 10:20:16PM +0100, Stephane Fillod wrote: > On Sun, Mar 12, 2006 at 02:36:21PM -0500, Robert McGwier wrote: > > That is why I put the message out. It will be good to have a working > > starting point. > > Okay, there it is. Just checked in to gr-audio-portaudio repository.

Re: [Discuss-gnuradio] gri_ringbuffer.{h,cc}

2006-03-13 Thread Eric Blossom
On Sun, Mar 12, 2006 at 10:20:16PM +0100, Stephane Fillod wrote: > > - against gnuradio-core: ot_gri_ringbuffer.patch > * src/lib/general/gri_ringbuffer.{cc,h}, > src/lib/general/Makefile.am: new lockless ringbuffer (single > reader/single writer) taken from JACK software (

Re: [Discuss-gnuradio] Simulateous transmission from two daughterboards - I've got it !

2006-03-13 Thread Eric Blossom
On Sun, Mar 12, 2006 at 02:30:41PM -0800, Angilberto Muniz Sb wrote: > Ok, Eric -- I really understand it now. > > Im able to start "dual_tx.py" and "dual_fft.py" and I > can see the two signals ! (I have Tx_A -> Rx_A and > Tx_B -> Rx_B) > > I can switch the signals by just swapping mux values G

[Discuss-gnuradio] gr_pll_carriertracking.h fixed

2006-03-13 Thread Martin Dvh
Hi, I fixed gr_pll_carriertracking.h in gnuradio-core It had one comma too many on line 41 which broke the build. Greetings, Martin ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] initial gr-audio-portaudio

2006-03-13 Thread Stephane Fillod
On Mon, Mar 13, 2006 at 03:52:25PM +0100, Martin Dvh wrote: [..] > > The code should be portable. I was missing the native Win32 call for > > mutex_trylock, so someone will have to find it, and define > > OMNI_MUTEX_TRYLOCK_IMPLEMENTATION in src/lib/omnithread/ot_nt.h, > > with appropriate semantic

Re: [Discuss-gnuradio] initial gr-audio-portaudio

2006-03-13 Thread Robert McGwier
Ok. This is closer. I get a few buffers, almost 1 second and then it goes off the deep end but that is better than before when all I could get was segmentation fault! I will look at the callback interface, etc. to see if I see anything. I already know this pa works because I am using it