Re: [Discuss-gnuradio] about tune the daughterboard

2006-07-31 Thread hanwen
Thanks. Eric. And you've had a good vocation, haven't you?   The GMSK2 code works well and the way of tuning at transmit_path and receive_path is OK.   For single channel,     In the transmit_path:     self.u.tune(self.subdev._which, self.subdev, target_freq)     In the receive_path:         se

Re: [Discuss-gnuradio] Problem with USB on OSX?

2006-07-31 Thread Jan Schiefer
Isn't the way this works that the USRP disconnects/reconnects after the firmware download? Maybe the Mac misses that somehow? What happens if after loading the firmware you unplug and reconnect the USB? Cheers, Jan Thomas Schmid wrote: Hi Jan, I have two USRPs to test with, one a Rev 3 an

Re: [Discuss-gnuradio] Problem with USB on OSX?

2006-07-31 Thread Jan Schiefer
Michael Dickens wrote: I can tell you from the print-out that the issue is part of LIBUSB ("usb_claim_interface") which is used by the USRP, and not the USRP's FUSB code for Darwin. Maybe there are patches for 0.1.12 for Intel which are needed? Any other Intel-mac users see this? Works fine

Re: [Discuss-gnuradio] Re: Intel Mac GNU Radio Install Update Soon

2006-07-31 Thread Jan Schiefer
Thomas Schmid wrote: A quick note of caution: I found out that sometimes compiling with -j2 gets errors, then restarting the process without -j2 compiles without any errors. I assume that it is some dependency problems because one of the processes did not finish yet. "This should never happen", b

[Discuss-gnuradio] Problem with USRP interpolation

2006-07-31 Thread hanwen
Hi,   Recently, I'm trying to do CDMA commnication at 1.28Mchip/s with USRP and I've met a problem. The sample rate of DAC on USRP is 128M, so samples avialabe for each chip is 128M / 1.28M = 100. The interpolation rate of USRP must be [4, 512] and multiple of 4. So the only choice for me seems to

Re: [Discuss-gnuradio] Problem displaying magnitude of a complex signal in a scope sink

2006-07-31 Thread Eric Blossom
On Mon, Jul 31, 2006 at 06:18:04PM -0400, Louis Girard wrote: > Hi, >I started developing with GNU Radio a couple of weeks ago and have been > following the list for a while. I must thank Eric, Matt and everyone else for > all the time they are devoting to this project. Now with my problem... >

[Discuss-gnuradio] Problem displaying magnitude of a complex signal in a scope sink

2006-07-31 Thread Louis Girard
Hi, I started developing with GNU Radio a couple of weeks ago and have been following the list for a while. I must thank Eric, Matt and everyone else for all the time they are devoting to this project. Now with my problem... I am trying to do something which should be pretty simple. I have star

Re: [Discuss-gnuradio] Re: Intel Mac GNU Radio Install Update Soon

2006-07-31 Thread Johnathan Corgan
Thomas Schmid wrote: > Also, increasing to -j3 or -j4 might even increase the compile > performance since some of the make processes might be doing some > intensive IO work, thus the CPUs are free for compiling. I only > recently learnt that (thank you, Greg)... I've read that the thumb rule (wis

Re: [Discuss-gnuradio] Re: Intel Mac GNU Radio Install Update Soon

2006-07-31 Thread Thomas Schmid
I agree, we should not automate this, though a note in a "how to install on a macbook" would be nice since a lot of people don't know about that option. A quick note of caution: I found out that sometimes compiling with -j2 gets errors, then restarting the process without -j2 compiles without any

Re: [Discuss-gnuradio] Negative values sent to usrp.sink_c ?

2006-07-31 Thread Lee Patton
On Mon, 2006-07-31 at 13:17 -0700, Matt Ettus wrote: > Are you doing any carrier tracking? No I am not. At the time I wrote the post, I didn't think I needed it since my pulses came back looking pretty good except for the whole "positive values only" thing. However, my data looks a lot better

Re: [Discuss-gnuradio] Scalability

2006-07-31 Thread Eric Blossom
On Mon, Jul 31, 2006 at 06:13:16AM -0700, jjw wrote: > > I have a few questions related to the scalability of GNU Radio. Any insight > would be most appreciated. > > 1) I am unfamiliar with IPC, but understand how it could be useful to > increase computing power. What would be the first step i

Re: [Discuss-gnuradio] Re: Intel Mac GNU Radio Install Update Soon

2006-07-31 Thread Eric Blossom
On Mon, Jul 31, 2006 at 03:59:23PM -0400, Michael Dickens wrote: > >>- Since the new Macbooks have dual core, one can add a -j2 to each > >>make command. That will speed up compilation because it creates two > >>gcc instances at a time. > > > >This would come in the ./configure stage. Probably a s

Re: [Discuss-gnuradio] Negative values sent to usrp.sink_c ?

2006-07-31 Thread Matt Ettus
Lee Patton wrote: I generated a data file in which each complex sample is stored as a 32-bit value, with real and imaginary values ranging from 32000 to -32000. If I connect a file source directly to a file sink, then I "receive" the transmit data just fine. However, if I put a USRP in betw

Re: [Discuss-gnuradio] Re: Intel Mac GNU Radio Install Update Soon

2006-07-31 Thread Michael Dickens
- Since the new Macbooks have dual core, one can add a -j2 to each make command. That will speed up compilation because it creates two gcc instances at a time. This would come in the ./configure stage. Probably a switch statement somewhere which could be expanded to include the intel- mac 'u

Re: [Discuss-gnuradio] where the carrier frequency is set

2006-07-31 Thread Matt Ettus
Michael Ford wrote: Eric has already told me once that this is crazy, but I can't see any other way to do this. When Matt told me that the RSSI circuit measures interference +/-15Mhz from the carrier, The RSSI reads the power in the analog baseband signals (power(I) + power(Q)). The analo

[Discuss-gnuradio] Scalability

2006-07-31 Thread jjw
I have a few questions related to the scalability of GNU Radio. Any insight would be most appreciated. 1) I am unfamiliar with IPC, but understand how it could be useful to increase computing power. What would be the first step in setting it up to do distributed computing with GNU Radio? 2)