diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1df914f..7943bc3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,27 @@ digital_rf Change Log .. current developments +v2.6.4 +==================== + +**Added:** + +* Add the "thorpluto" tool for writing data from the ADALM PLUTO using GNU Radio. This script requires gr-iio to run. Note that this script duplicates some of the functionality of the existing "thor" recorder script, and may be subsumed or arguments may change in a future consolidation. +* Option to use the CMake variable ``Python_EXECUTABLE`` to manually set the path to the Python interpreter (useful if autodetection fails or Python 2 is preferred). +* Add ``stop_on_time_tag`` parameter to the Digital RF Sink blocks, useful when time tags only happen for USRP dropped samples but the 'rx_time' tag value falsely indicates no drop. +* Add the "thorosmo" tool for writing data from osmosdr-supported receivers using GNU Radio, and add the "uhdtodrf" tool for writing data from UHD devices using the UHD Python API *without* using GNU Radio. Note that these scripts duplicate some of the functionality of the existing "thor" recorder script, and they may be subsumed or their arguments may change in a future consolidation. +* Add option to force polling for watchdog functions (ringbuffer, mirror, etc.), which is useful as a fallback when the default watchdog observer fails silently. + +**Changed:** + +* The ``thor.py`` script's ``stop_on_dropped`` parameter now includes the new ``stop_on_time_tag`` behavior. + +**Fixed:** + +* Fix an IndexError when using `stop_on_skipped` or `stop_on_time_tag` with `gr_digital_rf.digital_rf_channel_sink`. If the skip/tag happened with only one data block to be written, the IndexError would trigger upon trying to index to a second data block. + + + v2.6.3 ==================== diff --git a/news/drfsink_stop_indexerror_fix.rst b/news/drfsink_stop_indexerror_fix.rst deleted file mode 100644 index 0f11761..0000000 --- a/news/drfsink_stop_indexerror_fix.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Fix an IndexError when using `stop_on_skipped` or `stop_on_time_tag` with `gr_digital_rf.digital_rf_channel_sink`. If the skip/tag happened with only one data block to be written, the IndexError would trigger upon trying to index to a second data block. - -**Security:** - -* diff --git a/news/plutorecorder.rst b/news/plutorecorder.rst deleted file mode 100644 index 36e99ef..0000000 --- a/news/plutorecorder.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Add the "thorpluto" tool for writing data from the ADALM PLUTO using GNU Radio. This script requires gr-iio to run. Note that this script duplicates some of the functionality of the existing "thor" recorder script, and may be subsumed or arguments may change in a future consolidation. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/python_executable.rst b/news/python_executable.rst deleted file mode 100644 index d0fd22d..0000000 --- a/news/python_executable.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Option to use the CMake variable ``Python_EXECUTABLE`` to manually set the path to the Python interpreter (useful if autodetection fails or Python 2 is preferred). - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/stop_on_time_tag.rst b/news/stop_on_time_tag.rst deleted file mode 100644 index 141d141..0000000 --- a/news/stop_on_time_tag.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Add ``stop_on_time_tag`` parameter to the Digital RF Sink blocks, useful when time tags only happen for USRP dropped samples but the 'rx_time' tag value falsely indicates no drop. - -**Changed:** - -* The ``thor.py`` script's ``stop_on_dropped`` parameter now includes the new ``stop_on_time_tag`` behavior. - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/uhdtodrf.rst b/news/uhdtodrf.rst deleted file mode 100644 index e8beb36..0000000 --- a/news/uhdtodrf.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Add the "thorosmo" tool for writing data from osmosdr-supported receivers using GNU Radio, and add the "uhdtodrf" tool for writing data from UHD devices using the UHD Python API *without* using GNU Radio. Note that these scripts duplicate some of the functionality of the existing "thor" recorder script, and they may be subsumed or their arguments may change in a future consolidation. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -* diff --git a/news/watchdog_polling.rst b/news/watchdog_polling.rst deleted file mode 100644 index a34f78c..0000000 --- a/news/watchdog_polling.rst +++ /dev/null @@ -1,23 +0,0 @@ -**Added:** - -* Add option to force polling for watchdog functions (ringbuffer, mirror, etc.), which is useful as a fallback when the default watchdog observer fails silently. - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* - -**Security:** - -*