Re: [Discuss-gnuradio] Noisy source block

2014-04-15 Thread Martin Braun
On 04/15/2014 04:46 AM, 猪猪头 wrote: > hi,guys > why the unit of amplitude in Noisy source block is volt? > how to explain this ? > thanks, > BZS Not sure what your question is. Signal amplitudes are usually in Volts, that's just the right physical unit. I assume you're asking because in the di

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Martin Braun
On 04/15/2014 06:14 AM, Francois Gervais wrote: > I'm trying to figure out the best way to print the decoded data > information of packets (received through gnuradio) to the user. File > outputs are not really user friendly so I'm thinking of using a message > queue out of my decoding block connect

[Discuss-gnuradio] Error while installing a new version of GNURadion on USRP e110

2014-04-15 Thread Abouda Yassine
Hi, I removed the old version of the GNURadio installed on the USRP e110,I followed instructions on the FAQ forum in order to install a new version of it.everything seemed all right at the beginning but suddenly an error came out of no where: [ 49%] Built target _filter_swig_swig_tag [ 49%] Build

Re: [Discuss-gnuradio] Error while installing a new version of GNURadion on USRP e110

2014-04-15 Thread Mike Jameson
Abouda, I've seen the "g++: Internal error: Killed (program cc1plus)" error before when I ran out of memory. Try creating more swap space and use "make -j1" to reduce the number of threads used for the compile. Mike -- Mike Jameson M0MIK BSc MIET Email: m...@scanoo.com Web: http://scanoo.com

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread ??????????????
hi ,Martin Braun well ,in my impression, the unit of is noisy is dB,so i feel fuzzy about the volt, thanks for your reply! -- Original -- From: "Martin Braun";; Date: Tue, Apr 15, 2014 04:35 PM To: "discuss-gnuradio"; Subject: Re: [Discuss-gnuradio] Best way

Re: [Discuss-gnuradio] Noisy source block

2014-04-15 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi 猪猪头, you've replied to the wrong thread; however: dB is *always* a relative measure. You can't output dB; it always has to be dB in relation to something. The parameter of the noise source is amplitude. Like Martin, if I *want* to stick a phy

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Tim
check out gr-pyqt - this might be roughly what you are looking for I've added some very simple python blocks which can send and receiver pdus with strings stored in pmt u8vectors and can be easily dropped into a Qt Gui for user interaction https://github.com/osh/gr-pyqt/commit/7b12b79bc029d483

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-15 Thread Nemanja Savic
Hi again, so, the exception appeared again. Just to remind: thread[thread-per-block[0]: ]: caught unrecognized exception I can't find what (65) means. This time complete block of code was encapsulated by try and except but nothing was caught. Here is my code: def handle_msg(self, msg):

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Francois Gervais
Ah so message queue and message passing interface are two different things in gnuradio? Might be why I was confused. So what I want to look at is this page right? http://gnuradio.org/doc/doxygen/page_msg_passing.html Got it I'll for the WX widgets, I'll stop using them. Is there an official QT ter

[Discuss-gnuradio] Issue while installing gr-ieee802.15.4

2014-04-15 Thread Ruecan
Hello GR, I was trying to install gr-ieee802.15.4 Before everything was ok then once I got this error at CMake: CMake Error at ~/gnuradio-3.7_install/lib64/cmake/gnuradio/GnuradioConfig.cmake:29 (list): list sub-command INSERT requires at least three arguments. Call Stack (most recent call fir

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-15 Thread Mike Jameson
The '(65)' looks to be the line number where the error occured. Notice that previously the line number was '(62)' which probably means that the error is coming from line 65 of one of the files you have been editing. Mike -- Mike Jameson M0MIK BSc MIET Email: m...@scanoo.com Web: http://scanoo.co

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Activecat
On Tue, Apr 15, 2014 at 4:35 PM, Martin Braun wrote: > On 04/15/2014 06:14 AM, Francois Gervais wrote: > > I'm trying to figure out the best way to print the decoded data > > information of packets (received through gnuradio) to the user. File > > outputs are not really user friendly so I'm thinki

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-15 Thread Nemanja Savic
It's commented line inside the function called only once inside constructor, and never again :) On Tue, Apr 15, 2014 at 4:21 PM, Mike Jameson wrote: > The '(65)' looks to be the line number where the error occured. Notice > that previously the line number was '(62)' which probably means that t

Re: [Discuss-gnuradio] catching unrecognized exception

2014-04-15 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Nemanja, Simple explanation: You haven't fixed your syntax for the first except clause. Going back to my other post, it should read "except mdb.Error as e:", not "except mdb.Error, e". Because you didn't do that, "e" is undefined in your except cl

[Discuss-gnuradio] Question about Lte receiver in gnuradio‏

2014-04-15 Thread amado gutierrez
My names is Amado. I am student of master of science in the Mexico City. My investigation is about the physical layer of LTE. I revised the work of lte in gnuradio wich is excellent. I have a question about IQ baseband samples of input. ¿What type of samples use? ¿How obtain the samples of inpu

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Marcus Müller
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 QT, like Martin was saying :) On 15.04.2014 16:27, Activecat wrote: > On Tue, Apr 15, 2014 at 4:35 PM, Martin Braun > wrote: > >> On 04/15/2014 06:14 AM, Francois Gervais wrote: >>> I'm trying to figure out the best way to print the decoded >>> data

