Re: Convert PDU message to a PMT message

2023-07-06 Thread jacob
mt.car(msg), pmt.intern('author'), pmt.intern('barry duggan')) self.message_port_pub(pmt.intern('msg_out'), meta_dict) Hope that helps https://www.gnuradio.org/doc/doxygen/namespacepmt.html Jacob --- Original Message --- On Thursday, July 6th, 2023 at 10:09 AM, Barry Duggan wrote: > Hi J

Re: Convert PDU message to a PMT message

2023-07-06 Thread jacob
cts themselves. Is there a particular type of PMT object you are trying to turn the PDUs into? Jacob --- Original Message --- On Thursday, July 6th, 2023 at 8:55 AM, Barry Duggan wrote: > Jeff, > > Thank you for your corrections. However, based on my debug information, a PMT > me

RE: Is PMT_NIL a Valid Dictionary?

2022-06-30 Thread jacob
/ overhaul soon. The is_pdu() check should abstract that oddness a bit. Jacob --- Original Message --- On Thursday, June 30th, 2022 at 7:12 AM, Jeff S wrote: > Cool. I appreciate the clarification. I had always taken an empty dictionary > as a dictionary object without data, and

Re: PDU - cdr format

2022-02-03 Thread jacob
is metadata you can add it to the PMT metadata dictionary; if the string _is_ the data, you can save the encoded text values as a U8 uniform vector. Jacob ‐‐‐ Original Message ‐‐‐ On Thursday, February 3rd, 2022 at 2:28 AM, Marcin Puchlik via "GNU Radio, the Free & Open-Sourc

Re: Message debug block

2021-11-19 Thread jacob
In this case, there is an extra bit of confusion because an empty PMT dictionary `pmt.make_dict()` is represented by (and the same as) `pmt.PMT_NIL`. An interned string, as in your first example, is not a dictionary type object and thus you get the warning message. Jacob ‐‐‐ Original

Re: Tag or message to GUI indicator

2020-12-23 Thread Jacob Gilbert
and that string will show up in the box. It's not perfect, and the user can modify the contents of the box but might work for you. Jacob On Tue, Dec 22, 2020, 06:29 Marcin Wachowiak wrote: > Hello, > May I ask what is the best way to visualize tags or messages in GR GUI? > Fo

Re: [Discuss-gnuradio] Eventstream source latency

2019-08-17 Thread Jacob Gilbert
Hi Daniel You might be interested in the gr-pdu_utils and gr-timing_utils modules. They are about to get a significant update but there is a decent writeup on the concept of operations in github. Sub-ms latency is possible depending on host hardware and system configuration. Jacob On Fri

[Discuss-gnuradio] OOT Modules: PDU Utilities and Timing Utilities

2018-04-11 Thread Jacob Gilbert
useful. Jacob ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Profiling Gnuradio message based blocks

2017-01-15 Thread Jacob Gilbert
be included in the upcoming 3.7.10.2 but if you want it now you can easily patch it in. Jacob On Fri, Jan 13, 2017 at 1:13 AM, <emanuel.staudin...@dlr.de> wrote: > Hi all, > > > > I managed to get Apache thrift up and running and configured by > environment to use the cont

Re: [Discuss-gnuradio] PyBOMBS: Error installing package python-zmq

2016-08-01 Thread Jacob Gilbert
. Jacob On Mon, Aug 1, 2016 at 10:55 AM, Cyrille DERORY <cyri...@derory.fr> wrote: > I modified the file ~/.pybombs/recipes/gr-recipes/python-zmq.lwr below the > port line: > > # > # This file is part of PyBOMBS > # > # PyBOMBS is free software; you can redistribute it

Re: [Discuss-gnuradio] [USRP-users] Segmentation Fault from uhd::transport when stopping/starting flowgraph

2016-03-27 Thread Jacob Gilbert
I observed this on GR 3.7.9.1. On Fri, Mar 25, 2016 at 10:10 AM, Martin Braun <martin.br...@ettus.com> wrote: > Jacob, > > This is a gr-uhd issue (not UHD) if it is what I think it is, so the uhd > version is probably immaterial. Which gnu radio version are you running? > &g

Re: [Discuss-gnuradio] [USRP-users] Segmentation Fault from uhd::transport when stopping/starting flowgraph

2016-03-25 Thread Jacob Gilbert
Müller for the fix), but this is not on maint, only on master. What are > you running? > > Cheers, > Martin > > On 03/24/2016 05:25 PM, Jacob Gilbert wrote: > > Sorry for not being explicit, I am doing this using GR (stock gr-uhd). > > > > Jacob > > >

Re: [Discuss-gnuradio] OOT Module Template Expansion Issues

2016-03-24 Thread Jacob Gilbert
mentioned above to succeed. Is this an acceptable way of handling things? Jacob On Thu, Mar 24, 2016 at 7:00 PM, Jacob Gilbert <mrjacobagilb...@gmail.com> wrote: > I agree my current approach of clobbering the generate_helper.py file > that GrMiscUtils sticks into build/lib and b

Re: [Discuss-gnuradio] OOT Module Template Expansion Issues

2016-03-24 Thread Jacob Gilbert
. Jacob On Thu, Mar 24, 2016 at 6:48 PM, Martin Braun <martin.br...@ettus.com> wrote: > You can't point to the module inside GNU Radio, because that might not > be installed when you're developing a module. > > If your way works, that's great, but maybe this can be factored o

