[Discuss-gnuradio] Why d_phase in Costas loop different in gr_costas_loop from gr_mpsk_receiver?

2009-05-26 Thread Mir M. Ali
Hi, Why is the d_phase equation different in these two files? d_phase += d_alpha*phase_error; // In gr_mpsk_receiver.cc and d_phase = d_phase + d_freq + d_alpha * error; // In gr_costas_loop.cc The d_freq term is omitted and I don't understand why. Thanks, Ali

[Discuss-gnuradio] problem in FM stereo example

2009-05-26 Thread Tushar Patel
HI all, I run the FM stereo example with Ubuntu 8.04 and gnuradio 3.1.3 but now I try to run gnu on fedora 10 with gnuradio 3.2 I got the error like File "radiogui.py", line 31, in from gnuradio import blks ImportError: cannot import name blks I copy the FM stereo file in gnu directory still

Re: [Discuss-gnuradio] How to view data samples when running fm radio

2009-05-26 Thread Eric Blossom
On Tue, May 26, 2009 at 01:53:40PM +0500, Zainab Qureshi wrote: > I have successfully run gnuradio on linux/windows. I am running the > example usrp_wfm_rcv.py. i want to look at few of the data samples > coming from the usb port. What changes in the code should i make to > view these data samples.

[Discuss-gnuradio] USRP issue

2009-05-26 Thread Sriram Krishnan
Installed GNU radio 3.1.1 last friday on Ubuntu 8.04(hardy) and ran tests for maximum throughput between host and USRP using usrp_benchmark_usb.py. Worked fine on friday. Not working today. Getting following error. File "/usr/local/lib/python2.5/site-packages/gnuradio/db_base.py", line 68, in

Re: [Discuss-gnuradio] Cycle time detection for an unknown cyclic radio system

2009-05-26 Thread Firas Abbas
Hi, You have to explain well in order to get help, for example you said : [ for 200ms cycle time my array look like [27, 200, 27, 27, 27, 27, 276, 27], here count = 27, other values are actually some errors ] What is [my array]? how we suppose that we know your array? And what are these numbe

Re: [Discuss-gnuradio] DAB receiver

2009-05-26 Thread Andreas Mueller
Hello Ravi Ravi Trivedi wrote: > Hello all, > > I am trying to implement synchronization of DAB receiver in matlab. I > have been facing some problems when I test the matlab receiver code for > real time streams. > First issue is sampling rate estimation problem. I see that real time > fra

Re: [Discuss-gnuradio] QAM demod Error in GRC

2009-05-26 Thread Josh Blum
Its no bug in GRC. It seems the qam8 demodulator is empty: http://gnuradio.org/trac/browser/gnuradio/trunk/gnuradio-core/src/python/gnuradio/blks2impl/qam8.py#L180 w w wrote: Greetings, I'm getting the following error in GRC:Runtime error: hierarchical block 'qam8_demod' input 0 is not conn

Re: [Discuss-gnuradio] Bug in GNU Radio Release 3.2

2009-05-26 Thread Johnathan Corgan
On Tue, May 26, 2009 at 9:20 AM, Michael Dickens wrote: > In r11104 (23-May), when the USRP-inband and related codes were removed from > the configure script (primarily via the M4 files in config), the "GRC_WITH" > command in grc_usrp.m4 was also removed -- when it should have been > truncated!  

[Discuss-gnuradio] Bug in GNU Radio Release 3.2

2009-05-26 Thread Michael Dickens
I'm in the process of verifying that my MacPorts Portfiles work with the 3.2 release -- before releasing them "into the wild" -- by updating them with the actual release requirements (e.g., no inband, pmt, mblock, atsc, ). During this process, I'm come upon a bug in the 3.2 release tarball

[Discuss-gnuradio] USRP1 DBSRX phase noise

2009-05-26 Thread Kutik
Hello, I would like to capture signals using the USRP1 (rev 4.5) with DBSRX. For the first test I am using CW signal from generator at 1.501GHz, 0 dBm (verified to be precise). To capture the signal I use the usrp_rx_cfile.py (usrp_rx_cfile.py -R a -d 8 -f 1.500G -N 40064 -s -g 45 usrp.dat) I pl

Re: [Discuss-gnuradio] Range of samples values

2009-05-26 Thread Ujala Qasim
Is there a way that I can view some of the data samples when the GNU Radio is running FM radio? That way I would be able to compare the actual data values that should be coming, and the values that I am getting through the interface I am using. On Tue, May 26, 2009 at 8:04 PM, Jason Uher wrote:

Re: [Discuss-gnuradio] Range of samples values

2009-05-26 Thread Ujala Qasim
And I am basically trying to perform this task through Windows, but even when i run the same code on Linux, it is giving me the same values. On Tue, May 26, 2009 at 8:04 PM, Jason Uher wrote: > On Tue, May 26, 2009 at 1:24 AM, Ujala Qasim > wrote: > > I set my decimation rate to 200 and center_

Re: [Discuss-gnuradio] Range of samples values

2009-05-26 Thread Ujala Qasim
On Tue, May 26, 2009 at 8:08 PM, Ujala Qasim wrote: > I captured the samples using the following C++ interface which is already > available for USRP: > // Simple C++ USRP interfacing demonstration program > // > // > // This program was derived and modified from test_usrp_standard_rx.cc > /* -*-

Re: [Discuss-gnuradio] Range of samples values

2009-05-26 Thread Jason Uher
On Tue, May 26, 2009 at 1:24 AM, Ujala Qasim wrote: > I set my decimation rate to 200 and center_freq to 100.1, but the values of > my samples is exceeding this range. > Please specify the mistake that I'd be making... This is very hard to do without any information at all regarding how you capt

[Discuss-gnuradio] QAM demod Error in GRC

2009-05-26 Thread w w
Greetings, I'm getting the following error in GRC:Runtime error: hierarchical block 'qam8_demod' input 0 is not connected internally' Any Suggestions? Cheers, Jody ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailm

[Discuss-gnuradio] How to view data samples when running fm radio

2009-05-26 Thread Zainab Qureshi
I have successfully run gnuradio on linux/windows. I am running the example usrp_wfm_rcv.py. i want to look at few of the data samples coming from the usb port. What changes in the code should i make to view these data samples. ___ Discuss-gnuradio mail

Re: [Discuss-gnuradio] Problem downloading firmware to USRP

2009-05-26 Thread Natalia Olano
Hello again, Thanks a lot for the help. I managed to get it to work again with the help of the usrper function as in: http://gnuradio.org/trac/wiki/UsrpFAQ/Bitstream Best regards Natalia Olano 2009/5/20 Sebastiaan Heunis : > Natalia > > Maybe you should have a look at /usr/local/share/usrp whe

Re: [Discuss-gnuradio] Cycle time detection for an unknown cyclic radio system

2009-05-26 Thread kaleem ahmad
Can someone at least comment on first part of the problem, I mean where I am getting this 'factor' from Thanks kaleem ahmad wrote: > > Dear All, > > A few weeks ago I was involved in a discussion about calculating the cycle > time of an unknown system present in the area by sensing the sp

[Discuss-gnuradio] Re: file_sink does not save all ?

2009-05-26 Thread feldmaus
Eric Blossom comsec.com> writes: > > It does save all of the samples that it's seen. GNU Radio does not > process everything "instantaneously". Since you're not causing the > graph to stop synchronously, say using gr.head, or by providing input > from a file, the graph is stopping at the first