Mac 10.9.5 Challenges gnuradio and gr-osmosdr and gqrx

Having issues with the site, hardware, source code, or any other issues?
jynik
Posts: 455
Joined: Thu Jun 06, 2013 8:15 pm

Re: Mac 10.10.5 Yosemite and 10.9.5 Challenges gnuradio and

Post by jynik »

djdonovan wrote:OpenBTS here I come!
Just to save you some debugging time later... you'll want to use FPGA version <= v0.1.2 with OpenBTS and YateBTS.

I still have to spend some time figuring out what changes need to be made to the transceiver code to work with our newer FPGA images. In the FPGA >= v0.2.x we separated some sample counters, which broke some of the transceiver's assumptions about the order in which you could perform "set sample rate" and "enable timestamps" operations.
djdonovan
Posts: 14
Joined: Tue Oct 15, 2013 8:27 pm

Re: Mac 10.9.5 Challenges gnuradio and gr-osmosdr and gqrx

Post by djdonovan »

Good to know and thanks again for your help!

I'm already eyeing the transverter board:)
math
Posts: 3
Joined: Sat Jul 12, 2014 2:27 pm

Re: Mac 10.9.5 Challenges gnuradio and gr-osmosdr and gqrx

Post by math »

Fatal Python error: PyThreadState_Get: no current thread
This error is due to mixed versions of python - like OSX's and Homebrew's.

To clear up conflicts, you can specify which python to use using some cmake variables:

Code: Select all

cmake .. -DPYTHON_LIBRARY=$(brew --prefix python)/Frameworks/Python.framework/Versions/2.7/lib/libpython2.7.dylib -DPYTHON_INCLUDE_DIR=$(brew --prefix python)/Frameworks/Python.framework/Versions/2.7/include/python2.7
The homebrew recipies I have seen usually do this, but it's a common thing to have to manually do when manually compiling gnuradio components

Mathieu
Post Reply