Re: [Discuss-gnuradio] Python code execution in GRC

2014-04-15 Thread Mike Jameson
Ali, FYI, I've CC'd the discuss-gnuradio@gnu.org mailing list to encourage feedback. I'd recommend starting by creating a basic flowgraph in GRC (gnuradio-companion), run it and then rename the created python file. The rename must be done before editing it otherwise it will get overwritten. You

Re: [Discuss-gnuradio] Question about Lte receiver in gnuradio‏

2014-04-15 Thread Johannes Demel
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi Amado, > ¿What type of samples use? Mostly people use complex baseband samples. In C++ code in GR their data type is gr_complex which is a wrapper for std::complex. > ¿How obtain the samples of input used in the test of LTE? To get those samples y

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Martin Braun
On 04/15/2014 03:55 PM, Francois Gervais wrote: > Ah so message queue and message passing interface are two different > things in gnuradio? Might be why I was confused. So what I want to look > at is this page right? > http://gnuradio.org/doc/doxygen/page_msg_passing.html Right. > Got it I'll fo

[Discuss-gnuradio] WX Widgets (Was: Best way to output decoded data to user)

2014-04-15 Thread Martin Braun
On 04/15/2014 04:32 PM, Marcus Müller wrote: > QT, like Martin was saying :) Right. We've discussed this on several dev calls, not sure if here on the list. In the far future, we want to focus on QT (for less dependencies etc.). We (or rather, Tom for the most part) have been porting all features

Re: [Discuss-gnuradio] WX Widgets (Was: Best way to output decoded data to user)

2014-04-15 Thread Marcus D. Leech
On 04/15/2014 12:08 PM, Martin Braun wrote: On 04/15/2014 04:32 PM, Marcus Müller wrote: QT, like Martin was saying :) Right. We've discussed this on several dev calls, not sure if here on the list. In the far future, we want to focus on QT (for less dependencies etc.). We (or rather, Tom for t

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Tom Rondeau
On Tue, Apr 15, 2014 at 12:03 PM, Martin Braun wrote: > On 04/15/2014 03:55 PM, Francois Gervais wrote: > > Ah so message queue and message passing interface are two different > > things in gnuradio? Might be why I was confused. So what I want to look > > at is this page right? > > http://gnuradio

Re: [Discuss-gnuradio] WX Widgets (Was: Best way to output decoded data to user)

2014-04-15 Thread Tom Rondeau
On Tue, Apr 15, 2014 at 12:11 PM, Marcus D. Leech wrote: > On 04/15/2014 12:08 PM, Martin Braun wrote: > >> On 04/15/2014 04:32 PM, Marcus Müller wrote: >> >>> QT, like Martin was saying :) >>> >> Right. We've discussed this on several dev calls, not sure if here on >> the list. >> In the far fut

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Francois Gervais
Well I'm thinking if I'm about to print text to user it's better if it's part of the GUI than having some of the information on the GUI and some on the underneath console. That way it looks more like a self contained app to me. On Tue, Apr 15, 2014 at 12:13 PM, Tom Rondeau wrote: > On Tue, Apr

Re: [Discuss-gnuradio] WX Widgets (Was: Best way to output decoded data to user)

