diff --git a/CHANGELOG b/CHANGELOG index e4f06134b..487d11e1b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,13 @@ +sdrangel (6.14.0-1) unstable; urgency=medium + + * New noise figure Rx channel plugin PR #917 and #919 + * GLscope rework featuring a multiple I/Q stream input. Issues #898 and #872 + * ADS-B demod: Delete m_worker after removing sink from DSP. PR #916 Issue #915 + * ADS-B demod: ADSBDemodWorker: check running state before actual start/stop + * GS232: SPID rotator fixes. PR #914 + + -- Edouard Griffiths, F4EXB Sat, 11 Jun 2021 17:44:52 +0200 + sdrangel (6.13.0-1) unstable; urgency=medium * New antenna tool feature PR #906 diff --git a/CMakeLists.txt b/CMakeLists.txt index e0b54be38..4b3b727f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # configure version set(sdrangel_VERSION_MAJOR "6") -set(sdrangel_VERSION_MINOR "13") +set(sdrangel_VERSION_MINOR "14") set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_SUFFIX "") diff --git a/debian/changelog b/debian/changelog index b48af9251..3f4ad1fd3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +sdrangel (6.14.0-1) unstable; urgency=medium + + * New noise figure Rx channel plugin PR #917 and #919 + * GLscope rework featuring a multiple I/Q stream input. Issues #898 and #872 + * ADS-B demod: Delete m_worker after removing sink from DSP. PR #916 Issue #915 + * ADS-B demod: ADSBDemodWorker: check running state before actual start/stop + * GS232: SPID rotator fixes. PR #914 + + -- Edouard Griffiths, F4EXB Sat, 11 Jun 2021 17:44:52 +0200 + sdrangel (6.13.0-1) unstable; urgency=medium * New antenna tool feature PR #906 diff --git a/plugins/channelmimo/interferometer/interferometerplugin.cpp b/plugins/channelmimo/interferometer/interferometerplugin.cpp index 45cff85be..95d779284 100644 --- a/plugins/channelmimo/interferometer/interferometerplugin.cpp +++ b/plugins/channelmimo/interferometer/interferometerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { Interferometer::m_channelId, QStringLiteral("Interferometer"), - QStringLiteral("6.0.0"), + QStringLiteral("6.14.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp index 5aa4e303a..16781eeb5 100644 --- a/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp +++ b/plugins/channelrx/chanalyzer/chanalyzerplugin.cpp @@ -26,7 +26,7 @@ const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { ChannelAnalyzer::m_channelId, QStringLiteral("Channel Analyzer"), - QStringLiteral("6.7.0"), + QStringLiteral("6.14.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/channelrx/demodchirpchat/readme.md b/plugins/channelrx/demodchirpchat/readme.md index 7090f81c1..d4bd871e3 100644 --- a/plugins/channelrx/demodchirpchat/readme.md +++ b/plugins/channelrx/demodchirpchat/readme.md @@ -11,10 +11,14 @@ LoRa is a property of Semtech and the details of the protocol are not made publi - To get an idea of what is LoRa: [here](https://www.link-labs.com/blog/what-is-lora) - A detailed inspection of LoRa modulation and protocol: [here](https://static1.squarespace.com/static/54cecce7e4b054df1848b5f9/t/57489e6e07eaa0105215dc6c/1464376943218/Reversing-Lora-Knight.pdf) -Transmissions from the RN2483 module with the Distance Enhancement feature (spread factors 11 and 12) could be successfully received. It has not been tested with Semtech SX127x hardware. This LoRa decoder is designed for experimentation. For production grade applications it is recommended to use dedicated hardware instead. +⚠ Only spread factors of 11 and 12 are working in LoRa mode thus with the distance enhancement active (DE=2) + +Transmissions from the RN2483 module (SF=11 and SF=12 with DE=2) could be successfully received. It has not been tested with Semtech SX127x hardware. This LoRa decoder is designed for experimentation. For production grade applications it is recommended to use dedicated hardware instead. Modulation characteristics from LoRa have been augmented with more bandwidths and FFT bin collations (DE factor). Plain TTY and ASCII have also been added and there are plans to add some more complex typically amateur radio MFSK based modes like JT65. +In any case it is recommended to use a non zero distance enhancement factor for successful transmissions. + Note: this plugin is officially supported since version 6.

Interface

diff --git a/plugins/channelrx/noisefigure/noisefigureplugin.cpp b/plugins/channelrx/noisefigure/noisefigureplugin.cpp index 3a71b68bd..3725ffb22 100644 --- a/plugins/channelrx/noisefigure/noisefigureplugin.cpp +++ b/plugins/channelrx/noisefigure/noisefigureplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = { NoiseFigure::m_channelId, QStringLiteral("Noise Figure"), - QStringLiteral("6.13.1"), + QStringLiteral("6.14.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp index 4d1b9f56f..ba3c359a9 100644 --- a/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp +++ b/plugins/feature/demodanalyzer/demodanalyzerplugin.cpp @@ -29,7 +29,7 @@ const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { DemodAnalyzer::m_featureId, QStringLiteral("Demod Analyzer"), - QStringLiteral("6.7.0"), + QStringLiteral("6.14.0"), QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("https://github.com/f4exb/sdrangel"), true, diff --git a/plugins/feature/gs232controller/gs232controllerplugin.cpp b/plugins/feature/gs232controller/gs232controllerplugin.cpp index b8974314c..464829d06 100644 --- a/plugins/feature/gs232controller/gs232controllerplugin.cpp +++ b/plugins/feature/gs232controller/gs232controllerplugin.cpp @@ -30,7 +30,7 @@ const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { GS232Controller::m_featureId, QStringLiteral("GS-232 Rotator Controller"), - QStringLiteral("6.13.1"), + QStringLiteral("6.14.0"), QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("https://github.com/f4exb/sdrangel"), true,