[Discuss-gnuradio] USRP & OSX

2005-02-14 Thread Ryan Pape
Is anyone using the USRP with MacOSX? I have followed the threads regarding issues getting gnuradio up and running on OSX, but have not seen anything specific to the USRP. ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/

[Discuss-gnuradio] OS X Status

2006-01-07 Thread Ryan Pape
Can someone give a general overview/recap of the current OS X status? I have done my best to follow the list traffic and search the archives. What are the general steps to compile? Are all relavent patches, etc. in CVS? USRP is working but at slow speeds? Audio support is under development but n

Re: [Discuss-gnuradio] OS X Status

2006-01-09 Thread Ryan Pape
I followed your instructions with absolute success. Thank you for the time and effort to document the process. Sincerely, Ryan On 1/8/06, Jonathan Jacky <[EMAIL PROTECTED]> wrote: > > This week I plan to revise my GNU Radio/MAC OS X install instructions at > > http://staff.washington.edu/~jon/g

Re: [Discuss-gnuradio] OS X Status

2006-01-10 Thread Ryan Pape
I got an error building the DarwinPorts sdcc and after I added an include to get sdcc to compile, sdcc errored out while building USRP. Are there any nonstandard procedures there? On 1/10/06, Jonathan Jacky <[EMAIL PROTECTED]> wrote: > > > On Mon, 9 Jan 2006, Eric Blossom wrote: > > > I believe a

Re: [Discuss-gnuradio] OS X Status

2006-01-14 Thread Ryan Pape
FWIW, to get SDCC to compile and link the USRP I had to set in the environment: SDCC_LIB=/opt/local/share/sdcc/lib/ SDCC_INCLUDE=/opt/local/share/sdcc/include/ On 1/13/06, Jonathan Jacky <[EMAIL PROTECTED]> wrote: > > I have revised my OS X installation instructions at > > http://staff.washi

Re: [Discuss-gnuradio] OS X Status

2006-01-16 Thread Ryan Pape
or some other means for getting the background libraries, > includes, & applications? Please elaborate. > > * What is your current shell environment variable setup? The most > important ones to compile GR are: > > PATH > CPATH > PKG_CONFIG_PATH > LDFLAGS > PYTHON_R

Re: [Discuss-gnuradio] Error during "make" gr-usrp

2006-01-16 Thread Ryan Pape
On 1/1/06, Eric Blossom <[EMAIL PROTECTED]> wrote: > On Sun, Jan 01, 2006 at 04:30:48PM -0500, Michael Dickens wrote: > > gr-audio-osx is being tested at UND, and I'll release a first version > > sometime soon. BTW: Either this should be renamed "gr-audio-darwin" > > or the "darwin" named codes a

[Discuss-gnuradio] Multiple flow graphs, proper design

2012-01-07 Thread Ryan Pape
I have a standalone application, that follows the following pattern: While True: ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] Multiple flow graphs, proper design

2012-01-07 Thread Ryan Pape
I have a standalone application, that follows the following pattern: While True: x = dequeue() if X=A tb = gr.top_block() tb.connect() tb.run() if X=B similar but different set of blocks Is this a right or wrong way to instantiate and use multiple flow graphs? I

[Discuss-gnuradio] Understanding Reported Overruns

2012-01-19 Thread Ryan Pape
I have an application running on USRP1 @ 6.4M SPS. With the processing I am doing I have an i7 2600k that an just BARELY keep up. I have been having problems where my app "goes dark", either with all zero input or garbage. I have not been able to confirm which, but I suspect it is being zeroed b

[Discuss-gnuradio] Message Queue Thread Safety

2012-02-19 Thread Ryan Pape
I have an application with some nasty race conditions I am trying to pin-point. The application starts with a 256 channel filterbank. Approx 45 outputs are connected to files, a handful to other blocks ending with a custom block that puts messages in a GR message queue. The application has a sepa

Re: [Discuss-gnuradio] Message Queue Thread Safety

