Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-08-31 Thread Moritz Fischer
: Moritz Fischer [mailto:moritz.fisc...@ettus.com] > Inviato: mercoledì 5 agosto 2015 23:56 > A: Crozzoli Maurizio > Cc: discuss-gnuradio@gnu.org > Oggetto: Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310 > > Maurizio, > > On Wed, Aug 5, 2015 at 7:49 AM, Maurizio Croz

Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-08-05 Thread Maurizio Crozzoli
Hi Martin or others who can support me, I have a problem which is similar as Frank's: I have an E310 and I want to receive a and external trigger on a pin which starts an acquisition process of a burst of samples from the radio source. Stated that I have to remove the box around the E310 to have

Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-08-05 Thread Moritz Fischer
Maurizio, On Wed, Aug 5, 2015 at 7:49 AM, Maurizio Crozzoli maurizio.crozz...@telecomitalia.it wrote: Hi Martin or others who can support me, I have a problem which is similar as Frank's: I have an E310 and I want to receive a and external trigger on a pin which starts an acquisition process

Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-06-02 Thread Falessan
Hi Martin, Thanks for the response. It looks like we'll have to go the C++ route then. Thanks for your assistance. Best Regards, Frank From: Martin Braun-2 [via GnuRadio] [mailto:ml-node+s4n53983...@n7.nabble.com] Sent: Monday, June 01, 2015 7:50 PM To: Falessan Subject: Re: Front

Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-06-02 Thread Martin Braun
On 02.06.2015 06:42, Falessan wrote: Hi Martin, Thanks for the response. It looks like we’ll have to go the C++ route then. Thanks for your assistance. Happy to help, if you run into more issues, just ask. As I mentioned, I recommend reading the gpio example in UHD for more help. Cheers,

[Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-06-01 Thread Falessan
Hi, I would like to command the Front Panel GPIO pins for use as a trigger signal to another piece of equipment under gnuradio and python (I'm not a C++ programmer). I've been trying unsuccessfully to use the UHD multi_usrp get_gpio_banks and the set_gpio_attr commands to control the I/O pins. I

Re: [Discuss-gnuradio] Front Panel GPIO on Ettus X310

2015-06-01 Thread Martin Braun
Hey Frank, multi_usrp is exactly what the GNU Radio blocks use under the hood. However, multi_usrp is *not* SWIGged -- which means you can't access multi_usrp from Python. I believe that's what's triggering your error message. get_device() can only be called on your USRP blocks using C++. Now,