| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|
|
|
|
|
|
| |
default for dict is just an extra arg, no default= keyword
Signed-off-by: Jeff Long <willcode4@gmail.com>
(cherry picked from commit 553248575079794236923ad3aa03cda03ed902d0)
Signed-off-by: Jeff Long <willcode4@gmail.com>
|
|
|
|
| |
Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
|
|
|
|
| |
misc.h in the public header is not implemented
misc.h in the lib/ dir is implemented but not used
Appears that all the misc can go without affecting API
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The fmcomms2 source/sink were wrapped with hier blocks that were used as
the basis for the pluto blocks
This templatizes the fmcomms2 blocks so they can be directly used, and
since the pluto block is so close to the fmcomms block, just use grc as
the wrapper around it
fmcomms2/pluto can also now be used as sc16 or fc32
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
|
|
| |
Installs GNURadio into the container and checks if Python can find,
import and use the gnuradio package.
Signed-off-by: schneider <schneider@blinkenlichts.net>
|
|
|
|
| |
Signed-off-by: schneider <schneider@blinkenlichts.net>
|
|
|
|
|
|
|
| |
The qwidget() method of ber_sink_b had previously not been declared part
of the public API, thus preventing its use from python.
Signed-off-by: David Winter <david.winter@analog.com>
|
|
|
|
|
|
|
|
|
|
|
| |
After #5127, we inadvertently had duplicate dictionary keys, meaning the
last entry is the only one that actually existed and some desired
aliases were missing. This changes the ALIAS_OF dictionary to ALIASES_OF
where the values are now a set of aliases instead of a single string
value. The one use of the ALIAS_OF dictionary was changed to operate on
the returned set.
Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
|
|
| |
Co-authored-by: Jeff Dumps <jeffdumps@gmail.com>
Co-authored-by: Derek Kozel <derek@bitstovolts.com>
Signed-off-by: Derek Kozel <derek@bitstovolts.com>
|
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
| |
font size was being imported incorrectly resulting in the default font size always being used for comments (#5088)
Signed-off-by: chris <christopher.donohue@gmail.com>
|
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
|
| |
Adds the typedefs and includes needed to build with Qwt 6.2.
Signed-off-by: Bill Muzika <bill.muzika@outlook.com>
|
|
|
|
|
|
| |
Replace all occurrences of empty minoutbuf and maxoutbuf with 0.
Signed-off-by: Ron Economos <w6rz@comcast.net>
|
|
|
|
| |
Signed-off-by: Håkon Vågsether <hauk142@gmail.com>
|
|
|
|
|
|
| |
Author: Gisle Vanem (gvanem) in Github issue #5157
Signed-off-by: Jeff Long <willcode4@gmail.com>
|
|
|
|
|
|
|
|
|
|
| |
When type checking was added for GRC connections, the valid connections
between a block with the "sc16" type (e.g. UHD blocks) and a block
with the "short" type and a vector length of 2 (e.g. ishort->complex)
now fail. Adding these aliases fixes that as a stop-gap until a better
solution can be found.
Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
|
|
| |
See #5016
Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
|
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
|
|
|
|
|
|
| |
Category and module tooltips have been broken since GNU Radio 3.8.
The _format_cat_tooltip function expects a tuple representing the
module & category hierarchy, but a single string is passed in. As
a result, everyhing is treated as a category, and only the last
letter of the category or module name is displayed. I've fixed
the problem by passing in the full tuple instead.
Signed-off-by: Clayton Smith <argilo@gmail.com>
|
|
|
|
|
|
| |
Fixes #4174.
Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* runtime: fix pybind of get_tags_in_window
Fix issue where get_tags_in_window was bound to and consequently had the
same behavior as get_tags_in_range
Fixes #5005
Test recommended by ryanvolz fails to validate tag offset not just when
nitems_read is 0
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* grc: Implement --output functionality for grcc
Reference gnradio Issue #2799.
This commit adjusts some logic and code to enable the --output switch
for grcc.
Prior to this commit, grcc would only output to the GRC_HIER_PATH.
The commit adjusts the various Generators in grc/core/generator to
consistently use
output_dir for the output directory.
If it's None, then take from the platform.config.hier_block_lib_dir
attribute which can be set via the
GRC_HIER_PATH env var.
The cpp_top_block generator was also modified to remote its __init__ function
which appeared identical to its base TopBlockGenerator.
I did not test c++ GRC output.
* Make output directory if does not exist
* Duplicate TopBlockGenerator __init__ without .py extension; base class object
* Typo in os.makedirs kwarg
* Added _warnings method from TopBlockGenerator
Signed-off-by: Jared Dulmage <jared.dulmage@caliola.com>
|
|
|
|
|
|
|
|
| |
Issue 5032 results from an unfilled parameter erroneously indicated as
filled with a default value of 0. This PR makes grc indicate an error
when there is an unfilled parameter by returning None.
Signed-off-by: Solomon Tan <solomonbstoner@yahoo.com.au>
|
|
|
|
|
|
|
| |
Number Sink takes a size, rather than a type, and does not support int32.
It assumes items of size 4 are floats.
Signed-off-by: Jeff Long <willcode4@gmail.com>
|
|
|
|
|
|
|
| |
This fixes compilation with MSVC because of the use of min/max
functions in the precompiled headers.
Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Fix bad initialization of RNG seeds. If this isn't done, multiple channels will be correlated with each other.
Signed-off-by: Matt Ettus <matt@ettus.net>
* formatting fix
Signed-off-by: Matt Ettus <matt@ettus.net>
* Fixed ordering of initialization
Signed-off-by: Matt Ettus <matt@ettus.net>
|
|
|
|
|
|
|
|
| |
This makes the ctest args configurable per-container. The Debian 11
ctest args now disable qa_polar_decoder_sc_systematic because it seems
the VOLK version shipped therein has an issue.
Signed-off-by: Martin Braun <martin@gnuradio.org>
|
|
|
|
|
|
|
|
|
| |
In commit 612c650, cpp support was added to the unpacked_to_packed
block. However, the cpp flag was not added. Neither was the endianness
option set correctly. This commit fixes it using packed_to_unpacked as
reference.
Signed-off-by: Solomon Tan <solomonbstoner@yahoo.com.au>
|
|
|
|
|
|
|
| |
This was omitted accidentally, but is necessary in general for
correct processing of PDU data
Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
|
|
|
|
|
|
|
|
| |
This is to keep in lockstep with maint-3.9; this allows to run with
in-tree `[[deprecated]]`-marked functionality, and with current ZMQ,
which otherwise makes Fedora fail.
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
|
|
|
|
|
|
|
|
| |
ghcr.io registry is constantly failing with this message:
Error: Docker login for 'ghcr.io' failed with exit code 1
Signed-off-by: Martin Braun <martin@gnuradio.org>
|
|
|
|
| |
Signed-off-by: Martin Braun <martin@gnuradio.org>
|
|
|
|
| |
Signed-off-by: Martin Braun <martin@gnuradio.org>
|
|
|
| |
Signed-off-by: Bernard Tyers - Sane UX Design <bernard+work@ei8fdb.org>
|
|
|
|
|
|
|
| |
this has the main advantage of bringing UHD4, so we can test more of gr-uhd.
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
Signed-off-by: Martin Braun <martin@gnuradio.org>
|
|
|
|
| |
Signed-off-by: Bernard Tyers - Sane UX Design <bernard+work@ei8fdb.org>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Since autobuild was disabled for Docker Hub and free plans, this ties in
more easily with the GitHub integration.
This also changes the container type from "ubuntu-20.04" to
"ubuntu-latest" for better future compatibility.
Note: The CentOS container still is getting pulled from Docker Hub; its
migration did not work for hitherto unclear reasons.
Signed-off-by: Martin Braun <martin@gnuradio.org>
|
|
|
|
|
| |
Fix provided in issue by jwmelto
Signed-off-by: Jeff Long <willcode4@gmail.com>
|
|
|
|
| |
Signed-off-by: Josh Morman <jmorman@peratonlabs.com>
|
|
|
|
|
| |
Signed-off-by: Bernard Tyers - Sane UX Design <bernard+work@ei8fdb.org>
Co-authored-by: Bernard Tyers - Sane UX Design <bernard+work@ei8fdb.org>
|
|
|
|
| |
Signed-off-by: Ron Economos <w6rz@comcast.net>
|
|
|
|
| |
Signed-off-by: Ron Economos <w6rz@comcast.net>
|
|
|
|
| |
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
|
|
|
|
|
|
|
| |
Correct power normalization calculation.
Add a qa test for amplitude and power normalization.
Signed-off-by: David Pi <david.pinho@gmail.com>
|
|
|
|
| |
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
|
|
|
|
| |
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
|
|
|
|
| |
Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
|