All notable changes to GNU Radio will be documented in this file.
The format is based on Keep a Changelog and this project adheres to Semantic Versioning, starting with version 3.7.12.0.
Older Logs can be found in docs/RELEASE-NOTES-*
.
It is with much excitement that we release the next step forward for GNU Radio - 3.10.0.0!
Not only does this release bring in some extremely useful new modules (gr-iio, gr-pdu, and arguably gr-soapy thought that thankfully made it also into recent 3.9 maintenance releases), but also sets a path forward for using GNU Radio in heterogeneous compute environments by providing "custom buffers" for more efficiently interacting with accelerators (GPUS, FPGAs, TPUs, etc.).
We have been fortunate this year to have extremely active backporting and consistent maintenance releases from co-maintainter Jeff Long - so many of the fixes and smaller feature (and larger ones) have already seen the light of day in the 3.9.x.x and even 3.8.x.x releases.
A special specific thanks to the contributors that made these larger features and upstreamed modules possible, but much appreciation to all that contributed through code, documentation, review, and just generally being a part of this wonderful community.
- gr-pdu: Jacob Gilbert and the team at Sandia National Labs
- gr-iio: Travis Collins and the team at Analog Devices as well as Adam Horden, David Winter, and Volker Shroer for bringing this in-tree and working through many of the complexities.
- Custom Buffers Support: We have David Sorber to thank for this incredible, yet advanced, feature that came out of the DARPA SDR 4.0 program and should get a lot of traction. Check out https://wiki.gnuradio.org/index.php/Custom_Buffers for more of the gory detail. Also thanks to Seth Hitefield whose initial work in this area helped get this concept into the mainstream for GNU Radio.
- Logging Infrastructure Overhaul: A huge thanks to Marcus Müller for fixing all of this up, replacing Log4CPP with spdlog and also for providing ongoing architectural leadership to the project
- Moved PDU blocks from gr-blocks to gr-network and gr-pdu
- Compatibility shim included to allow access to these blocks from gr-blocks but these are deprecated from the gr-blocks namespace and the shim is scheduled for removal in 3.11.
- gr::blocks::pdu namespace has been reorganized in gr
- PDU vector types are accessible in gr::types
- PDU functions are accessible in gr::pdu
- Common msg port names are accessible in gr::ports
- Logging Infrastructure changed to use spdlog
- +dependency spdlog, -dependency Log4CPP
- New, more convenient logging methods
- Modernized Interface
- Removed iostream and cstdio from logging statements
- C++17
- requires MSVC 1914 (Microsoft VS 2017 15.7)
- replace boost::filesystem with std::filesystem
- Windows build: removed unnecessary MSVC-specific system include overrides
- Removed unused volk_benchmark
- Use Pre-Compiled Headers - speeds up compilation time
- Further replacements of boost::bind with lambda functions
- Remove more manual memory management and general c++ modernization
- PEP8 formatting applied and enforced on all Python files
- Centralized min dependency and compiler versions in one place for GR and modtool created OOTs
- Update QA tests to work with OpenEmbedded cross compilations
- Dependency versions:
- Python 3.6.5
- numpy 1.17.4
- VOLK 2.4.1
- CMake 3.16.3
- Boost 1.69
- Mako 1.1.0
- PyBind11 2.4.3
- pygccxml 2.0.0
- Compiler options:
- GCC 9.3.0
- Clang 11.0.0 / Apple Clang 1100
- MSVC 1916 (Microsoft VS 2017 15.9)
- Replace deprecated distutils in CMake macros
- Build targets with python dependencies conditionally on
ENABLE_PYTHON
- Remove deprecated networking blocks:
udp_source
,udp_sink
,tcp_server_sink
; replaced in 3.9 with more capable blocks ingr-network
- Document the supported operations in transcendental
fastnoise_source
: Useuint64_t
seed API, usesize_t
for vector length/indicesfastnoise_source
: Use a simple bitmask if the random pool length is a power of 2 to determine indices, instead of%
, which consumed considerable CPUsig_source
: Remove deprecatedfreq
message port of signal source block; Usecmd
port instead
- Remove deprecated
mmse_interpolator
block; Replaced previously bymmse_resampler
- Speed up filter building with moves
- Add const to temporary tap vectors
- Remove deprecated simple_{correlator,framer}
- Remove deprecated cma, lms, kurtotic equalizers; replaced in 3.9 by
linear_equalizer
- Un-deprecate pfb_clock_sync
- Add header payload demux example
- Remove crc32 utility and most of packet_utils
- Remove yml files for non-existent QAM mod/demod blocks
- Refactor ATSC blocks to have separate metadata stream rather than passing structs
- Add energy normalization for DVB-S2X constellations
- Fix segfaults when TCP and UDP are restarted
- Remove spurious volk includes
- Fix segfaulting overflow in time_sink and waterfall
- Support for Qwt 6.2
- Frequency/Waterfall Sinks expand range to 32k and enums in GRC
- Frequency/Waterfall Sinks force power of 2 for fft size
- Python bindings for RFNoC blocks
- gr_modtool bind workaround for pygccxml incompatibility with spdlog
- Clean up the SDL sinks:
- Remove unused format parameter
gr::random
uses xoroshiro128+ internally, takesuint64_t
seed- Remove unused misc.cc/h
- Accelerator Device Support
- Major changes to the runtime to support "custom buffers"
- Single Mapped Buffer abstraction that can be inherited out of tree
- Remove Tag Checker
- Explicitly convert path to string to fix MSVC build
- size_t for vmcircbuf constructor and buffer factories
- Reconfigurable timer value for input blocked condition (scheduler detail workaround)
- grcc --output switch for hierarchical blocks
- Clean up Bokeh server loop
- Don't blacklist
default
as a flowgraph ID to prevent always starting in an error state
- rm dependencies from disabled components in blocks/runtime tests
- dtools: Added run-clang-tidy-on-codebase, which does what the name suggests, then updates all bindtool hashes, and commits everything appropriately
gr_filter_design
- update to support PyQt5
- fix loading of previously saved .csv files
- New in-tree module gr-pdu
- New in-tree module gr-iio
This is an API compatible update to GNU Radio 3.9. Code written for 3.9.X versions should compile and link without modification. The ABI is not guaranteed to be compatible, so a rebuild of OOT modules may be necessary.
- Fix: dependent variables sometimes fail to evaluate
- Modify and cleanup bokeh server loop
- Update python bindings for power squelch
- Add energy normalization for DVB-S2X constellations.
- Remove pyqwt and qt4 from filter_design
- Fix: segfaults when TCP & UDP blocks are restarted
- Add throttle flag to the tcp source and sink blocks
- Enable use of Qwt 6.2
- Add Python bindings for rfnoc_{block, ddc, duc, rx/tx_radio}
- Improvements in generated QA code
- Better support for cross-compiling (OpenEmbedded)
- Find log4cpp on Ubuntu systems
- Handle optional components in
find_package
- Add version check for pygccxml
- Update tests to work with OpenEmbedded
This is an API compatible update to GNU Radio 3.9. Code written for 3.9.X versions should compile and link without modification. The ABI is not guaranteed to be compatible, so a rebuild of OOT modules may be necessary.
- Remove
#include <filesystem>
(C++17 feature) from one file - Restore
pyqwidget()
in gr-qtgui
- GRC now runs on Fedora 35 ... Gtk initialization checks were too strict
- Add keyboard shortcuts for zoom
- Account for scale factor when computing drawing area size
- Use font size from config for block comments
- Change type aliasing to allow interleaved short/byte to be connected to vectors of short/byte. Stricter type checking was added previously and caused some blocks to be unconnectable when using these types.
- Required params no longer default to
0
when left empty. This caused hard-to-find errors. Older flowgraphs that have empty required fields will need to be fixed. - Tooltips fixed for categories and modules
- PMT uses the VOLK allocator for vectors
get_tags_in_window()
Python wrapper calls the correct function- Add
--pybind
option tognuradio-config-info
to get PyBind11 version
- Add example for XMLRPC
- Add a unit test for Message Strobe
- Fix C++ support for Unpacked to Packed
- RNG seeds are initialized correctly
- Fix yml file for Header/Payload Demux
- Suppress warning in tuntap
- Remove unusable int type in Number Sink yml
- Use
no_quotes()
function in several yml files
- Hashes can be fixed using modtool using
--update-hash-only
- Use
tempfile()
instead of/tmp
in bindtool and modtool - Use
static_cast
instead ofreinterpret_cast
in templates - Correct broken Python general block template
- Better check for Boost version
- Determine the Python prefix more reliably
- Use GR-specified compiler standard (C++14) in gr-soapy, instead of the SoapySDR standard (C++11)
- GrPython.cmake is compatible with older cmake
- Man pages are in-tree
- Repair many examples, especially in gr-digital
- Allow UTF-8 in pydoc templates
- Execute
make install
during test - Add Ubuntu 18.04 test target
This is an API compatible update to GNU Radio 3.9. Code written for 3.9.X versions should compile and link without modification. The ABI is not guaranteed to be compatible, so a rebuild of OOT modules may be necessary.
- Many cleanups and some C++ modernization changes
- Replace Boost with stdc++ equivalents (ongoing effort)
- Logging cleanup and performance improvements (ongoing effort)
- Cleanup of many unused includes
- Various block yaml cleanups and repairs
- Use Soapy instead of UHD for flowgraph testing in gr-analog and gr-dtv
- Improvements in C++ templates and code generation, more blocks are usable
- Add specification of packages to find (via cmake) for C++ templates
- Fix C++ hier block param template
- Add GUI hints for widgets in C++ code generation
- Add no_quotes() convenience function to strip quotes from strings, callable from templates
- Allow short and byte as valid types in an enum
- Fix desync when dragging block (block would not always track cursor)
- Correctly evaluate interdependent variables
- Allow error messages to be copied to clipboard
- Update disabled blocks if they depend on others
- Deprecate tag_checker class (will be removed in 3.10)
- Detect and follow symbolic links for installation prefix in gr::prefix()
- Add "<" operator for comparison of tags (instead of offset_compare())
- New Matrix Interleaver block
- Throttle and Head blocks can be input-only when no output is needed, improving performance
- Fix tag propagation in (un)pack-k-bits blocks
- Fix namespace for nco and vco in benchmarks
- New Async CRC16 block
- Add NRZI option to Differential En/Decoder
- Constellation performance improvements
- Fix constellation normalization by average power
- Remove unimplemented msg output port from Chunks to Symbols block
- Make unpacking of bits optional in GMSK modulator so the blocks can accept unpacked bits
- In GFSK/GMSK hier blocks, replace M&M clock recovery with newer and more capable Digital Symbol Sync block
- Cleanups and code improvements
- Add a "shift" paramenter to Log Power FFT, to place DC bin at center
- Performance improvement in PFB Arbitrary Resampler when interpolating, especially at low rates
- Fix display of tags on the last sample (would be dropped)
- Python wrapping: replace pyqwidget() with qwidget() - this is not intended to be a visible fix, but is mentioned here in case it causes trouble for anyone
- C++ generation
- add double quotes to cpp_opts keys with colons
- position windows correctly depending on gui_hint
- use option attributes to generate enums
- use the cpp enums for wintype and trigger_type
- Fix input filename in freq hopping examples
- Make RFNoC a separately enabled component in cmake
- Python bindings for rfnoc_graph,_rx/tx_streamer
- U and V channels were reversed on sink blocks
- Added message support for SoapySDR 0.8 API
- Set VERSION_PATCH to 0 instead of "git" in new modules
- Fix "rm", "bind", disable", "rename" and "makeyml" which had unexpected side effects, or did not work as a user would expect
- Correct minimum version checking for Mako
- Ensure that RC_*_VERSION are numeric (Windows)
- Fix finding libunwind
- Pass through extra arguments to GR_PYTHON_INSTALL to install command
- Remove absolute paths and private links from exported targets
- Add gir1.2-gtk-3.0 as deb runtime dependency
- Code of Conduct updates and link to Wiki
- Do not error out on deprecations, allowing testing of deprecated code
The new gr-soapy built-in module provides access to Soapy hardware drivers using the SoapySDR driver framework. See https://wiki.gnuradio.org/index.php/Soapy for more information.
If SoapySDR 0.7.2 or newer is available during GNU Radio configuration, the gr-soapy module will be enabled.
The SoapySDR framework and Soapy driver modules are not maintained by the GNU Radio project. Driver modules are dynamically discovered and linked. They may be added and updated independently from the GNU Radio release cycle.
- Parameter expressions and/or values can be displayed in blocks on the flowgraph. Previously, only values were displayed. Look for the "Show Parameter ..." toggles under the View menu.
- Deprecated blocks are shown in a distinct color (orange), and the optional
deprecated
property has been added to block yaml - Dark theme works better, especially for parameter fields
- Vector length is now correctly applied to all input ports
- Validation has been improved. Raw types are validated. Port connections are checked by type rather than by item size.
- Variable names that cause name conflicts in Python code (e.g., with package names) are rejected
- Bus logic fixes
- Blocks can no longer be dragged off the screen and lost forever
- Remove
pmt::pmt_*
functions, which were not actually implemented. This is technically an API change, but any use of the API would have resulted in a link error. - Remove Python bindings for internal buffer functions
- Added an example for PLL Frequency Detector
- Better names for parameters in PLL GRC blocks
- Consistent naming for Vector Length parameter in GRC blocks
count_bits
uses VOLKpopcnt
for better performance (used for example in the Correlate Access Code block)- Rotator block phase increment parameter is controllable via a message, and a tag can be added at the point where the increment is adjusted
- MPSK example updated to use a Linear Equalizer (replacing deprecated block)
- Filter Delay documentation improvement
- Interpolating FIR filter can generate C++ code
- VL-SNR bugs fixed (incorrect constants).
- Improve autoscaling for vector sinks
- Fix floating-point resolution problems in several widgets, due to interpretation of PMT doubles as floats
- Add policy enum to Python bindings for
tune_request
- Additional time spec options on UHD blocks (PC Clock on Next PPS, GPS Time on Next PPS)
- Fix up code that was generating warnings
- Fix command handler logic to apply commands from messages to the correct channel
- "File/Save" is disabled until the taps have been computed, and the GUI is reset after a save, to make it clearer which data is being saved.
- Entries are hidden for parameters that do not apply to the selected filter type.
- Save window type as an integer instead of a Python enum name
- Improve validation of module and block names
- Improved messages related to dependencies MPIR and GMP. Only one of these packages is required, and the previous error messages were confusing.
- Cleaner builds for Windows and Conda. A number of general cmake improvements have resulted from this work.
- In-tree packaging files for DEB and RPM, used with Launchpad and COPR
- Added man pages for GNU Radio tools
- Test code generation for all in-tree GRC examples
- In GrPybind.cmake,
PYBIND11_INCLUDE_DIR
(incorrect) was changed topybind11_INCLUDE_DIR
At LEAST the following authors contributed to this release. Note that only authors of commits are included here. A number of people contribute in other ways, including code review, documentation and testing.
- 0xloem [email protected]
- Christophe Seguinot [email protected]
- Chuang Zhu [email protected]
- Codey McCodeface [email protected]
- Ferenc Gerlits [email protected]
- Håkon Vågsether [email protected]
- Igor Freire [email protected]
- Jacob Gilbert [email protected]
- Jeff Long [email protected]
- Josh Morman [email protected]
- Liu, Andrew Z [email protected]
- Marcus Müller [email protected]
- Martin Braun [email protected]
- Martyn van Dijke [email protected]
- Nicholas Corgan [email protected]
- Ron Economos [email protected]
- Ryan Volz [email protected]
- Solomon Tan [email protected]
- Volker Schroer
- Zackery Spytz [email protected]
API is compatible with C++ code written against previous v3.9 releases.
ABI (link time) compatibility is not guaranteed. Out-of-tree C++ code linked to previous v3.9 releases should be rebuilt against this version.
- (internal) Build system improvements and fixes
- (internal) Use C++14 features instead of Boost where possible
- Fewer compiler warnings (due to fixed code, not removal of warnings!)
- cmake: standard FindGSL used in lieu of custom one, so OOTs should no longer copy this module from the GNU Radio tree if needed
- modtool: better exception/error handling
- modtool: will non-interactively add blocks with no parameters
(
--argument-list=""
) - PyBind11 header hash hotfixer (gr-utils/bindtool/scripts/binding-hash-hotfixer.zsh) makes life easier
- Block param values can be shown as expressions and/or evaluated values. Under the View menu, see "Show parameter ..." options.
- Better handling of gui hints, avoid hiding widgets in cases where some have GUI hints and some do not
- Ensure that strings are valid utf8 when evaluating parameters
- Save embedded python blocks/modules to hier_block_directory
- Save config and update recent file sub-menu before executing flowgraph
- Revert to previous "block id" display behavior
- Fix drag n' drop issue with Quartz (macOS) backend
- C++ generated code: remove gnuradio prefix from linked libraries
- Python generated code: prefix generated modules with flowgraph id
- connect() will be called for hier blocks even if they don't have ports
- Check for PyYAML 3.11 (was checking for 3.10 even though 3.11 was required)
- Default buffer size can be adjusted by setting
buffer_size
in the[Default]
section of the GNU Radio config file. Otherwise, the longstanding default of32768
is used. - Windows/Python: add DLL search path, as required by newer versions of Python
- Windows: reduce priority of Windows native audio to LOW, preferring Portaudio
- Message Debug: prints warning when a non-PDU message is received on the Print PDU port
- File Source handles EOF properly in non-seekable files (e.g., pipes)
- Several bounds checking and boundary condition improvements
- Remove DC Spike AutoSync algorithm fixed
- MSK timing error detector improvement
- Python bindings include control_loop parent class in child class
- Correlation Estimator parameter
threshold
well documented
- New window types: Nuttall, Blackman Nuttall, Nuttall CFD, Welch, Parzen, Exponential, Riemann, Gaussian and Tukey
- Taps blocks (e.g., Low Pass Filter Taps) now propagate parameter changes
- Filter Designer: IIR/Band Pass/Bessel works
- Add toggling label and icon on plot play/stop button
- Time Raster Sink: axis labels and ranges are configurable
- Qt Chooser: label improvements
- DEPRECATION: UHD blocks currently accept control messages (e.g. for frequency change) as PMT pairs and tuples, in addition to the intended PMT dict format. In v3.11, only the dict format will be accepted.
- Command note:
freq
messages in this version must be dicts. Additionally, thedirection
key must be present and set toTX
orRX
. Python example:pmt.to_pmt({'freq':100e6,'direction':'RX'})
The original behavior may be restored in an update, but code should be converted to use the dict format in preparation for future versions. set_filter()
addschan
parameter- Python generated code improved for FE corrections
- Allow control of frequency and gain in both directions at the same moment
- Add command handler for mtune ("manual tune")
- Add GPIO control via messages
- Add start time param to GRC blocks
- Support streaming modes:
STREAM_MODE_START_CONTINUOUS
,STREAM_MODE_STOP_CONTINUOUS
,STREAM_MODE_NUM_SAMPS_AND_DONE
,STREAM_MODE_NUM_SAMPS_AND_MORE
- Documentation improvements
- Tag sink demo example
- Better logging of over/underflows, time errors and time tags
- Added Python binding for ALL_LOS (all local oscillators)
uhd_fft
application X11/Qt related cleanups
waitFor(condition, ...)
available for tests that use timeouts
At LEAST the following authors contributed to this release.
- Artem Pisarenko [email protected]
- Christophe Seguinot [email protected]
- Daniel Estévez [email protected]
- David Pi [email protected]
- Emmanuel Blot [email protected]
- gnieboer [email protected]
- Håkon Vågsether [email protected]
- Ipsit [email protected]
- Jacob Gilbert [email protected]
- Jason Uher [email protected]
- Jeff Long [email protected]
- Jason Uher [email protected]
- Jeppe Ledet-Pedersen [email protected]
- Josh Blum [email protected]
- Josh Morman [email protected]
- karel [email protected]
- luz paz [email protected]
- Marcus Müller [email protected]
- Martin Braun [email protected]
- Nick Foster [email protected]
- Niki [email protected]
- rear1019 [email protected]
- Ron Economos [email protected]
- Ryan Volz [email protected]
- Sebastian Koslowski [email protected]
- Terry May [email protected]
- Vasilis Tsiligiannis [email protected]
- Victor Wollesen [email protected]
- Volker Schroer
- Zackery Spytz [email protected]
The future is not set, there is no fate but what we make for ourselves. In this very spirit, GNU Radio 3.9 packs a whole bunch of power when it comes to transforming the way GNU Radio and its ecosytem can be developed in the future.
Not only did we have great progressions from old dependencies that proved to be all too problematic (SWIG, Python2), but also did we see an incredibly influx of people actively working on how maintainable this code base is. This will nurture the project for years to come.
All in all, the main breaking change for pure GRC users will consist in a few changed blocks – an incredible feat, considering the amount of shift under the hood. Mentioning large shifts, the work that went into the PyBind binding, the CMake modernization, the C++ cleanup, the bug-fixing and the CI infrastructure is worthy of explicit call out; I especially thank
- Josh Morman
- Thomas Habets
- Jacob Gilbert
- Andrej Rode
- Ryan Volz
here.
For developers of OOTs, I'm sure PyBind11 will pose a surprise. If you're used to SWIG, yes, that's more code to write yourself. But in effect, it's less code that breaks, and when it breaks, it breaks in much more understandable ways. Josh has put a lot of effort into automating as much of that as possible. There's certainly no shortage of demand for that! The ecosystem (remember GNU Radio's tagline?) is in a steady upwind. We've seen more, and more stable, contributions from OOT maintainers. That's great!
For in-tree development, newer dependencies and removal of anachronisms will make sure things move much smoother. Our CI is getting – lately literally every day – better, which means we not only catch bugs earlier, but also allow for much quicker review cycles.
One central change:
If you're contributing code upstream, we no longer need you to submit a CLA; instead, we ask you to just certify, yourself, that you're allowed to contribute that code (and not, e.g. misappropriating someone else's code).
That's what the DCO (Developer Certificate of Origin) is: Just a quick, "hey, this code is actually for me to contribute under the project's license"; nothing more.
Which means that our infrastructure will refuse to let your code into the tree if you didn't add a
Signed-off-by: Maxime Example <[email protected]>
to your commit message. Luckily, git can do that for you: git commit -s
.
- We now require commits to be signed off (DCO); this means you have to
attach
-s
to yourgit commit
command line - License headers now SPDX format
- C++14
- use C++11 facilities in a lot of places where Boost was still used, especially smart pointers, range loops
- lambdas where
boost::bind
was used - C11
- Dependency versions:
- Python 3.6.5
- numpy 1.13.3
- VOLK 2.4.1
- CMake 3.10.2
- Boost 1.65
- Mako 1.0.7
- PyBind11 2.4.3
- Compiler options:
- GCC 8.3.0
- Clang 11.0.0 / Apple Clang 1100
- MSVC 1910 (Microsoft VS 2017 15.0)
- VOLK now "regular" dependency, not in-tree submodule
- numpy now also a CMake-checked hard dependency for Python support
- Exception Handling: throw by value, catch by reference (clang-tidy check)
- C++11: Emplace in vectors where you can; brings performance boni, but not included in clang-tidy-checks
- Further clang-tidy based code optimizations:
- empty() instead of size() == 0
- override where overriding virtual functions (which we do a lot)
- Logging: removed all
std::cerr
andfprintf(stderr,…)
by GNU Radio logging - Logging: Changed logging format for many multiline error logs
- purged
snprintf
,printf
logging - There were a lot of places where a malloc'ed object was used internally, where that was inappropriate. Using simple instance-holding fields now.
const
for members that were only set at construction time is now desired, and implemented in most placesconst
->constexp
in a lot of places.assert
->static_assert
- An exception-throwing block will now terminate the flow graph process,
configurable through
top_block
gr-utils
cleanup, folder restructuring- config version checks installed CMake file will accept "at least this version" now
- PyBind11 replaces SWIG
- Full tree conversion from SWIG to Pybind11 bindings
- Doxygen now uses MathJax, full LaTeX installation no longer required
NOTE: Most of the changes above change the generally preferred coding style in a lot of situations.
- start flowgraph in folder where it resides
- When calculating offsets in non-integer rate FEC,
lround
- default seed for
gr::random
now actually as documented time-dependent - loggers moved from
gr::block
togr::basic_block
- PMT serialization
- PMT dicts no longer indistinguishable from pairs
- PMT symbol hashing no longer suffers under oddball own implementations
- Increased ALSA buffer nperiods
add
,add_const
VOLK'ized, templated- this seems to break things in other places, even if it proves to be mathematically identical
wavfile
infrastructure:libsndfile
now dependency
transcendental
block: default to 32 bit float complex, not double- Linear equalizer: separate adaptive algorithm, allows for using e.g. trained sequences instead of the classical LMS, CMA
- DFE: better structure for decision history
- LDPC encoder: template functions instead of
#define
d macros - LDPC encoder: smaller tables through
uint16_t
for index tables
- API
uint8_t
, notchar
- FFT blocks/functions templatized
- logging format
rational_resampler_base
->rational_resampler
- Required UHD version bumped to 3.9.7
- logging format
sig_source
:freq
port will be removed in the future
audio-sink
,-source
: Windows audio sink/source deprecated, the portaudio sink/source works even better under windows anyway
- In favor of
symbol_sync
, deprecate:clock_recovery_mm
msk_timing_recovery
pfb_clock_sync
- C++ Generation all over the place
- PyBind bindings + generator
- Github actions
- Reproducible builds-compatible CMake TIMESTAMP
block_gateway
:set_max_output_buffer
GR_PREFS_PATH
environment variable sensitivity to configure the path to the config filegnuradio-config-info --print-all
- option to toggle ID visibilities globally
- Validation check for QT GUI hints
- Python snippets
- block header parsing tool (GSoC 2019)
- option to convert blacklisted files
sig_source
:cmd
port adds support for dicts, setting of frequency, amplitude, offset and phase parameters
selector
now has control message ports- Rotator-based freq shift convenience wrapper
- Message-to-Variable and vice versa blocks
- DC Spike removal
- IQ Swap
- Complex to interleaved char / short: scaling option
- Delay block: control message port
- Phase Shift block with message port
wavfile_sink
,_source
can now deal with a lot of audio formats: uncompressed WAV/AIFF, µ- and A-law compressed audio, OGG/Vorbis, FLAC, even octave files- Stream Demux, which demuxes streams according to lengths vector
rotator
:phase()
getter
- OFDM: multiple CP lengths
ofdm_equalizer_simpledfe
:enable_soft_output
- Constellation Encoder
- Constellation: normalization options
{en,de}code_rs_8
,{en,de}code_rs_ccsds
: Reed-Solomon en- and decoders
- Windows:
- Gaussian
- Flat Top
- Tukey
- Window build() call now with default beta
- GRC: File taps loader block
- Low pass FFT filter convenience wrapper
- ichar / ishort decimator
- phase continuity for
freq_xlating_fir_filter
gr-network
: a whole new networking blocks module!- TCP
- UDP
- Much better lockup/multithreading support than 3.7-era
blks2
nightmare infrastructure :)
- Azimuth/Elevation plot
- Autocorrelation plot
- Compass visualization
- Dial control
- Gauge: dial, level
- Distance plot
- LED-like indicator
- Message-passing check box
- Message-passing numeric control
- Message-passing push button
- Toggle Button
- Eye sink
- Vertical slider
- Filter API
- UHD 4.0 support
- Power Reference API
- Bidirectional setting messages on both sink, source
- Codec2 dev branch support
- FreeDV: In/output rates can differ
- FreeDV: text message output
- C++ GRC templates
- Tag filtering for tag-forwarding blocks
- VOLK is no longer a submodule
- Sphinx: consolidate into doxygen, or wiki-maintained block list.
- Python 2
- SWIG
gru
python module
circular_file.cc
math/common_factor.hpp
bin_statistics_f
log2_const
- PFB clock sync:
set_taps
- deprecated old OFDM infrastructur
ofdm_frame_acquisition
ofdm_frame_sink
ofdm_insert_preamble
ofdm_sync_fixed
ofdm_sync_pn
ofdm_sync_pnac
ofdm_sync_ml
ofdm_receiver
digital_voice
malloc_float
,_double
: rely on VOLK- Goertzel: dtor superfluous
- deprecated window function duplicates (use them from gr-fft!)
- CMake: Qwt, Log4Cpp detection
- ctrlport strings unicodified
- Freedesktop install script was not executed
- Redundant icons installed
- Path substitution on Windows was backslash-broken
- YAML definitions: more than I can count
- Cross-building: py interpreter at runtime != build time
- ctrlport: unholy stored reference to stack-allocated object removed
- Sine table generation for fixed point math
gr_unittest
:floatAlmostEqual
had a lot of false passes due abuse ofall()
get_tags_in_range
fordelay < (end-start)
- Premature tag pruning
- release flattened flowgraph after stopping, fixes restartability/shutdown problem
- PMT serialization portability
- latency issue caused by setting block alias on msg block
- Windows logging errors
- ctrlport: Thrift >= 0.13 broke
- Tab widget ID visibilities
- A lot of YAML templates
- Default setting in qtgui chooser restored
- Boolean parameters no longer switch buttons
- Nested namespace handling
- Don't rely on set ordering in tests
- configparser import
- input box color theme on dark themes
- Search box typing doesn't inadvertedly interact with the rest of GRC anymore
- Empty argument lists allowed
- Boost UTF replaced CppUnit, this needed to be done here, too
wfm
left/right, filters
- portaudio: lock acquisition was improper
- Throttle now uses monotonic clock
- Tag debug only saved last
work
call's tags - File sink flushes on
stop
gr_read_file_metadata.py
used to loserx_time
precision- File source big file handling under Windows
file_*
:fseek
errors used to be ignored
map_bb
: thread safety, buffer overflowsadditive_scrambler
: reset was broken- Constellation scalefactor wasn't always initialized
- long-standing
qa_header_payload_demux
bug addressed by waiting for both RX and TX, not only either - false triggers in
correlate_access_code
- rate mismatch in ATSC flowgraphs
async_decoder
Heap corruptioncc_encoder
: constraint length K > 8 led to wrong output
- thread safety of copy assignment/ctor
- log power FFT Python
variable_band_pass_filter
GRC complex taps input- RRC filter gain for alpha = 1
- Remove copies of image data in returns by using move semantics
- Remove bogus overriding in drawing functions of
plot_raster
,_waterfall
- Edit MSG box: don't require key to be set
- Don't check for Python2 libs
- Number Sink ignored averaging setting
- UHD apps: Py3 fixes
- USRP blocks: multichannel objects not properly populating channels
- YUV formats fixed
- Don't depend on deprecated ZMQ functionality (fix warnings, include what you use)
- Unhandled exceptions now handled, much calmer
- Avoid infinite blocking in
tb.stop()
by usingZMQ_LINGER
- Change of log method, and increase message verbosity
- Added
gr::prefs
-configurable logging interval for underflow, overflow and command time error ([uhd]
section,logging_interval_ms
key, milliseconds integer)
This is an API compatible update to GNU Radio 3.8. Code written for 3.8.X versions should compile and link without modification. The ABI is not guaranteed to be compatible, so a rebuild of OOT modules may be necessary.
- GRC now runs on Fedora 35 ... Gtk initialization checks were too strict
- Fix: dependent variables sometimes fail to evaluate
- Change type aliasing to allow interleaved short/byte to be connected to vectors of short/byte. Stricter type checking was added previously and caused some blocks to be unconnectable when using these types.
- Account for scale factor when computing drawing area size
- Tooltips fixed for categories and modules
- Fix yml file for Header/Payload Demux
- Add energy normalization for DVB-S2X constellations.
- Remove pyqwt and qt4 from filter_design
- Enable use of Qwt 6.2
- Remove unusable int type in Number Sink yml
- RangeWidget - implement Eng & EngSlider
At LEAST the following authors contributed to this release.
- Bill Muzika [email protected]
- Chris [email protected]
- Chris Vine [email protected]
- Clayton Smith [email protected]
- Doron Behar [email protected]
- Jeff Long [email protected]
- John Sallay [email protected]
- Josh Morman [email protected]
- Marcus Müller [email protected]
- Mark Pentler [email protected]
- Martin Braun [email protected]
- masw [email protected]
- Matt Mills [email protected]
- Nick Østergaard [email protected]
- Ron Economos [email protected]
- Ryan Volz [email protected]
- Sec [email protected]
- Volker Schroer
API is compatible with C++ code written against previous v3.8 releases.
ABI (link time) compatibility is not guaranteed. Out-of-tree C++ code linked to previous v3.8 releases should be rebuilt against this version.
- Fix drag and drop issue with Quartz
- Fix desync when dragging block
- Update disabled blocks if they depend on others
- Allow short and byte as valid types in an enum
- Fix evaluation of interdependent variables
- Set VERSION_PATH to 0 in new modules, instead of using GIT rev
- For Python3, return correct exeption ModuleNotFoundError instead of ImportError
- New Matrix Interleaver block
- Fix "hide" expressions in yml files
- Remove unused msg output port from Chunks To Symbols block yml
- Add "shift" parameter to Log Power FFT
- Fix: tags on the last sample were not shown
- Fix: U and V channels were reversed on sink blocks
At LEAST the following authors contributed to this release.
- Adrien Michel [email protected]
- David Winter [email protected]
- Emmanuel Blot [email protected]
- Håkon Vågsether [email protected]
- Jared Dulmage [email protected]
- Jason Uher [email protected]
- Jeff Long [email protected]
- Marc L [email protected]
- Marcus Müller [email protected]
- Martin Braun [email protected]
- Ron Economos [email protected]
- Volker Schroer
This is a PATCH level revision. The API is compatible with C++ code written for previous v3.8 releases. ABI (shared library signature) is intended to be compatible, so code linked against v3.8.3.0 should not require recompilation.
- Improved messages related to dependencies MPIR and GMP. Only one of these packages is required, and the previous error messages were confusing.
- Parameter expressions and/or values can be displayed in blocks on the flowgraph. Previously, only values were displayed. Look for the "Show Parameter ..." toggles under the View menu.
- Vector length is now correctly applied to all input ports.
- Validation has been improved. Raw types are validated. Port connections are checked by type rather than by item size.
- Variable names that cause conflicts in Python code (e.g., package names) are rejected.
- Bus logic fixes.
- Blocks can no longer be dragged off the screen and lost forever.
- VL-SNR bugs fixed (incorrect constants).
- Improve autoscaling for vector sinks.
- "File/Save" is disabled until the taps have been computed, and the GUI is reset after a save, to make it clearer which data is being saved.
- Entries are hidden for parameters that do not apply to the selected filter type.
At LEAST the following authors contributed to this release.
- 0xloem [email protected]
- Christophe Seguinot [email protected]
- David Pi [email protected]
- Igor Freire [email protected]
- Jeff Long [email protected]
- Josh Morman [email protected]
- Marcus Müller [email protected]
- Ron Economos [email protected]
- Solomon Tan [email protected]
- Volker Schroer
- Zackery Spytz [email protected]
API is compatible with C++ code written against previous v3.8 releases.
ABI (link time) compatibility is not guaranteed. Out-of-tree C++ code linked to previous v3.8 releases should be rebuilt against this version.
- Preference file path may be set using the
GR_PREFS_PATH
environment variable - Lower message latency, previously slow when block aliases were used
- PMT:
is_dict()
no longer returns True for PMT pairs, only for PMT dicts - Util gnuradio-config-info gets --print-all for those that want it all
- Allow Thrift versions up thorugh 0.13
- (internal) Build system improvements and fixes
- (internal) Reduce Boost usage by replacing bind() with lambdas supported in C++11
- Allow override of gr python dir by setting
-DGR_PYTHON_DIR
- Modtool will not try to add duplicate block names in a module
- Modtool can non-interactively add blocks with no parameters (
--argument-list=""
) - Modtool will use current installation prefix instead of /usr/local as source of templates
- Better handling of gui hints, avoid hiding widgets in cases where some have GUI hints and some do not
- Dark theme detection fix
- Add window size option for bokeh gui
- ALSA nperiods default increased to 32 frames to reduce drops (can be set in conf file under the
audio_alsa
section)
- File Source handles EOF properly in non-seekable files (e.g., pipes)
- File Source handles large files on Windows
- Several bounds checking and boundary condition improvements
- MSK timing error detector improvement
- Improvements to correlation estimator example
- Correlate Access Code will not trigger until it receives enough bits to compare to the access code
- Performance improvements
- Filter designer works with Qt5 and Python3
- Taps blocks (e.g., Low Pass Filter Taps) now propagate parameter changes
- Chooser label defaults now correct
- Frequency Sink max hold plot for half spectrum width option shows correctly
- Number Sink honors setting of 'avg' more consistently
- Add start time parameter to GRC blocks
- Add message handler for GPIO control messages
- Additional master clock rates in GRC blocks
- UHD source sends tags on center frequency change
- Correct YUV format options
- Connections no longer hang when flowgraph stops and other end is still connected (
ZMQ_LINGER
now set) - Receipt of bad PMTs logged (instead of exception)
At LEAST the following authors contributed to this release.
- alekhgupta1441 [email protected]
- A. Maitland Bottoms [email protected]
- Christophe Seguinot [email protected]
- Clayton Smith [email protected]
- David Pi [email protected]
- Derek Kozel [email protected]
- Doron Behar [email protected]
- duggabe [email protected]
- elms [email protected]
- gnieboer [email protected]
- Håkon Vågsether [email protected]
- Huang Rui [email protected]
- Jacob Gilbert [email protected]
- Jeff Long [email protected]
- Johannes Demel [email protected]
- Marcus Müller [email protected]
- Martin Braun [email protected]
- Matt Mills [email protected]
- Michael Dickens [email protected]
- mormj [email protected]
- Nick Foster [email protected]
- Nick Østergaard [email protected]
- Niki [email protected]
- Notou [email protected]
- rear1019 [email protected]
- Ron Economos [email protected]
- Ryan Volz [email protected]
- Sam Schmidt [email protected]
- Sebastian Koslowski [email protected]
- Steve Lunsford [email protected]
- Thomas Habets [email protected]
- Vasil Velichkov [email protected]
- Volker Schroer
- Zackery Spytz [email protected]
- Call SWIG without
-modern
flag if new enough to make that inherent, thus removing warnings
- Mako templating now
strict_undefined
- Show block comments by default
- dynamically updated block namespaces (execute imports from templates)
- Name-lookup detection of dark color themes, adjusted input box color scheme
dvb_bbscrambler
: LUT 8B alignment (private, but relevant for future usable optimization)
- incorrect "clear console" and "save console" labels
- generator:
flow_graph.py.mako
now contains import forprint_function
for compatibility in Py2 generation variable_config.block.yml
now properly handlesconfigparser
/ConfigParser
import- Change port types of all selected block on key-press cycling, not just first one
- Always check for Python version in flow graph generation, not only in specific block types
- Don't run stale flow graphs
- Prevent search keystrokes from modifying flowgraph
file_sink
flushes contents to file onstop()
file_meta_sink
block YAML: emit proper default PMT dict- XMLRPC client/server block templates: use Py3 XMLRPC when possible
soft_dec_lut_gen
now explicitly casts2.0**prec
toint
map_bb
: add missing definition of staticconstexpr size_t s_map_size
- Reduce
send_frame_size
in UHD examples (broken after UHD v3.13.0.3-rc1)
logpwrfft
YAML was hiding FFT length- FFT frequency range calculation was occasionally off due to abuse of
numpy.arange
- GRC band pass filter taps block: use
firdes.complex_band_pass
when complex firdes.root_raised_cosine
gain for unity alpha
qtgui_chooser
regained 3.7 capability to set default- Frequency Sink hovering now respects set units
- GRC blocks had optional stream inputs
- ignore
len_tag_name
in USRP Source YAML generator python uhd_fft
/uhd_siggen_gui
: import order of sip and Qt- GRC example block errors
- OS X: Meta modifier key support (eq. Ctrl on other platforms)
- configuration setting
show_block_comments
- Signal source
cmd
port
- Message-based ZMQ blocks take bind argument, as necessary for N:1 patterns. Changes ABI.
- Signal source
freq
port
- clang-tidy improvements
- Throw exceptions by value, catch by reference
emplace_back
where applicableempty()
instead ofvector::size() == 0
- Use CMake to check for endianness instead of
BOOST_BIG_ENDIAN
- Scipy becomes optional dependency (for polar channel code construction)
- use Boost.UTF instead of cppunit
- FindQwt paths
- floatAlmostEqual unittest assert function wrongly passing on sequence types
- Only require boost unittest when testing is enabled
- FindLOG4CPP typo
- numpy.fft(pack) imports
- several scipy imports that can be done with numpy alone
- block gateway shadowed system port
- Flaky message passing unit test contained timeout (not the test's job)
- ctrlport/
rpcaggregator
& Co: removed storage of references to scope-lifetime objects - Sine table generation python was wrong
get_tags_in_range
for delay < (end-start)- premature tag pruning
- release flattened flowgraph after stopping; fixes restartability/shutdown issues
- clipping in FM receiver: remove superfluous gain
- C++ generation for multiple blocks
- portaudio source: lock acquisition
- rotator VOLK workaround
map_bb
buffer overflowmap_bb
thread safetyadditive_scrambler
count based reset
- heap corruption in
async_decoder
cc_encoder
was broken for constraint lengths > 8
- restore Boost 1.53 compat
- no longer requiring unnecessary key in
edit_box_msg
- fixed examples under Py3
- multichannel objects not populating channels
- wrong use of
input
->raw_input
- allow empty argument list
- testing
- check for and deny TSB under Python
- QA addition bugs
- correct path for C++ QA tests
- several issues with YAML files
- nested objects now properly populate namespaces
- comments now included in block bounds calculation
- Wiki documentation link removed from OOT blocks' docs tab
- Dragging connections to auto-hide ports works now
- generated and re-generated several example flowgraphs
bokeh_layout
module name- Revert toggle buttons to text entry for bool block props, allowing GRC variables to be used
- Codec2 development branch / future compat
- Boost 1.71 compat
- CI now checks for formatting
- dot graphs now contain message edges
- Python wrapping for blocks'
set_affinity
and{g,s}et_alias
- UHD Filter API
- block affinity, buffer sizes available as advanced options for blocks
- testing
- Python snippets (please snippet responsibly!)
show_id
flag added to embedded python blocks, Probes- global option to toggle showing of IDs
- Help "Keyboard Shortcut" entry
sig_source
:freq
port will be removed in the future
sig_source
:cmd
port adds support for dicts, setting of frequency, amplitude, offset and phase parameters
Witness me!
Tonight, we release GNU Radio 3.8.0.0.
It's the first minor release version since more than six years, not without pride this community stands to face the brightest future SDR on general purpose hardware ever had.
Since we've not been documenting changes in the shape of a Changelog for the whole of the development that happened since GNU Radio 3.7.0, I'm afraid that these release notes will be more of a GLTL;DR (git log too long; didn't read) than a detailed account of what has changed.
What has _not** changed is the fact that GNU Radio is centered around a very simple truth:
Let the developers hack on DSP. Software interfaces are for humans, not the other way around.
And so, compared to the later 3.7 releases, nothing has fundamentally modified the way one develops signal processing systems with GNU Radio: You write blocks, and you combine blocks to be part of a larger signal processing flow graph.
With that as a success story, we of course have faced quite a bit of change in the systems we use to develop and in the people that develop GNU Radio. This has lead to several changes that weren't compatible with 3.7.
This is an excerpt only:
- Roughly 36 dBBug, (ETOOMANYBUGS)
- Fixed .so versioning
- C++11
- merged the wholeness of the
next
branch - Dependency version bumps: CMake, GCC, MSVC, Swig, Boost
- New dependencies: MPIR/GMP, Qt5, gsm, codec2
- Removed dependencies: libusb, Qt4, CppUnit
- Python: Python 2 & Python 3 compatible. 3.8 will be the last Py2k-compatible release series
- gengen was replaced by templates (if you don't know gengen, don't do any research; save yourself that sorrow)
- Modern CMake (as far as feasible at this point)
- VOLK version updated to v2.0.0
- .clang-format file now dictates coding style
- clang-format'ed the whole tree.
- installed CMake files now tell about configuration
- reworked fractional tag time handling, especially in the context of resamplers
- C++ generation as option
- YAML instead of XML
- removed
blks2
- much better canvas tooling
- consistent gobject usage
- ROUNDED ARROWS
- moving from Qt4 to Qt5
gr_modtool
now vastly improved
- improved versatility
- removed in-tree libgsm, libcodec2, use system-wide libs
- Modules
gr-comedi
,gr-fcd
andgr-wxgui
are gone
- nobody could remember who used this, or for what. It has seen 0 active code contributions in the 3.7 lifecycle
- python-based
packet_encoder
and related tools: Bugs that were sporadic and never fixed, so after long deprecation, we're removing it
- since it's currently untestable by the CI, it's being removed, as there was no code contributions. Generally, we strive to include all batteries with GNU Radio. Re-integration within a more general SDR interface would be desirable.
- removed PyQwt (dead) based tools
- Unmaintained, breaks on increasingly many systems, always was slower than Qtgui. We've been starting to tell people to migrate to Qt since at least 2015. Now, we're finally removing it.