Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-24 Thread 奕佑
I would like to trying to help. I'm using yosemite now. I install dependency using macports, but und & gnu radio install by manually. Attach is the command that using llvm-gcc clang. They are run into same error, but I cannot telling why. And I try gcc4.9 install by macport didn't have the problem,

[Discuss-gnuradio] What does "Feedback" mean in the issue tracker?

2014-10-24 Thread Kevin Reid
What does it mean in the GNU Radio issue tracker for an issue to have the status "Feedback"? Two of my bugs have been in this state and I don't know what this means about them. I thought it might mean "asking for reporter's response" but in the one case I gave it and got no response (#667), and

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-24 Thread Stefan Oltmanns
See: http://llvm.org/bugs/show_bug.cgi?id=9665 When I understand that correctly it´s a bug in the intel avx header files. The solution is either use other header files or do not use const int, but literal values or enum. Best regards Stefan Am 24.10.2014 21:15, schrieb West, Nathan: > The intel

Re: [Discuss-gnuradio] Latest Gnuradio git won't compile on OS X

2014-10-24 Thread West, Nathan
The intel docs specify that function as taking a const int, so I'm not sure why that wouldn't work but the literal value would. Although I'm basically fine with using the literal value, I feel like the "correct" thing to do is use a const int here. At a minimum I'd like to at least understand what'

Re: [Discuss-gnuradio] Building a Zedboard BOOT.bin

2014-10-24 Thread Philip Balister
On 10/23/2014 10:20 AM, Daniel Camara wrote: > Hi, > > I am trying to generate a bootable SD card for the zedboard and I am > running over some small issues. For starters, do you provide the u-boot.elf > you use somewhere? In the http://gnuradio.org/data/sdk/zedboard_armv7a-hf- > vfp-neon/ th

Re: [Discuss-gnuradio] PSK demodulation of a sub-carrier sent over FM

2014-10-24 Thread Martin Braun
On 10/23/2014 03:36 PM, Raydel Abreu (CM2ESP) wrote: > Thank you Lou and Martin. > > Will try and take a look. One more thing is there any extra to do if the > PSK signal is +-67 degrees instead of nomal 90 degrees or the PSK > demodulator just handles it as usual. I've never seen this before, bu

Re: [Discuss-gnuradio] Fwd: out-of-tree module config.h documentation/use

2014-10-24 Thread Martin Braun
It's probably an artefact from the autotools era. Note that it's: 21 #ifdef HAVE_CONFIG_H 22 #include "config.h" 23 #endif So the include is never called. These config.h files are usually generated by the build process, and provide information about the system you're building on. CMake handle

[Discuss-gnuradio] Fwd: out-of-tree module config.h documentation/use

2014-10-24 Thread David Marmoy
Hi I am writing an out-of-tree module and have used the gr_modtool to generate the module and block skeletons. All the block source files include a config.h file, but I have not been able to find documentation of its use or location anywhere. Does anyone know what it is used for and how? Thank y