Re: [Discuss-gnuradio] Problems with IEEE802-11 Blocks?

2017-07-11 Thread Bastian Bloessl
Hi, > On 11. Jul 2017, at 02:04, Taylor Eisman wrote: > > Well, I've been trying to place Packet Pad 2 around the WiFi Phy Hier example > setup to get good results and still have not achieved any decent results. > Three things are possible, given specific placements of the Packet Pad 2 > bloc

Re: [Discuss-gnuradio] How to process file sink from UHD Source USRP

2017-07-11 Thread Marcus Müller
You're just saving samples from the USRP – there's no info like "frequency" or "time" attached to those. It's just a very long row of complex numbers. Best regards, Marcus On 07/11/2017 01:23 AM, Sinta Novtafiani wrote: > Hello Marcus, > > Thankyou for your advice. I just want to know data actu

[Discuss-gnuradio] cmake warning with -DENABLE_PERFORMANCE_COUNTERS-On (gr-ieee80211)

2017-07-11 Thread sumit kumar
Hi, I have to do timing analysis of individual blocks of gr-ieee80211 I have built my gnuradio with the following ~/rfnoc/src/gnuradio/build$ cmake -DCMAKE_INSTALL_PREFIX=/home/john/rfnoc -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_PERFORMANCE_COUNTERS=On -Werror ../ build was successful. And ag

Re: [Discuss-gnuradio] cmake warning with -DENABLE_PERFORMANCE_COUNTERS-On (gr-ieee80211)

2017-07-11 Thread Marcus Müller
Hi Sumit, > Does only GNU Radio need to be built with the flag > -DENABLE_PERFORMANCE_COUNTERS or the OOT projects too ? exactly, only GNU Radio needs to be built with that flag – functionally, it's something that is done in the scheduler, not in the blocks the scheduler runs. Best regards, Mar

[Discuss-gnuradio] Chunks to symbols with 16 QAM modulation

2017-07-11 Thread Rafik ZITOUNI
Dear gnuradio users, I am trying to use digital_chunks_to_symbols to reconstruct block by block my QAM modulator. Please could you give me an idea how to set the constellation points in Symbol Table field? I can do it with BPSK, QPSK and 8PSK using constellation[0].points, constellation[1].point

Re: [Discuss-gnuradio] cmake warning with -DENABLE_PERFORMANCE_COUNTERS-On (gr-ieee80211)

2017-07-11 Thread sumit kumar
Ok I understood. Now I have a following question. I did a grep in the build directory grep -r 'work_time_total' . And I found that indeed its there as said on https://gnuradio.org/doc/doxyg en/page_perf_counters.html It seems a lot of task is already been done ! :) Then I opened gnuradio-runti

Re: [Discuss-gnuradio] cmake warning with -DENABLE_PERFORMANCE_COUNTERS-On (gr-ieee80211)

2017-07-11 Thread Marcus Müller
So, the performance counters need to be enabled in your GNU Radio preferences; I don't think editing the configuration input template helps, unless you build & reinstall (don't do that). Instead, run `gnuradio-config-info --prefs` first and check whether PerfCounters are enabled. To query these co

[Discuss-gnuradio] gr-scan giving false alarms

2017-07-11 Thread GNUBeginner
Hello Everyone, Could anyone please tell me why gr-scan gives three different frequency finding results (2410 MHz, 2412 MHz, 2414 MHz) when I inject only 2412 MHz signal with -30 dBm power level? Thanks -- View this message in context: http://gnuradio.4.n7.nabble.com/gr-scan-giving-false-alar

[Discuss-gnuradio] Daemonizing a flowgraph

2017-07-11 Thread devin kelly
Hello, I have a flowgraph that I made with GRC and modified. All I want to do with the flowgraph is make it run as a daemon. I understand that if there are overflows or underflows I'll miss them, that's OK. I added some basic python code to daemonize my flowgraph: # Fork once