2014-04-15 Thread Martin Braun
On 04/15/2014 06:14 PM, Tom Rondeau wrote: > If you thought the 3.6 to 3.7 transition was hard for people, doing > a transition where the WX widgets are no longer available will be > even harder, by a significant amount. > > -- > Marcus Leech > Principal Investigator >

Re: [Discuss-gnuradio] WX Widgets (Was: Best way to output decoded data to user)

2014-04-15 Thread Michael Ossmann
On Tue, Apr 15, 2014 at 06:08:45PM +0200, Martin Braun wrote: > > But don't worry, WX widgets will be around for a while, but we won't > be adding functionality, and will be officially marking them > deprecated them (most likely) in 3.8. *Maybe* they will go away in > 3.9, but that's a long way ahe

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Martin Braun
On 04/15/2014 06:18 PM, Francois Gervais wrote: > Well I'm thinking if I'm about to print text to user it's better if it's > part of the GUI than having some of the information on the GUI and some > on the underneath console. That way it looks more like a self contained > app to me. And you're rig

Re: [Discuss-gnuradio] gr-drm for GNU Radio 3.7 available

2014-04-15 Thread Jordan Johnson
Odd quirk I've noticed: JACK audio will not work, however WAV files will. Tried streaming in WAV files from FFMPEG, but the WAV source wouldn't read the shared pipe. Otherwise, ti works great. If you're curious as to what I am doing, you can see my terrible flowgraph here: http://sourceforge.net/pr

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Tom Rondeau
On Tue, Apr 15, 2014 at 12:21 PM, Martin Braun wrote: > On 04/15/2014 06:18 PM, Francois Gervais wrote: > > Well I'm thinking if I'm about to print text to user it's better if it's > > part of the GUI than having some of the information on the GUI and some > > on the underneath console. That way i

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Francois Gervais
In this scenario would the message passing interface be the best input type? On Tue, Apr 15, 2014 at 12:50 PM, Tom Rondeau wrote: > On Tue, Apr 15, 2014 at 12:21 PM, Martin Braun wrote: > >> On 04/15/2014 06:18 PM, Francois Gervais wrote: >> > Well I'm thinking if I'm about to print text to use

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread madengr
Martin Braun-2 wrote > Generally: Don't use a message queue. Also, I recommend not adding any > WX widgets, unless you hate QT, because we're trying to move away from > them. > > The message passing interface might be a better choice, but the idea in > general is very good. > > Martin Is there a

[Discuss-gnuradio] pad source&&Wifi physical layer input/output

2014-04-15 Thread zhangwen
Hi,GR I run Bloessl's "802.11 OFDM physical layer" GRC program. The input and output block are "Pad source" block. What is the funcion of "Pad source",how to use "Pad source"? If I want to use "File source" block to be the data input and output,how can I connect "File source" with the system?

Re: [Discuss-gnuradio] pad source&&Wifi physical layer input/output

2014-04-15 Thread zhangwen
Thank you nathan! I have found another flow graph to implement the whole process of Wifi which contains hier block. But I want to insert my own signal process block in pyhsical hier flow graph. Is there any way to use pyhsical hier flow graph only? Best, Regards Owen Zhang > -原始邮件- > 发

[Discuss-gnuradio] Cheetah - Not Found error during GNU Radio installation on Fedora 20.

2014-04-15 Thread Ravi Sharan
I am trying to install GNU Radio on Fedora 20. I get Cheetah not found error, even when the installed cheetah version is more than what is required (currently cheetah version is 2.4.4 on my PC). Initially I tried installing with PyBOMBS and got this error. The building stops even with build-gnuradi

Re: [Discuss-gnuradio] pad source&&Wifi physical layer input/output

2014-04-15 Thread Bastian Bloessl
On 2014-04-16 05:30, zhangwen wrote: Thank you nathan! I have found another flow graph to implement the whole process of Wifi which contains hier block. But I want to insert my own signal process block in pyhsical hier flow graph. Is there any way to use pyhsical hier flow graph only? The hi

Re: [Discuss-gnuradio] Best way to output decoded data to user

2014-04-15 Thread Volker Schroer
On github https://github.com/dl1ksv/gr-display there is an qt based simple oot module gr-display that can be used to display character streams either in an text window or as png picture. I use this to display ax.25 packets images from weather satellites. -- Volker Am 15.04.2014 23:36, schrieb