Re: [Discuss-gnuradio] Spectrum sensing using gnuradio + hackrf one

2019-03-12 Thread Kyeong Su Shin
Hello faisal: You can either just use "File Sink" blocks to dump the raw data into files and convert them to human-readable format using MATLAB/Octave ( https://github.com/gnuradio/gnuradio/tree/master/gr-utils/octave ) later, or write your own blocks (an embedded Python Block should be suffici

Re: [Discuss-gnuradio] Can I use PyBOMBS with a macport installed GNU Radio?

2019-03-12 Thread George Rykowski
Michael, Thank you. Everything works as expected! George From: Discuss-gnuradio on behalf of Michael Dickens Date: Tuesday, March 12, 2019 at 2:06 PM To: GNURadio Discussion List Subject: Re: [Discuss-gnuradio] Can I use PyBOMBS with a macport installed GNU Radio? gr-iio is in

Re: [Discuss-gnuradio] qt_gui_time

2019-03-12 Thread Joe Martin
Very good, Marcus. Thanks much for the additional info. I’ll see if I can implement it in an actual GRC flowchart program. Joe > On Mar 12, 2019, at 5:25 PM, Marcus D. Leech wrote: > > On 03/12/2019 07:00 PM, Wayne Hilliard wrote: >> Sure it's not much but it proves the concept. >> >> One t

Re: [Discuss-gnuradio] qt_gui_time

2019-03-12 Thread Joe Martin
Thanks, Wayne! > On Mar 12, 2019, at 5:00 PM, Wayne Hilliard wrote: > > Sure it's not much but it proves the concept. > > One thing I think I'm going to try is to instead of using a vector probe I > want to use a single probe then rotate the vector to the left sand > concatenate the new value

Re: [Discuss-gnuradio] qt_gui_time

2019-03-12 Thread Marcus D. Leech
On 03/12/2019 07:00 PM, Wayne Hilliard wrote: Sure it's not much but it proves the concept. One thing I think I'm going to try is to instead of using a vector probe I want to use a single probe then rotate the vector to the left sand concatenate the new value onto the end. But this will get yo

Re: [Discuss-gnuradio] qt_gui_time

2019-03-12 Thread Wayne Hilliard
Sure it's not much but it proves the concept. One thing I think I'm going to try is to instead of using a vector probe I want to use a single probe then rotate the vector to the left sand concatenate the new value onto the end. But this will get you going. On Tue, Mar 12, 2019 at 10:38 PM Joe M

Re: [Discuss-gnuradio] gr_modtool for Windows?

2019-03-12 Thread CEL
Hi Aaron, must admit, I haven't tried it. Technically, modtool depends on very little more than Python to do its thing. But then again, its thing is using sane compiler environments to build stuff (you can't use any of the Linux or Mac package managers as sources, obviously). And while that probab

Re: [Discuss-gnuradio] qt_gui_time

2019-03-12 Thread Joe Martin
Congratulations Wayne. I’ve been trying to implement it but I am having difficulty getting it to work. Would you mind sharing your test GRC program with me so I can see how you accomplished it please? I would much appreciate it, Joe > On Mar 12, 2019, at 4:29 AM, Wayne Hilliard wrote: > >

[Discuss-gnuradio] Blank display in control port performance monitor.

2019-03-12 Thread Grecia Montoya
Hi, I'm having problems with the Performance monitor, the graph output is blank. The control port monitor is working fine. The terminal output is the following: ControlPort Monitor running. ControlPort Monitor running. gr::log :INFO: audio source - Audio sink arch: alsa gr::log :INFO: controlpor

[Discuss-gnuradio] Spectrum sensing using gnuradio + hackrf one

2019-03-12 Thread faisal
hello everyone can anyone help me i want to save data which comes from average block and threshold block. how can we save a date in text file or in an excel file? i attched the grc.file please have a look at it. gt.grc Description: Binary data _

Re: [Discuss-gnuradio] How NOT to write a GRC block?

2019-03-12 Thread Chris Kuethe
1) It was not clear which source file you are referring to. I assume it's "pam_timing.grc" based on a search of "how not to write a block"... but I don't know exactly what file you're reading, nor exactly which file you're missing. 2) based on this assumption, I searched github for pam_timing.grc a

[Discuss-gnuradio] gr_modtool for Windows?

2019-03-12 Thread Chesir, Aaron M.
Folks, Is there a way to install gr_modtool for Windows (10) ? Thanks in advance, Aaron Aaron Chesir The MITRE Corporation 200 Valley Road Mount Arlington, NJ 07856 w: (973) 810-0612 c: (908) 380-5798 ache...@mitre.org "Ignorance is Bliss, but Knowledge is Power" ___

Re: [Discuss-gnuradio] Can I use PyBOMBS with a macport installed GNU Radio?

2019-03-12 Thread Michael Dickens
gr-iio is in MacPorts ... and if you need something related to GR ping me & we can work together to make it happen. - MLD On Tue, Mar 12, 2019, at 3:05 PM, George Rykowski wrote: > Hello, > > I have a need to install the FMComms2/3/4 source block in order to access my > Zedboard/AD9361 SDR fr

[Discuss-gnuradio] Can I use PyBOMBS with a macport installed GNU Radio?

2019-03-12 Thread George Rykowski
Hello, I have a need to install the FMComms2/3/4 source block in order to access my Zedboard/AD9361 SDR from my Macbook Pro. I see the gr-iio package on CGRAN. Can I install PyBOMBS, then install gr-iio, into my GNU radio that was built using macports? TIA, George __

[Discuss-gnuradio] How NOT to write a GRC block?

2019-03-12 Thread Chesir, Aaron M.
Folks, As part of my GNUradio/GRC training, I am reviewing Tom Rondeau's August 24, 2015 presentation "How Not To Write A Block". I would like to go through its paces to learn how to write good blocks. Unfortunately, I do not see any way of accessing the original GRC source file which he uses a

Re: [Discuss-gnuradio] Symbol to chip Mapping

2019-03-12 Thread Achilleas Anastasopoulos
Not quite: You set the "dimension" of the c2s block to 32. No need to set any variable to 16... Then you have to input to the c2s block an array of size 16 by 32 (or simply 16x32=512). Take a look at some examples of how c2s block is used in gr-trellis. Achilleas On Mon, Mar 11, 2019 at 11:5

Re: [Discuss-gnuradio] qt_gui_time

2019-03-12 Thread Wayne Hilliard
Thanks everyone for the replies. Huge help. Kudos to Marcus Leech for the suggestion. Seems to work wonderfully. At least in my test GRC file. Now to implement into my own program. Cheers! Wayne Hilliard On Sun, Mar 10, 2019 at 10:26 PM Marcus Müller wrote: > Hi Wayne, Hi Joe, > > you're right