Re: [Discuss-gnuradio] Decoding 2FSK Compensating for carrier jitter/skewing (CFO)

2017-07-11 Thread Cinaed Simson
Okay, I definitely see the signals at +- 1kHz. And I forgot to mention one other problem. If I look at the raw data in a frequency sink it's almost a straight line lying on the frequency axis. I had to adjust the scaling to +-0.05 to see the symbols. Is this to be expected? It seems odd that a

Re: [Discuss-gnuradio] cmake warning with -DENABLE_PERFORMANCE_COUNTERS-On (gr-ieee80211)

2017-07-11 Thread sumit kumar
Ok, I fixed the apache issue and control port seems to be running on the example provided in share/gnuradio/examples/ctrlport polyphase example However when I drag and dropped ctrlport in wifi_transceiver.grc , I see the following ControlPort Monitor running. gr::log :INFO: controlport - Apache T

Re: [Discuss-gnuradio] Chunks to symbols with 16 QAM modulation

2017-07-11 Thread Cinaed Simson
On 07/11/2017 05:13 AM, Rafik ZITOUNI wrote: > Dear gnuradio users, > > I am trying to use digital_chunks_to_symbols to reconstruct block by > block my QAM modulator. > > Please could you give me an idea how to set the constellation points in > Symbol Table field? I can do it with BPSK, QPSK a

Re: [Discuss-gnuradio] Decoding 2FSK Compensating for carrier jitter/skewing (CFO)

2017-07-11 Thread Cinaed Simson
On 07/11/2017 03:56 PM, Cinaed Simson wrote: Opps. > > If I look at the raw data in a frequency sink it's almost a straight > line lying on the frequency axis. I meant time sink If I look at the raw data in a TIME sink it's almost a straight line lying on the TIME axis. > > I had to adjust

[Discuss-gnuradio] SSH using gr-ieee 802.11 transceiver : (the youtube demo)

2017-07-11 Thread sumit kumar
Hello, I was trying to understand gr-ieee 802.11 wifi_transceiver.grc I see the youtube video https://www.youtube.com/watch?v=tAVgsJLM-sc I believe a single gr-ieee 802.11 wifi_transceiver.grc is running on a laptop with usrp and communicating with a WiFi card (ath5k driver) of another laptop <*I

Re: [Discuss-gnuradio] cmake warning with -DENABLE_PERFORMANCE_COUNTERS-On (gr-ieee80211)

2017-07-11 Thread Bastian Bloessl
Hi, On 07/12/2017 01:19 AM, sumit kumar wrote: However when I drag and dropped ctrlport in wifi_transceiver.grc , I see the following ControlPort Monitor running. gr::log :INFO: controlport - Apache Thrift: -h john-Precision-5510 -p 39251 Omonitor::endpoints() = -h john-Precision-5510 -p 39251

Re: [Discuss-gnuradio] SSH using gr-ieee 802.11 transceiver : (the youtube demo)

2017-07-11 Thread Bastian Bloessl
Hi, On 07/12/2017 01:37 AM, sumit kumar wrote: Hello, I was trying to understand gr-ieee 802.11 wifi_transceiver.grc I see the youtube video https://www.youtube.com/watch?v=tAVgsJLM-sc I believe a single gr-ieee 802.11 wifi_transceiver.grc is running on a laptop with usrp and communicating wi

Re: [Discuss-gnuradio] SSH using gr-ieee 802.11 transceiver : (the youtube demo)

2017-07-11 Thread sumit kumar
On 12 July 2017 at 07:51, Bastian Bloessl wrote: > Hi, > > On 07/12/2017 01:37 AM, sumit kumar wrote: > >> Hello, >> >> I was trying to understand gr-ieee 802.11 wifi_transceiver.grc >> I see the youtube video >> https://www.youtube.com/watch?v=tAVgsJLM-sc >> >> I believe a single gr-ieee 802.11