2012-02-21 Thread Ryan Pape
On Mon, Feb 20, 2012 at 10:28 AM, Tom Rondeau wrote: > On Sun, Feb 19, 2012 at 6:29 PM, Ryan Pape wrote: > >> I have an application with some nasty race conditions I am trying to >> pin-point. >> >> The application starts with a 256 channel filterbank. Approx

[Discuss-gnuradio] blks2.pfb_arb_resampler memory leak

2012-11-25 Thread Ryan Pape
Running the following in a loop 10,000s to 100,s of times (I will spare the details as to why) digital_resamp_1 = blks2.pfb_arb_resampler_ccf(.768) Causes the program's memory usage to grow continuously over time. The same behavior is not observed with any other blocks in my flow graph and o

[Discuss-gnuradio] gr-digital / gmsk_demod M&M vs PFB

2013-08-31 Thread Ryan Pape
In looking at gmsk_demod currently, it is using M&M clock recovery, but here: http://gnuradio.org/redmine/projects/gnuradio/repository/revisions/2f75b230e1a54ce10900ad37520dd03ff01685e8/entry/gr-digital/python/gmsk.py in 2011 it was switched to use PFB clock sync before things were reorganized.

[Discuss-gnuradio] USRP 1 Enclosure

2010-03-27 Thread Ryan Pape
Does anyone have an extra USRP 1 Enclosure for sale? One of mine is from the pre-enclosure era. Thanks ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] OSX 10.6 Audio Library Error

2011-07-05 Thread Ryan Pape
I'm having trouble with a new install on OSX 10.6. I've done this enough times on other OSX versions but I am drawing a blank.Can anyone help me out? Can't find Core Audio libs? Traceback (most recent call last): File "./dial_tone.py", line 24, in from gnuradio import audio File "/u

Re: [Discuss-gnuradio] OSX 10.6 Audio Library Error

2011-07-06 Thread Ryan Pape
Patch worked perfectly. Thanks for the help! On Wed, Jul 6, 2011 at 12:08 PM, Michael Dickens wrote: > After disabling Jack and PortAudio, I see the same issue. What -were- you > thinking, Josh, when you integrated the audio components together? I think > you're secretly biased against OSX :)

[Discuss-gnuradio] File Sink & Buffering

2011-07-17 Thread Ryan Pape
Currently in response to a message in a message queue, I am opening a file sink which is connected a bit stream of about 10K/sec (one byte per bit). I keep this file sink open until I receive another message in the queue to stop the capture, at which time I close() it. Ideally, the capture would

Re: [Discuss-gnuradio] File Sink & Buffering

2011-07-19 Thread Ryan Pape
xamples. > > I'm not sure exactly how to answer your question since I don't know what > equipment you're using, but hopefully I have pointed you in a helpful > direction. > > Take care, > Ryan Wolfarth > > On Sun, Jul 17, 2011 at 1:03 PM, Ryan Pape wrote: &

[Discuss-gnuradio] USRP UHD - OSX

2011-07-25 Thread Ryan Pape
I'm having some trouble with UHD on OSX 10.6. I have Gnuradio from GIT and built host code for UHD form source, but I have image package downloaded (I thought I had read building images was problematic under OSX 10.6?). I'm suspecting the issue has to do with image mismatch, but thought I would g

[Discuss-gnuradio] PFB Filterbank & arbitrary resampler

2011-09-04 Thread Ryan Pape
We are successfully using the PFB filterbank to channelize 1-6mhz into a variety of channel widths (25K, 50K etc). In one application, we have 25K channels which are then resampled using PFB resampler to 19.2K fed into gmsk_demod @ 9600bps with 2sps. In this case, we may have 20-40 ports "active"

Re: [Discuss-gnuradio] PFB Filterbank & arbitrary resampler

