Re: [Discuss-gnuradio] GSL_FOUND both TRUE and FALSE

2017-02-22 Thread Cinaed Simson
On 02/21/2017 03:01 PM, Achilleas Anastasopoulos wrote: > Hi all, > > after a long time update from source on a Fedora 23 I came across the > following problem when cmaking: > > -- Configuring gr-fec support... > -- Dependency ENABLE_VOLK = ON > -- Dependency Boost_FOUND = 1 > -- Dependency

Re: [Discuss-gnuradio] GSL_FOUND both TRUE and FALSE

2017-02-22 Thread Bastian Bloessl
Hi, On 02/22/2017 12:01 AM, Achilleas Anastasopoulos wrote: > after a long time update from source on a Fedora 23 I came across the > following problem when cmaking: > > Can anyone give me a hint as to what may be wrong here? > Does that happen even after you delete the build directory and sta

[Discuss-gnuradio] feedback loop in gnu radio

2017-02-22 Thread Sagnik Basu
I am using a GRC flowgraph for testing the energy detection algorithm for cognitive radio.I want to update my threshold for probability detection by estimating the SNR of the channel. However, for this, I need a feedback loop, which I want to know how to implement. Regards, Sagnik Basu B. Tech |

Re: [Discuss-gnuradio] feedback loop in gnu radio

2017-02-22 Thread Marcus Müller
Hi Sagnik, right now, you can't build loops out of stream connections. That has causality reasons – if you had such a loop, and the "merging" block at the start of the loop would need input on both channels, GNU Radio couldn't guarantee your flow graph could ever start¹. If you can live with a lo

[Discuss-gnuradio] OFDM receiver

2017-02-22 Thread MUHAMMAD AHMAD
How can I receive bits using file sink in ofdm receiver. where I have to connect file sink in flow graph of ofdm receiver? either bits repack block output can give bits? ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/ma

Re: [Discuss-gnuradio] GSL_FOUND both TRUE and FALSE

2017-02-22 Thread Geof Nieboer
A patch was applied a couple weeks ago because gr-dtv wasn't running the same check for GSL that the previous libraries were (in CMAKE), which caused the same problem. Perhaps this is the same issue? Really depends exactly which version you were running. If you are running from git between I thi

Re: [Discuss-gnuradio] OFDM receiver

2017-02-22 Thread Marcus Müller
Hi Muhammad, sadly, it's not very clear what you're asking about. * Which flow graph are you referring to? * What is your precise problem, and what have you tried to solve it so far? How can we help you with that? Best regards, Marcus On 02/22/2017 02:05 PM, MUHAMMAD AHMAD wrote: > How can I r

Re: [Discuss-gnuradio] GSL_FOUND both TRUE and FALSE

2017-02-22 Thread Achilleas Anastasopoulos
Hi all, thank you for your input. Some clarifications: I was indeed cmaking the latest version from git "Building for version: v3.7.10.1-237-g81e7af7b / 3.7.11git" and was working from scratch with a clean built. I attach here the whole output of cmake. thanks for the help , Achilleas

Re: [Discuss-gnuradio] GSL_FOUND both TRUE and FALSE

2017-02-22 Thread Marcus Müller
Hi Achilleas, I'm "able" to reproduce this on Fedora 25. Mh, what a pleasure. Have you opened a bug report on github for this already? Best regards, Marcus On 02/22/2017 04:42 PM, Achilleas Anastasopoulos wrote: > Hi all, > > thank you for your input. > > Some clarifications: > > I was in

Re: [Discuss-gnuradio] GSL_FOUND both TRUE and FALSE

2017-02-22 Thread Geof Nieboer
I would take a look at the FindGSL.cmake script. I suspect the issue is related to the change to run FindPackage twice. Perhaps the pkgconfig detection isn't pulling in the variables the second time so they are being set to nulls? For a quick test, I would try commenting out the "find_package(GS

[Discuss-gnuradio] How can I modify QT GUI as I want to use?

2017-02-22 Thread 김정식
Hi, I'm using gnuradio for In-band full duplex (with USRP N210) I want to make a demo for transfer a movie clip. Here's the thing. How can I make a GUI with constellation, frequency, and streaming movie clip in one window (without tab) ? ___ Dis

[Discuss-gnuradio] OFDM Receiver

2017-02-22 Thread MUHAMMAD AHMAD
Hi, I am referring the built in example of gnuradio companion ( rx_ofdm.grc). In which I replace random source with usrp source. on Transmetter side I am sending some bits and in receiver flow graph (rx_ofdm ) I am facing problem where I have to attach file sink to get these bits. I attached *