Re: [Discuss-gnuradio] OOT Module Template Expansion Issues

2016-03-24 Thread Jacob Gilbert
, sig, '${component}') build_utils.expand_template(d, inp) ") Is that what you mean? Or can I tell CMake to use the module in tesmod/cmake/Modules/GrPlatform.cmake? I'd like to know the recommended way, and we can get this added into the modtool templates. Jacob On Thu, Mar 24, 2016 at 6:05

[Discuss-gnuradio] OOT Module Template Expansion Issues

2016-03-24 Thread Jacob Gilbert
, and GR_SWIG_BLOCK_MAGIC2 to swig/testmod_swig.i for each of the generated blocks. However, when I attempt to build I get the following error: File "/home/jacob/gr-testmod/build/include/testmod/generate_helper.py", line 9, in import build_utils ImportError: No module named build_utils This

Re: [Discuss-gnuradio] lack of understanding the different formats to store samples

2016-03-11 Thread Jacob Gilbert
-converted and interleaved to give you complex data. There are a couple other tools under the category of "Byte Operators" that may be helpful. Jacob On Fri, Mar 11, 2016 at 2:24 AM, Ralph A. Schmid, dk5ras <ra...@schmid.xxx> wrote: > Hi, > > Being an RF guy I must admit that I am

Re: [Discuss-gnuradio] PMT Pairs/Dictionaries type checking bug

2016-03-10 Thread Jacob Gilbert
the dicts more explicit, but > eventually didn't. So this code is currently all you can do. > > Cheers, > M > > On 03/10/2016 06:59 PM, Jacob Gilbert wrote: > > Looks like this is known to at least some other folks. Here is a fix > > borrowed from: > > > https:/

Re: [Discuss-gnuradio] PMT Pairs/Dictionaries type checking bug

2016-03-10 Thread Jacob Gilbert
) { msg = pmt::dict_add(pmt::make_dict(), pmt::car(msg), pmt::cdr(msg)); } <<< rest of message handler here... input msg will be a dictionary >>> } On Thu, Mar 10, 2016 at 9:26 AM, Jacob Gilbert <mrjacobagilb...@gmail.com> wrote: > It appears that PMT diction

[Discuss-gnuradio] PMT Pairs/Dictionaries type checking bug

2016-03-10 Thread Jacob Gilbert
ure if this is an issue with GNU Radio or with some external PMT handling library, but at a minimum it seems like the doxygen ( http://gnuradio.org/doc/doxygen/namespacepmt.html#a936ecb38da9a2a1bb107c090e194700f ) "PMT_API bool pmt::is_pair (const pmt_t ) Return true if obj is

[Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-10 Thread Jacob Gilbert
and works just fine. Any pointers are appreciated. GR is release 3.9.2 Thanks, Jacob ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss-gnuradio

Re: [Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-10 Thread Jacob Gilbert
ude. That builds with GR_CTRLPORT set. Are there any recommendations for what the "suggestion" pmt's should be for string-type values? Thanks On Wed, Feb 10, 2016 at 11:42 AM, Tom Rondeau <t...@trondeau.com> wrote: > On Wed, Feb 10, 2016 at 11:37 AM, Jacob Gilbert <mrjacob

Re: [Discuss-gnuradio] Failed Install + gr-osmosdr Troubles

2013-12-11 Thread Jacob Dickinson
On Sun, Dec 8, 2013 at 6:38 AM, Martin Braun (CEL) martin.br...@kit.edu wrote: On Sat, Dec 07, 2013 at 08:39:57PM -0800, Jacob Dickinson wrote: I then uninstalled 3.7.2.1 and installed 3.7.1.1 from the binary package (gnuradio_3.7.1.1_Ubuntu-13.10-x86_64.deb). Now gnuradio itself works

[Discuss-gnuradio] Failed Install + gr-osmosdr Troubles

2013-12-07 Thread Jacob Dickinson
in 3.7.2.1 unless it's easily solvable or related to the second issue. The main thing I'm concerned about is getting gr-osmosdr working. Any guidance on troubleshooting this? I'm not familiar enough with gnuradio yet to know where to look. Thanks! Jacob

Re: [Discuss-gnuradio] e100 OpenBTS Linux Kernel missing

2011-11-19 Thread Jacob Gilbert
oops, wasn't sure since the page in question is hosted on the gnuradio site but that makes sense. Thanks for looking into this, will you post here when it is updated? Jacob - Original Message - From: Philip Balister phi...@balister.org Date: Tuesday, November 15, 2011 6:58 pm Subject

[Discuss-gnuradio] e100 OpenBTS Linux Kernel missing

2011-11-15 Thread Jacob Gilbert
I was attempting to download the uImage linux kernel from the following website and got a dropbox 404 page. http://gnuradio.org/redmine/projects/gnuradio/wiki/OpenBTSE100 Is there a mirror or am I using an outdated e-100 OpenBTS page? Thanks, Jacob

Re: [Discuss-gnuradio] fft gui question

2010-04-25 Thread Jacob Helwig
On Sun, Apr 25, 2010 at 15:14, dave k dave_k_...@yahoo.com wrote: Can someone give me an idea on how i can put some kind of visual markers on a fft graph?  attached is a photoshop image of what i would like to accomplish. Any ideas on how i could go about doing this? Looks like you forgot