2011-09-06 Thread Ryan Pape
On Mon, Sep 5, 2011 at 11:55 AM, Tom Rondeau wrote: > On Sun, Sep 4, 2011 at 11:33 AM, Ryan Pape wrote: > >> >> We are successfully using the PFB filterbank to channelize 1-6mhz into a >> variety of channel widths (25K, 50K etc). >> >> In one application,

[Discuss-gnuradio] USRP1 starts passing garbage data

2011-11-29 Thread Ryan Pape
I have an application that runs 24/7 with a USRP1. I am having occasional problems where it appears the USRP (using UHD) starts returning garbage data after an apparently random period of time. In the most recent case, the app ran with no problem for approximately 36 hours, although previously we

[Discuss-gnuradio] USRP2 - Many Narrowband

2009-01-05 Thread Ryan Pape
All: I'm currently trying to extract a relatively small number of narrowband channels out of about 10mhz. With USRP1, I can get two channels easily by using both sets of DDCs. In some instances, I can successfully use a filterbank, however at 12.5khz channels, I quickly run out of horsepower if

[Discuss-gnuradio] RFX900 Stopped Transmitting

2009-10-24 Thread Ryan Pape
All: My RFX900 has stopped transmitting. Nothing else has changed and it still receives fine. I don't have another TX daughterboard to know whether it is a problem for sure with the RFX900 or the USRP (1). Anything I can look at short of ordering a new board? Thanks Ryan _

[Discuss-gnuradio] OS X High Speed Status

2006-04-14 Thread Ryan Pape
There has been talk of some code to get high(er) speed USB under OS X. Has any of this code made it into the CVS tree yet? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org http://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] EDACS Control Channel

2006-04-15 Thread Ryan Pape
Finally having all the pieces in place I need, I want to use the new GMSK code to decode an EDACS trunked radio control channel. Given my rudimentary knowledge on the topic (and gnuradio in general) which (if any) of the examples present would be my best starting point given that I'm hoping to do

Re: [Discuss-gnuradio] EDACS Control Channel

2006-04-15 Thread Ryan Pape
scan and provide that, probably. > > Both of these assume that the demod and bitsync have been performed > already and are being fed to their inputs as binary streams. > > Frank > > Ryan Pape wrote: > > Finally having all the pieces in place I need, I want to use t

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

2006-09-11 Thread Ryan Pape
Anyone make progress on this issue? I have the exact same behavior on my new Mac Pro. Testing 2MB/sec... usrp_open_interface:usb_claim_interface: failed interface 1 usb_claim_interface: couldn't claim interface usrp_basic_tx: can't open tx interface Traceback (most recent call last): . Ryan

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

2006-09-16 Thread Ryan Pape
I've attached the output of benchmark_usb.py Of Note: usb_os_open: fffe:0002 usb_claim_interface: called for interface 1 Interface 0 of device is 0x1163 Interface 1 of device is 0x claim_interface: No interface found; selecting configuration claim_interface: device has 1 configuratio

[Discuss-gnuradio] Project Help Needed

2008-04-04 Thread Ryan Pape
All, I have a small, very simple, project which I need to pay someone familiar with GnuRadio and USRP to complete. Essentially, it is a software-based cross band repeater that is controlled via command sent via TCP. A command will specify frequency to to tune to, broadcast will begin on previous

[Discuss-gnuradio] Daughterboard Comparison 800MHZ

2008-07-31 Thread Ryan Pape
Assuming I am only interested in RX and the DBSRX, RFX900 and TVRX boards all reach the frequencies I need, what other factors should I be considering to pick the most appropriate board for any given application? ___ Discuss-gnuradio mailing list Discus

[Discuss-gnuradio] Filterbank Performance

2008-09-15 Thread Ryan Pape
All, I need to access roughly 60+ 12.5khz frequencies spread out randomly over 4mhz. I have successfully deployed the filterbank, with smaller bandwidth (1Mhz), I but start to get overruns at anything above 1Mhz, even with most of the ports on the filterbank hooked to a null sink. I'm running on