Re: PDU's

2020-01-21 Thread Ivan Iudice
Hi. Take a look at the so called “polymorphic type”. https://wiki.gnuradio.org/index.php/Message_Passing Ivan > Il giorno 21 gen 2020, alle ore 17:07, sarandis. Doulgeris > ha scritto: > >  > Where can i find information about PDU's. I searched the Manual I GnuRadio > page but i could not

Re: GNU Radio 3.8 and Centos 7: Is it possible?

2020-01-21 Thread Nick Foster
Having been down this road a ways, I can recommend using Docker, if you value your time and sanity. $ docker run -ti bistromath/gnuradio:v3.8 bash -l If you want GRC to work you'll have to do a bit of monkeying. It'll be different for Centos because everything is, but here's

PDU's

2020-01-21 Thread sarandis. Doulgeris
Where can i find information about PDU's. I searched the Manual I GnuRadio page but i could not find anything for that topic just that some blocks use PDU's

Re: Constellation script

2020-01-21 Thread CEL
Hi Michel, welcome to the mailing list. I must admit that I don't really know what you want to do. Can you explain it, so that doesn't know what a DMR-C4FM relay is, understands? I think you're referring to some GRC flow graphs, but sadly we don't know which ones you have been looking at. So,

Guidance on channel separation (was: Discuss-gnuradio Digest, Vol 207, Issue 21)

2020-01-21 Thread CEL
Dear Faisal, first piece of guidance: write good emails; the email you answered to literally says: On Mon, 2020-01-20 at 22:38 +0500, Faisal Khan wrote: > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of Discuss-gnuradio digest..." So, I've

Re: GNU Radio ABI guarantees

2020-01-21 Thread CEL
Ah, you're right: of course you *could* use a symbol introduced in A.B.1.0 and then couldn't compile with A.B.0.0, but what I meant is "recompiling (when a new release comes out)". On Tue, 2020-01-21 at 15:36 +0100, Sylvain Munaut wrote: > > we guarantee API > > compatibility (i.e. recompiling

Re: GNU Radio ABI guarantees

2020-01-21 Thread Sylvain Munaut
> we guarantee API > compatibility (i.e. recompiling will never fail) for all releases that > have the same A.B. Huh really ? I thought it was more like within the same A.B, if it builds with C0, it will build for any C1 >= C0. Cheers, Sylvain

Re: GNU Radio ABI guarantees

2020-01-21 Thread thomas
Great, thanks! I think this GREP should all be done on a second digit change, so when I have some more time I'll update it accordingly. On Tue, 21 Jan 2020 10:12:46 +, "Müller, Marcus (CEL)" said: > Hi Thomas, > > as Nate wrote: we guarantee ABI compatibility between Releases A.B.C.D > that

Re: GNU Radio ABI guarantees

2020-01-21 Thread CEL
Hi Thomas, as Nate wrote: we guarantee ABI compatibility between Releases A.B.C.D that only differ in D (i.e. no relinking necessary), we guarantee API compatibility (i.e. recompiling will never fail) for all releases that have the same A.B. Best regards, Marcus On Mon, 2020-01-20 at 23:00