[Discuss-gnuradio] Python Low-pass filters (was: (no subject))

2015-02-18 Thread Marcus Müller
Hello Vishwanatha, the filters in GNU Radio are all written in C++, and the mathematical core functionality is implemented in several versions for different machines in C with a mixture of SIMD intrinsics (read: close-to-assembler instructions), because filtering is often a very computationally

Re: [Discuss-gnuradio] GNU Radio on Zynq - trouble getting the user_peripheral kernel module to work

2015-02-18 Thread Philip Balister
On 02/16/2015 10:56 AM, Sarunas Kalade wrote: Hello lovely people, I'm trying to recreate the FIR filter example based on the Zynq GNU Radio wiki: http://gnuradio.org/redmine/projects/gnuradio/wiki/Zynq.http://gnuradio.org/redmine/projects/gnuradio/wiki/Zynq I've downloaded the

[Discuss-gnuradio] Start Flowgraph Signal Processing at Runtime

2015-02-18 Thread Richard Bell
Hi all, I want autostart=off in the options block so I can start a flowgraphs GUI environement, allow the users to configure settings and then start the flowgraph signal processing. For example, let the user choose whether the receiver should decode BPSK or QPSK at runtime. My question is, how

Re: [Discuss-gnuradio] GNU Radio on Zynq - trouble getting the user_peripheral kernel module to work

2015-02-18 Thread Philip Balister
On 02/18/2015 12:50 PM, Sarunas Kalade wrote: Hey Philip, Thanks for the reply. I'm fairly sure I was using the same repo init command as shown in the wiki: repo init -u git://github.com/jpendlum/zynq-gnuradio-manifest.git repo sync

Re: [Discuss-gnuradio] Newbie problem

2015-02-18 Thread Mike Markowski
Just a followup to my own note. I did ldd /usr/lib/libgnuradio-qtgui-3.7.6.1.so.0.0.0 and no library comes up as missing. Thanks, Mike Markowski On 02/18/2015 04:13 PM, Mike Markowski wrote: I was excited to successfully try an rtl-sdr GRC demo/tutorial and decided to start following the

[Discuss-gnuradio] Automatically Restart UHD/gr-uhd blocks

2015-02-18 Thread John Malsbury
I've recently received a request to have GNU Radio flowgraphs recover gracefully in the event of power glitches, or transient Ethernet anomalies that are severe enough to break the dataflow. ie. the event should be noted, but there should be a way to re-init the USRP for continued operation with

Re: [Discuss-gnuradio] GNU Radio on Zynq - trouble getting the user_peripheral kernel module to work

2015-02-18 Thread Sarunas Kalade
Hey Philip, Thanks for the reply. I'm fairly sure I was using the same repo init command as shown in the wiki: repo init -u git://github.com/jpendlum/zynq-gnuradio-manifest.git repo sync I tried the same thing just now on a relatively fresh Ubuntu (14.04) install on my laptop, which

[Discuss-gnuradio] Newbie problem

2015-02-18 Thread Mike Markowski
I was excited to successfully try an rtl-sdr GRC demo/tutorial and decided to start following the gnuradio tutorials to better learn the program. I quickly ran into trouble, so am sure I've done something stupid but can't figure out what! Running through tutorial

Re: [Discuss-gnuradio] eye diagram error

2015-02-18 Thread Mostafa Alizadeh
Hi Marcus, I'm using GNURadio 3.7.5.1. Under [Graphical Sinks], I have Baudline Sink , Fast AutoCorrelation Sink and also Eye diagram. It doesn't work! I didn't get your hint of creating an eye diagram :( Best, Mostafa On Tue, Feb 17, 2015 at 9:39 PM, Marcus Müller marcus.muel...@ettus.com

Re: [Discuss-gnuradio] QPSK Receiver and Processing Power

2015-02-18 Thread Ed Criscuolo
On 2/18/15, 6:45 PM, Richard Bell wrote: Hello all, I am testing a QPSK Tx/Rx I made in grc across two USRP N210's. I can demodulate and decode the data fine at the receiver to produce the bits I transmitted. The problem is, when watching the frequency sink at the output of the USRP source

