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: 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: 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 a NIL as

Re: Convert PDU message to a PMT message

2023-07-06 Thread jacob
objects 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 &g

Re: Convert PDU message to a PMT message

2023-07-06 Thread jacob
dict_add(pmt.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 1

[Discuss-gnuradio] Socket PDU length behavior

2016-02-04 Thread Jacob Gilbert
behaves totally different, which I do not understand. Any thoughts on what might be going on? Thanks, Jacob pdu_issue.grc Description: Binary data ___ Discuss-gnuradio mailing list Discuss-gnuradio@gnu.org https://lists.gnu.org/mailman/listinfo/discuss

Re: [Discuss-gnuradio] Socket PDU length behavior

2016-02-05 Thread Jacob Gilbert
aling with this. Jacob On Thu, Feb 4, 2016 at 7:55 AM, Jacob Gilbert wrote: > I am experiencing some unusual behavior with the attached flowgraph where > float data is put into PDUs and sent over the network using the socket_pdu > block. Only the first quarter of the data is corr

[Discuss-gnuradio] Building ControlPort support into OOT module

2016-02-10 Thread Jacob Gilbert
ation 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
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 wrote: > On Wed, Feb 10, 2016 at 11:37 AM, Jacob Gilbert > wrote: > >> I'm

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

2016-03-10 Thread Jacob Gilbert
not sure 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 &obj) Return true

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

2016-03-10 Thread Jacob Gilbert
mp;e) { 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 wrote: > It appears that PMT dictionaries and pairs are treated ident

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

2016-03-10 Thread Jacob Gilbert
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://github.com/gn

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

2016-03-11 Thread Jacob Gilbert
verted 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 wrote: > Hi, > > Being an RF guy I must admit that I am somehow lost in the dif

[Discuss-gnuradio] OOT Module Template Expansion Issues

2016-03-24 Thread Jacob Gilbert
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] OOT Module Template Expansion Issues

2016-03-24 Thread Jacob Gilbert
27;X+', sig, root) d = build_utils.standard_impl_dict2(name, 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

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

2016-03-24 Thread Jacob Gilbert
iscUtils inside the OOT module. Jacob On Thu, Mar 24, 2016 at 6:48 PM, Martin Braun 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 c

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

2016-03-24 Thread Jacob Gilbert
e fix mentioned above to succeed. Is this an acceptable way of handling things? Jacob On Thu, Mar 24, 2016 at 7:00 PM, Jacob Gilbert wrote: > I agree my current approach of clobbering the generate_helper.py file > that GrMiscUtils sticks into build/lib and build/include is not a good >

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

2016-03-25 Thread Jacob Gilbert
x), 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 > > > > On Thu, M

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 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? > > M > On 25 Mar 2016

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

2016-08-01 Thread Jacob Gilbert
dency. Jacob On Mon, Aug 1, 2016 at 10:55 AM, Cyrille DERORY 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 and/or modify > #

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

2017-01-15 Thread Jacob Gilbert
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, wrote: > Hi all, > > > > I managed to get Apache thrift up and running and configured by > environment to use the control port and performance counters.

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

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

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

2013-12-07 Thread Jacob Dickinson
cerned about the crashing 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 ye

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) 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 >> its

Re: [Discuss-gnuradio] fft gui question

2010-04-25 Thread Jacob Helwig
On Sun, Apr 25, 2010 at 15:14, dave k 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 to actually at

[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] 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 Date: Tuesday, November 15, 2011 6:58 pm Subject: Re: [Di

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

Re: Tag or message to GUI indicator

2020-12-23 Thread Jacob Gilbert
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? > For examp