Re: [Discuss-gnuradio] Frequency Offsets in RFX 2400

2008-01-10 Thread David I. Emery
On Thu, Jan 10, 2008 at 08:46:09AM -0600, LRK wrote: > > While the 'right' fix would be to supply a stable frequency source to > the USRP, it would be difficult. Not impossibly difficult... it would, however, have been nice to have a VCXO option for the USRP-1 that would have allowed exte

[Discuss-gnuradio] URGENT ERROR: MAKE-ing GNU Radio

2008-01-10 Thread Jonas
These are the errors shown when MAKE-ing GNU Radio. Traceback (most recent call last): File "./qa_rational_resampler.py", line 24, in from gnuradio import blks File "/home/jpgacrama/INSTALLERS/GNU_RADIO/gnuradio-3.1.1 /gnuradio-core/src/python/gnuradio/blks/__init__.py", line 37, in ex

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
On Jan 11, 2008 11:46 AM, Jonas <[EMAIL PROTECTED]> wrote: > I still can't connect to SVN: > > These are the error messages. I think it has something to do with the fact > that I am connected via a proxy server. I think I'll just stick with the FTP > version huhu =( > > svn: PROPFIND request f

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
I still can't connect: These are the error messages. I think it has something to do with the fact that I am connected via a proxy server. I think I'll just stick with the FTP version huhu =( svn: PROPFIND request failed on '/svn/gnuradio/trunk' svn: PROPFIND of '/svn/gnuradio/trunk': could no

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread George Nychis
Give us exactly what you're trying from the command line, not just the error output. Jonas wrote: I already uninstalled GNU Radio and attempted to download from SVN again. Unfortunately, I get these error messages. svn: PROPFIND request failed on '/svn/gnuradio/trunk' svn: PROPFIND of '/svn/g

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
I already uninstalled GNU Radio and attempted to download from SVN again. Unfortunately, I get these error messages. svn: PROPFIND request failed on '/svn/gnuradio/trunk' svn: PROPFIND of '/svn/gnuradio/trunk': Could not read status line: Connection reset by peer (http://gnuradio.org) So what do

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Dan Halperin
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 You want to remove the installed files of GNU radio, you're going to replace them from source. - -Dan Jonas wrote: > Will I not remove the installed files of GNU Radio? Do I just remove its > directory? > > =) > > On Jan 11, 2008 10:50 AM, Dan Halp

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
Will I not remove the installed files of GNU Radio? Do I just remove its directory? =) On Jan 11, 2008 10:50 AM, Dan Halperin <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Jonas wrote: > > Yes, I did that (with an added sudo, see below). However, error messages

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
On Jan 11, 2008 10:45 AM, Jonas <[EMAIL PROTECTED]> wrote: > Yes, I did that (with an added sudo, see below). However, error messages > appear as shown below. > > sudo svn co http://gnuradio.org/svn/gnuradio/trunk gnuradio > svn: REPORT request failed on '/svn/!svn/vcc/default' > svn: REPORT of '/

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
I can't seem to connect to SVN, and the version of GNU Radio that I used is the one that can be obtained from the FTP site ( ftp://ftp.gnu.org/gnu/gnuradio/gnuradio-3.1.1.tar.gz). So, is there any other way out for me? Thanks! On Jan 11, 2008 10:19 AM, Jonas <[EMAIL PROTECTED]> wrote: > Yes. I

Re: [Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
Yes. I did install it from the .tgz file. I will try downloading it using SVN and see if there are any differences. Thanks! On Jan 11, 2008 10:04 AM, Dan Halperin <[EMAIL PROTECTED]> wrote: > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Have you run ./bootstrap && ./configure ? > > Regardi

[Discuss-gnuradio] URGENT (Requires immediate reply) PROBLEM: Can't make howto example.

2008-01-10 Thread Jonas
I decided to re-install GNU Radio after re-downloading the needed dependencies. Unfortunately, it didn't pass make check. Read my previous post having this subject "ERROR: GNU Radio doesn't pass Make check" for more information. Anyway, I decided to make gr-howto-write-a-block. Unfortunately, it

[Discuss-gnuradio] ERROR: GNU Radio does not pass make check

2008-01-10 Thread Jonas
GNU Radio does not pass Make check. Attached is the latest error generated upon running Make check-ing GNU Radio. Traceback (most recent call last): File "./qa_rational_resampler.py", line 24, in from gnuradio import blks File "/home/jpgacrama/INSTALLERS/GNU_RADIO/gnuradio-3.1.1 /gnuradio-cor

[Discuss-gnuradio] ERROR: MAKE-ing GNU Radio

2008-01-10 Thread Jonas
Attached is the latest error generated upon running Make check-ing GNU Radio. Traceback (most recent call last): File "./qa_rational_resampler.py", line 24, in from gnuradio import blks File "/home/jpgacrama/INSTALLERS/GNU_RADIO/gnuradio-3.1.1/gnuradio-core/src/python/gnuradio/blks/__in

Re: [Discuss-gnuradio] splitting bits

2008-01-10 Thread Steven Clark
> You might be able to run unpacked_to_packed followed by > packed_to_unpacked to get what you want. It's ugly, but you don't > have to write any code ;) > > pack = gr.unpacked_to_packed_ss(2, gr.GR_MSB_FIRST) > unpack = gr.packed_to_unpacked_ss(1, gr.GR_MSB_FIRST) > > Eric > Aha! Shame on me

Re: [Discuss-gnuradio] splitting bits

2008-01-10 Thread Eric Blossom
On Thu, Jan 10, 2008 at 05:24:06PM -0500, Steven Clark wrote: > I had looked at those blocks, but can't figure out a way to get them to do > what I want... > (2,3,1) into gr.packed_to_unpacked_ss(1,gr.GR_MSB_FIRST) gives: > (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,

Re: [Discuss-gnuradio] splitting bits

2008-01-10 Thread Steven Clark
I had looked at those blocks, but can't figure out a way to get them to do what I want... (2,3,1) into gr.packed_to_unpacked_ss(1,gr.GR_MSB_FIRST) gives: (0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1)

Re: [Discuss-gnuradio] Question regarding vector_sink_c

2008-01-10 Thread Wee Shinhan
> > Message: 1 > Date: Wed, 9 Jan 2008 17:44:57 -0800 (PST) > From: Wee Shinhan <[EMAIL PROTECTED]> > Subject: Re: [Discuss-gnuradio] Question regarding > vector_sink_c > To: Eric Blossom <[EMAIL PROTECTED]>, GNU radio > > Message-ID: > <[EMAIL PROTECTED]> > Content-Type: text/plain; charset=iso

Re: [Discuss-gnuradio] splitting bits

2008-01-10 Thread Eric Blossom
On Thu, Jan 10, 2008 at 04:43:17PM -0500, Steven Clark wrote: > Hey folks- > > Let's say I have a stream of shorts whose values are one of [0,1,2,3] (in > other words, the bottom 2 bits are active). I want to split these bits, so > that: > [2,3,3,1,0] -> [1,0,1,1,1,1,0,1,0,0], etc. > > What block

[Discuss-gnuradio] splitting bits

2008-01-10 Thread Steven Clark
Hey folks- Let's say I have a stream of shorts whose values are one of [0,1,2,3] (in other words, the bottom 2 bits are active). I want to split these bits, so that: [2,3,3,1,0] -> [1,0,1,1,1,1,0,1,0,0], etc. What block(s) can help me achieve this? ___

[Discuss-gnuradio] designing filters: remez?

2008-01-10 Thread Patrick Strasser
Hello! I thought about a graphical filter designer (probably to be integrated with GRC). I read up about the window method and the Remez method. I found both in GNU Radio code, but the examples only use the window method functions. Is there something bad about designing filters with the Remez

Re: [Discuss-gnuradio] Newbie questions

2008-01-10 Thread ChoJin
On Thu, 10 Jan 2008 17:27:25 +0100, ChoJin wrote: [...] > Next, I'm trying to build a double slider for the frequency. One slider > to set a rough frequency, and another slider to fine tune it more > precisely. Kind of two synchronized sliders which get both updated (as > well as the textbox w

[Discuss-gnuradio] Newbie questions

2008-01-10 Thread ChoJin
Hello, I'm new into gnuradio, so sorry in advance for the very basic questions. I'm trying to read the code whenever possible but it takes times to get used to it :) I'm playing around with the wfm receiver, adding time domain scopes, trying to get the stereo out (yes I saw someone has done it

[Discuss-gnuradio] Re: gnuradio on leopard

2008-01-10 Thread Michael Dickens
ChoJin - I'm glad to hear you have GNU Radio installed and running on Leopard. Here is some further information that you might have found useful; and from which others might benefit. On Jan 9, 2008, at 7:23 PM, ChoJin wrote: 2) Leopard / Darwin 9 changes the way threads work enough that the

Re: [Discuss-gnuradio] Frequency Offsets in RFX 2400

2008-01-10 Thread LRK
On Wed, Jan 09, 2008 at 11:15:37AM -0800, Eric Blossom wrote: > On Wed, Jan 09, 2008 at 11:02:47AM -0800, Shyamnath wrote: > > > > I am trying to run a few experiments to transmit a data stream from a > > transmitter to receiver using a RFX 2400. However, I am observing that the > > frequency of

Re: [Discuss-gnuradio] Question regarding vector_sink_c

2008-01-10 Thread Tom Rondeau
Wee Shinhan wrote: Hi eric, Thanks for the reply, i have connected it to the channel filters, i trying to do an estimate on wireless channel coefficient. Therefore i'm trying to capture the complex data received before de-modulation. I havent have much success using vector sink even when i set