Re: [Discuss-gnuradio] Calling usrp_source block function from other block

2015-02-18 Thread Anderson, Douglas J.
Thanks Tom, that gives me a good starting point. -Doug From: trond...@trondeau.com [trond...@trondeau.com] on behalf of Tom Rondeau [t...@trondeau.com] Sent: Tuesday, February 17, 2015 1:47 PM To: Anderson, Douglas J. Cc: GNURadio Discussion List Subject: Re:

[Discuss-gnuradio] Corgan Labs Expands Offering with Public and Advanced Courses

2015-02-18 Thread Johnathan Corgan
View this email in your browser http://us10.campaign-archive1.com/?u=ef1aa9b809823d269b24031b7id=4bd4a3853be= http://corganlabs.com Corgan Labs, a leading provider of SDR training and consulting solutions, and a preferred partner of Ettus Research, is proud to announce expanded course

[Discuss-gnuradio] pybombs

2015-02-18 Thread FredomFighter099 .
Hello list Has anyone else has experienced any problems with pybombs: failing to load recipes This is happening when I try to install through ./app_store.py I am getting this output I have tried several prefixes all with the same result. test@test-virtual-machine:~$ cd pybombs

Re: [Discuss-gnuradio] (no subject)

2015-02-18 Thread Martin Braun
On 02/18/2015 07:53 AM, Vishwanatha H G wrote: sir,...I needed the py code of low pass filter. please any one mail me Also, beside what Marcus said, I recommend reading this page to get the most out of this mailing list: http://gnuradio.org/redmine/projects/gnuradio/wiki/ReportingErrors M

Re: [Discuss-gnuradio] Automatically Restart UHD/gr-uhd blocks

2015-02-18 Thread Dan CaJacob
I worked around a problem like this by installing an in-line power relay in my remote nodes. Not ideal, but in some rare situations, even forcing the FPGA to reload was not successful. Sometimes a power cycle was the only hope. That said, I've heard some lovely things about reset commands

Re: [Discuss-gnuradio] Automatically Restart UHD/gr-uhd blocks

2015-02-18 Thread John Malsbury
Dan, I think you were working a different, USB-related issues. My task is a bit different. The goal is not to power cycle the USRPs - its to re-initialize and resume after and power cycle, without intervention from an external executive or operator. (ie. by some task that monitors for a stop

Re: [Discuss-gnuradio] Newbie problem

2015-02-18 Thread Murray Thomson
Hey Mike, If you suspect that you have problems with libraries, maybe you want to run the install script with the prereqs option to install all the dependencies. wget http://www.sbrac.org/files/build-gnuradio chmod a+x ./build-gnuradio ./build-gnuradio prereqs Thanks, Murray On 18 February

[Discuss-gnuradio] QPSK Receiver and Processing Power

2015-02-18 Thread Richard Bell
Hello all, I am testing a QPSK Tx/Rx I made in grc across two USRP N210's. I can demodulate and decode the data fine at the receiver to produce the bits I transmitted. The problem is, when watching the frequency sink at the output of the USRP source (picture attached), there is typically 4

Re: [Discuss-gnuradio] Automatically Restart UHD/gr-uhd blocks

2015-02-18 Thread Marcus D. Leech
On 02/18/2015 06:14 PM, John Malsbury wrote: Dan, I think you were working a different, USB-related issues. My task is a bit different. The goal is not to power cycle the USRPs - its to re-initialize and resume after and power cycle, without intervention from an external executive or

Re: [Discuss-gnuradio] Newbie problem

2015-02-18 Thread Rick Farina
Mike, I am the maintainer of Gnuradio in gentoo. Please open a gentoo bug at https://bugs.gentoo.org with emerge --info as well as the full build.log for gnuradio (you will probably need to xz compress it) attached to the bug. We can help you fix the problem and get it fixed for all users. For