mhostetter
mhostetter
The USRP Source is only compatible with Ettus Research USRP devices. You'll need to swap out that source with a compatible one for your device. What dongle do you have?
Check for a block called "RTL-SDR Source". If you don't have that you can install `gr-osmosdr` to use the RTL dongle with GNU Radio. You'll need to set the center...
Python 3 doesn't have to come first. Although, your interest in the project has rekindled mine. I'm working on installing/running GNU Radio 3.8 now. And will start porting/upgrading code soon....
Unfortunately, I don't currently have any test vectors for this case. I will be sure to log them if/when I find them in the future. Please reply to this thread...
I agree that literals in a TOC (eg, classes/functions in an API reference) could be ugly. I'm not so worried about the inline literal case. When discovering I couldn't inline...
I've found `__all__` is useful for specifying all the public / exportable objects in a private module and then using a wildcard import in `__init__.py`, as @jbms suggested. ```python #...
Thanks @jbms. Inspired from your link, I generalized in this way so the `export` function can be defined in one place, outside the private module. For posterity: ```python # galois/_helper.py...
Ahh... I didn't realize this was an `autodoc` issue. I confirmed this same behavior exists with other themes. > The case of attributes (as opposed to functions or classes) is...
> This can already be done via [toc_icon_text](https://jbms.github.io/sphinx-immaterial/api.html#objconf-toc_icon_text) config option: Oh, wow! Great! I didn't know about that. I just tried using it, however I'm having some issues. I'm building...
@2bndy5 regarding class properties, in Python 3.9+ they are created like this. ```python @classmethod @property def foo(self) -> str: return "bar" ``` Are you saying that Sphinx still sees `foo`...