Re: [Discuss-gnuradio] PyGTKDeprecationWarning

2019-09-24 Thread Barry Duggan
Hi Michael, Looking at the subject line in my Inbox, it just struck me as strange: the warning is for PyGTK, and I thought we were using PyQt5. Is that part of the problem? --- Barry Duggan On 2019-09-24 14:53, Michael Dickens wrote: Sounds good, Barry. I'll check out that issue once I see

[Discuss-gnuradio] Using Qt5 widgets in an Embedded Python block

2019-09-24 Thread Barry Duggan
Hi, My flowgraph has an Embedded Python block feeding a Throttle feeding a Text sink (https://github.com/dl1ksv/gr-display). In my Embedded Python block I have a QLineEdit widget and a QTextEdit widget. The user input is fed to the output port. My problem is that I don't know how to tie the

[Discuss-gnuradio] Sending Messages over UDP

2019-09-24 Thread Vladimir Marinov
Hi, I am trying to send some simple ASCII based messages to a GNU Radio flowgraph via UDP. I want to be able to send a packet over UDP whose payload is for example "Hello World" and on the GNU Radio side receive this and print it in a Message Edit Box... Can someone guide me on how this might be

Re: [Discuss-gnuradio] problem with tensorflow in gr-inspector

2019-09-24 Thread Sebastian Müller
Hi, gr-inspector requires Tensorflow 0.12, other versions’ compatibility can’t be guaranteed. That being said, please note that there are plans to update gr-inspector to all the fancy new dependencies available [1]. [1] https://github.com/gnuradio/gr-inspector/issues/31 Best, Sebastian Müller g

Re: [Discuss-gnuradio] PyGTKDeprecationWarning

2019-09-24 Thread Michael Dickens
Sounds good, Barry. I'll check out that issue once I see it come through & see if I can add anything useful to it. - MLD On Tue, Sep 24, 2019 at 2:20 PM Barry Duggan wrote: > Hi Michael, > > I'm not familiar enough with that area to work on it, so I submitted > issue "PyGTKDeprecationWarning #28

Re: [Discuss-gnuradio] PyGTKDeprecationWarning

2019-09-24 Thread Barry Duggan
Hi Michael, I'm not familiar enough with that area to work on it, so I submitted issue "PyGTKDeprecationWarning #2813" --- Barry Duggan On 2019-09-24 10:09, Michael Dickens wrote: Hi Barry - Short answer: probably yes, should be fixed. Longer answer: The likelihood and difficulty of fixing

Re: [Discuss-gnuradio] PyGTKDeprecationWarning

2019-09-24 Thread Michael Dickens
Hi Barry - Short answer: probably yes, should be fixed. Longer answer: The likelihood and difficulty of fixing deprecated API depends mostly on whether we can cleanly switch to the new API, or if we have to add in some "if" version checking logic to use the old API or new API. If we can cleanly do