Page 2 of 2

Re: Mac 10.10.5 Yosemite and 10.9.5 Challenges gnuradio and

Posted: Thu Oct 15, 2015 10:33 am
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.

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

Posted: Thu Oct 15, 2015 2:55 pm
by djdonovan
Good to know and thanks again for your help!

I'm already eyeing the transverter board:)

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

Posted: Fri Oct 16, 2015 6:29 pm
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