Re: [Discuss-gnuradio] Removed TCP source block

2019-03-29 Thread Andriy Gelman
On Thu, 28. Mar 20:24, Ron Economos wrote: > It's still around. It's just been deprecated. Look in the Deprecated > category in GNU Radio Companion. > > Ron > > On 3/28/19 20:01, Andriy Gelman wrote: > > Hi, > > > > It looks that the TCP source blo

[Discuss-gnuradio] Removed TCP source block

2019-03-28 Thread Andriy Gelman
Hi, It looks that the TCP source block was removed in commit fd1148e8c. Anyone recommend a replacement? Thanks, Andriy ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

[Discuss-gnuradio] gr-zeromq: Pub proxy block

2018-12-29 Thread Andriy Gelman
Hello, I've been doing some work on the gr-zeromq module. I've implemented a block which allows multiple publishers to connect to a proxy block (i.e. a broker). This avoids each publisher having to bind to a separate port. Subscribers connect to the proxy block to receive messages. This is based on

Re: [Discuss-gnuradio] 'module' object has no attribute

2018-12-17 Thread Andriy Gelman
Hi Guy, I've had these issues when linking to libraries. Go to the CMakeLists.txt in the root of your OOT module, and look for the line find_package(Boost.. Make sure you include chrono in your components list, i.e.: find_package(Boost "1.35" COMPONENTS filesystem system *chrono*) After compile/