Re: [Discuss-gnuradio] UHD and GNU Radio on Beaglebone

2017-03-07 Thread Nate Temple
Hi Usman, For cross compiling, a good place to start would be to look at how PyBOMBs handles the E3xx builds. You may need another SDK for the BBB. https://kb.ettus.com/Software_Development_on_the_E310_and_E312 I'd encourage you to check out the specs on the Odroid XU4 SoC board. I haven't ra

Re: [Discuss-gnuradio] UHD and GNU Radio on Beaglebone

2017-03-07 Thread Usman Haider
On Sat, Mar 4, 2017 at 4:24 AM, Dennis Glatting wrote: > On Fri, 2017-03-03 at 13:51 -0500, Marcus D. Leech wrote: > > On 03/03/2017 12:59 PM, Dennis Glatting wrote: > > > > > > On Fri, 2017-03-03 at 18:33 +0500, Usman Haider wrote: > > > > > > > > I want to build UHD and GNU Radio on Beaglebone

[Discuss-gnuradio] Using Eigen C++ template library in GNURADIO

2017-03-07 Thread Nasi
Dear members, does anyone know how to useĀ Eigen C++ template library in GNURADIO? my OS is Ubuntu 16.04 lts. gnuradio version 3.7.10, I can use it separately as c++ library by adding these lines: #include #include #include ... VectorXcf fftshiftXcf(VectorXcf x, int NFFT); ... //

Re: [Discuss-gnuradio] gr-fec: why BOOST_CONSTEXPR_OR_CONST?

2017-03-07 Thread Geof Nieboer
If it sheds light... the original issue was that the static const float was being defined and initialized with a value in the header, which worked with GCC because of a GCC-extension. This, however failed with MSVC (or gcc running in -pedantic mode apparently). So the declaration/init was split b

Re: [Discuss-gnuradio] gr-fec: why BOOST_CONSTEXPR_OR_CONST?

2017-03-07 Thread Martin Braun
Agree with Michael, especially since we don't allow C++11 features yet. Martin On 6 Mar 2017 7:41 am, "Michael Dickens" wrote: > I have a MacPorts ticket requesting that I enable CTRLPORT, which > requires Thrift, which was recently updated to 0.10.0 in MacPorts -- so > I thought it worth a try