[Discuss-gnuradio] GPS 20 ms accumulations

2008-04-17 Thread Gregory W Heckler
For all the GPS users out there, has anyone been able to extend correlations to 20 ms? I have had a heck of a time extending the correlation interval without hosing my 3rd order PLL. -- [EMAIL PROTECTED] NASA Goddard Space Flight Center AETD - Mission Engineering and Systems Analysis Component

Re: [Discuss-gnuradio] USRP Tx Rate Conversion

2008-04-17 Thread Eric Blossom
On Thu, Apr 17, 2008 at 11:26:06AM -0400, Brian Padalino wrote: > On Thu, Apr 17, 2008 at 11:11 AM, Wireless Monster > <[EMAIL PROTECTED]> wrote: > > Brian, Dan, > > > > It is working now. Thanks again for your help. > > > > One more basic "signal processing question" ... knowing that the input and

Re: [Discuss-gnuradio] CPU load

2008-04-17 Thread Martin Braun
On Thu, Apr 17, 2008 at 10:58:31AM -0400, Wireless Monster wrote: > Hi all, > > I am writting some new code to the USRP board using gnuradio and sometimes I > am getting the "uUuU" message, which I understand means that I am not > feeding the usrp.sink module fast enough (right?) > > Is there a w

Re: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Hoo-chang Shin
Thank you for your reply, Tom. With the 'benchmark_ofdm_tx.py' and 'benchmark_ofdm_rx.py', I receive the right packets using the command: $ ./benchmark_ofdm_tx.py -T A -f 2.45G -i 512 $ ./benchmark_ofdm_rx.py -R A -f 2.45G -d 256 But when I send the pre-saved file (which is saved from the 'ben

Re: [Discuss-gnuradio] USRP Tx Rate Conversion

2008-04-17 Thread Wireless Monster
The spectrum looks clean so probably the LPF is not requirered. I just got my hands on a USRP board and started playing with it for fun. If I came to something interesting (i.e. complete GSM modulator) I will contribute it to the project. Thks again and Rgds, On Thu, Apr 17, 2008 at 11:26 AM,

Re: [Discuss-gnuradio] USRP Tx Rate Conversion

2008-04-17 Thread Brian Padalino
On Thu, Apr 17, 2008 at 11:11 AM, Wireless Monster <[EMAIL PROTECTED]> wrote: > Brian, Dan, > > It is working now. Thanks again for your help. > > One more basic "signal processing question" ... knowing that the input and > output are complex (GMSK modulated signal), should I use complex or real >

Re: [Discuss-gnuradio] USRP Tx Rate Conversion

2008-04-17 Thread Wireless Monster
Brian, Dan, It is working now. Thanks again for your help. One more basic "signal processing question" ... knowing that the input and output are complex (GMSK modulated signal), should I use complex or real coefficients for the resampler filter (rational_resampler_ccc, vs. rational_resampler_ccf

Re: [Discuss-gnuradio] ais-tools installation problem

2008-04-17 Thread Don Ward
irene159 wrote: Well I downloaded mysql-3.23.43, I am not sure I’ve done the right choice. I did do some Internet research before installing it and that’s when I realized that there are many problems with mysql running on Cygwin although this version was said to work. Can somebody confirm? Th

Re: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Tom Rondeau
Hoo-chang Shin wrote: Well, I did it like that, it did not work with connecting the file_source direct to USRP. I thought then it might work when I do the 'vector thing' in the middle. In either case, the receiver USRP does not detect anything. Have you tried to run usrp_fft.py at the recei

[Discuss-gnuradio] CPU load

2008-04-17 Thread Wireless Monster
Hi all, I am writting some new code to the USRP board using gnuradio and sometimes I am getting the "uUuU" message, which I understand means that I am not feeding the usrp.sink module fast enough (right?) Is there a way to check what is the current CPU load? Thank you! __

Re: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Hoo-chang Shin
Well, the receiver USRP does detect some signal, but the 'benchmark_ofdm_rx.py' does not detect any packet. Any ideas??? - Original Message From: Hoo-chang Shin <[EMAIL PROTECTED]> To: Discuss-gnuradio@gnu.org Sent: Thursday, April 17, 2008 2:59:58 PM Subject: Re: [Discuss-gnuradio] Send

[Discuss-gnuradio] GNU Radio on embedded systems

2008-04-17 Thread Philip Balister
GNU Radio runs on an ARM Cortex-A8 cpu: http://www.flickr.com/photos/koenkooi/2420765852/ This processor has the ARM Neon instructions which include SIMD single precision floating point. http://www.linuxdevices.com/news/NS4808904795.html There is also a high speed USB port, but we haven't been

Re: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Hoo-chang Shin
Well, I did it like that, it did not work with connecting the file_source direct to USRP. I thought then it might work when I do the 'vector thing' in the middle. In either case, the receiver USRP does not detect anything. - Original Message From: Tom Rondeau <[EMAIL PROTECTED]> To: Hoo-

Re: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Hoo-chang Shin
The problem is - the USRP at the receiver side does not detect anything. - Original Message From: Hoo-chang Shin <[EMAIL PROTECTED]> To: Discuss-gnuradio@gnu.org Sent: Thursday, April 17, 2008 1:24:42 PM Subject: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP Hi, I'm trying to s

Re: [Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Tom Rondeau
Hoo-chang Shin wrote: Hi, I'm trying to send a pre-saved OFDM file to a transmitter USRP, and to receive the signal from a receiver USRP. >From the 'benchmark_ofdm_tx.py' I've saved the OFDM signal to a file using 'gr.file_sink', instead of sending it to 'usrp.sink_c'. And then I want to read

[Discuss-gnuradio] Sending pre-saved OFDM file to USRP

2008-04-17 Thread Hoo-chang Shin
Hi, I'm trying to send a pre-saved OFDM file to a transmitter USRP, and to receive the signal from a receiver USRP. >From the 'benchmark_ofdm_tx.py' I've saved the OFDM signal to a file using >'gr.file_sink', instead of sending it to 'usrp.sink_c'. And then I want to read the data from the saved

Re: [Discuss-gnuradio] ais-tools installation problem

2008-04-17 Thread irene159
Hello, Well I downloaded mysql-3.23.43, I am not sure I’ve done the right choice. I did do some Internet research before installing it and that’s when I realized that there are many problems with mysql running on Cygwin although this version was said to work. Can somebody confirm? The point is th