[Discuss-gnuradio] USRP source/sink issue with OFDM

2017-03-27 Thread Burning Dragon Productions - Vladislav
Hello, I am doing research where we are trying to implement TCP through gnuradio and USRP B210s. We want to use OFDM, so I have modified the ofdm_rx and ofdm_tx examples into one large graph with a TUN/TAP interface and USRP source/sink. Currently, I have the graph running on two separate Ubuntu 16

Re: [Discuss-gnuradio] installing a python package without elevated privileges

2017-03-27 Thread U L
This is a problem I have faced as well. I have a number of projects at various levels of modification of GR and various 3rd party python packages being supported. I find having virtualenvs to be very useful in keeping python package versions, GR mods, and my own modules in agreement. I've been t

[Discuss-gnuradio] uhd_packet_rx example freezes - Header/Payload Demux not releasing payload

2017-03-27 Thread Justin Hamilton
Hi everyone, I'm trying to develop a packet-based, single-carrier system (BPSK, QPSK, QAM) with FEC (CC) similar to that implemented in packet_rx.grc and packet_tx.grc. I am using two Ettus B205mini-i as my USRP devices, connected for now, via a 50Ω, 30dB attenuator and SMA cable (antennas also at

Re: [Discuss-gnuradio] fail tests for qa_cpp_py_binding qa_cpp_py_binding_set qa_ctrlport_probes

2017-03-27 Thread li...@lazygranch.com
You can see opensuse Thrift here: https://software.opensuse.org/package/thrift If you poke around the page, you will see 0.9.3 is the most recent rev. So I'm not sure what else I can do. But if there is something else related, I can update it. Also if you have a file list, I can verify that the f

Re: [Discuss-gnuradio] IEEE 802.11 Module - Pilot Tones in OFDM symbol

2017-03-27 Thread Marcus Müller
Dear Annie, I'm sure you'll find the answer to that when you read through frame_equalizer_impl.cc and look for 4-tuples of vector indices that look like the indices of the pilot tone carriers in OFDM. Best regards, Marcus On 27.03.2017 19:15, Qurat-Ul-Ann Akbar wrote: > Hi, > > Are pilot tones

[Discuss-gnuradio] IEEE 802.11 Module - Pilot Tones in OFDM symbol

2017-03-27 Thread Qurat-Ul-Ann Akbar
Hi, Are pilot tones used at all for equalization in wifi_rx ? I do not see that being done in the WiFi frame equalizer block. Also even when I change the amplitude and phase of the pilots in Wifi_tx other than the default 1, the WiFi packets were still being decoded correctly. Is it because that t

Re: [Discuss-gnuradio] fail tests for qa_cpp_py_binding qa_cpp_py_binding_set qa_ctrlport_probes

2017-03-27 Thread Marcus Müller
Hi Lazygranch, well, good news is that it's really just ctrlport. If you don't care about that: it's not even going to crash anything at runtime, as far as I can tell. You just won't be able to use ctrlport. If you do care: So, ctrlport is our RPC framework, with which you can control GNU Radio

Re: [Discuss-gnuradio] Referencing USRP sink object

2017-03-27 Thread Marcus Müller
Hi Emanuel, you can technically do that, pass a python object (if you write your block in python) or a smart_ptr as a parameter to a method or the constructor of your block (in C++). However, that feels like it'd be wildly ugly in terms of "who owns what"; it might be the best way, still. If you

Re: [Discuss-gnuradio] real-time plotting in gnuradio

2017-03-27 Thread Marcus Müller
Hi Nikita, that would sound like you'd need to implement it yourself – and put a lot of thought into how you can make a display that manages to show a (potentially infinite) amount of data on a limited display; probably something like downsampling or only storing the min/max for periods in the sig

[Discuss-gnuradio] GNU Radio Releases 3.7.11 and 3.7.10.2

2017-03-27 Thread Johnathan Corgan
GNU Radio releases 3.7.11 and 3.7.10.2 are now available for download. Release 3.7.11 is the latest of the 3.7 API, with new features, and includes all bug fixes in release 3.7.10.2. Both releases and their detached signatures are available via the following links: https://gnuradio.org/releases/

Re: [Discuss-gnuradio] real-time plotting in gnuradio

2017-03-27 Thread Nikita Airee
Thanks Julian, I think this should do it for now. In fact, it is quite relevant to what I trying to do. Also Marcus what should I do if I don't want a "paper ticker" but utility which as you say "constantly rescales" the display? On Mon, Mar 27, 2017 at 5:29 PM, Julian Arnold wrote: > Hey, > >

[Discuss-gnuradio] Referencing USRP sink object

2017-03-27 Thread Emanuel.Staudinger
Hi all, Do you know if the following is possible in a flowgraph: 1. I have a USRP sink instantiated and configured in GRC 2. I have my own OOT block from which I want to get the current time of the USRP sink. Independent of the fact that the sink is streaming or bursting with/witho

Re: [Discuss-gnuradio] real-time plotting in gnuradio

2017-03-27 Thread Julian Arnold
Hey, if you are thinking of something like a "paper ticker" like Marcus mentioned, you could take a look at [1]. We had an application where we needed to have real time updates that roll in from right to left. This could probably be done in a more easy way using the existing QT Gui Time Sink but w

Re: [Discuss-gnuradio] [GSOC17 - Draft proposal] Implement SigMF functionality for GNU Radio

2017-03-27 Thread Kostis Triantafyllakis
On 03/25/2017 12:30 PM, Sebastian Müller wrote: Hi Kostis, Hello Sebastian, I wanted to add some of my thoughts to this. Hope I haven’t missed an answer so far in this extensive discussion. - Concerning the filtering of datafiles, I think there should be 2 ways to do this. The first one se

Re: [Discuss-gnuradio] real-time plotting in gnuradio

2017-03-27 Thread Marcus Müller
Hi Nikita, so, you'd be constantly rescaling the display, or are you more thinking of something like a "paper ticker" thing, where new signal "slowly" pushes out old signal? Best regards, Marcus On 27.03.2017 12:17, Nikita Airee wrote: > the GNURadio simulation. This means that the all values

[Discuss-gnuradio] real-time plotting in gnuradio

2017-03-27 Thread Nikita Airee
Hello everyone! I have an application where the end result is a numeric value that keeps changing with time as the variables change during runtime. I would like to plot these values on the time axis much like QT Time sink does for the entire duration of the GNURadio simulation. This means that th

[Discuss-gnuradio] gr-cdma doxygen build

2017-03-27 Thread Murray Thomson
Hi, I'm trying to build gr-cdma in Ubuntu 16.04 following the instructions in https://github.com/anastas/gr-cdma. I can build it with cmake -DENABLE_DOXYGEN=OFF "PATH TO YOUR gr-cdma TRUNK" But when I enable doxygen it fails. I have installed sudo apt install doxygen doxygen-doc doxygen-gui doxyg

Re: [Discuss-gnuradio] fast parallel filtering

2017-03-27 Thread Dirk Gorissen
Hi Andy, What can I say, this is amazing... I need to digest this a bit again and Im currently working on some hardware bits. Hope to get this flying in the next week or two. Will let you know how it goes. Cheers Dirk On 27 March 2017 at 01:49, Andy Walls wrote: > Hi Dirk: > > Since you asked a