ChirpChat demod: updated readme. Updated versions and changelogs

This commit is contained in:
f4exb 2021-06-12 19:48:24 +02:00
parent 5da5f2dd40
commit 82f1004f28
9 changed files with 31 additions and 7 deletions

View File

@ -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 <f4exb06@gmail.com> Sat, 11 Jun 2021 17:44:52 +0200
sdrangel (6.13.0-1) unstable; urgency=medium sdrangel (6.13.0-1) unstable; urgency=medium
* New antenna tool feature PR #906 * New antenna tool feature PR #906

View File

@ -15,7 +15,7 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
# configure version # configure version
set(sdrangel_VERSION_MAJOR "6") set(sdrangel_VERSION_MAJOR "6")
set(sdrangel_VERSION_MINOR "13") set(sdrangel_VERSION_MINOR "14")
set(sdrangel_VERSION_PATCH "0") set(sdrangel_VERSION_PATCH "0")
set(sdrangel_VERSION_SUFFIX "") set(sdrangel_VERSION_SUFFIX "")

10
debian/changelog vendored
View File

@ -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 <f4exb06@gmail.com> Sat, 11 Jun 2021 17:44:52 +0200
sdrangel (6.13.0-1) unstable; urgency=medium sdrangel (6.13.0-1) unstable; urgency=medium
* New antenna tool feature PR #906 * New antenna tool feature PR #906

View File

@ -30,7 +30,7 @@
const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = { const PluginDescriptor InterferometerPlugin::m_pluginDescriptor = {
Interferometer::m_channelId, Interferometer::m_channelId,
QStringLiteral("Interferometer"), QStringLiteral("Interferometer"),
QStringLiteral("6.0.0"), QStringLiteral("6.14.0"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -26,7 +26,7 @@
const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = { const PluginDescriptor ChannelAnalyzerPlugin::m_pluginDescriptor = {
ChannelAnalyzer::m_channelId, ChannelAnalyzer::m_channelId,
QStringLiteral("Channel Analyzer"), QStringLiteral("Channel Analyzer"),
QStringLiteral("6.7.0"), QStringLiteral("6.14.0"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -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) - 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) - 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. &#9888; 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. 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. Note: this plugin is officially supported since version 6.
<h2>Interface</h2> <h2>Interface</h2>

View File

@ -29,7 +29,7 @@
const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = { const PluginDescriptor NoiseFigurePlugin::m_pluginDescriptor = {
NoiseFigure::m_channelId, NoiseFigure::m_channelId,
QStringLiteral("Noise Figure"), QStringLiteral("Noise Figure"),
QStringLiteral("6.13.1"), QStringLiteral("6.14.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -29,7 +29,7 @@
const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = { const PluginDescriptor DemodAnalyzerPlugin::m_pluginDescriptor = {
DemodAnalyzer::m_featureId, DemodAnalyzer::m_featureId,
QStringLiteral("Demod Analyzer"), QStringLiteral("Demod Analyzer"),
QStringLiteral("6.7.0"), QStringLiteral("6.14.0"),
QStringLiteral("(c) Edouard Griffiths, F4EXB"), QStringLiteral("(c) Edouard Griffiths, F4EXB"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -30,7 +30,7 @@
const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = { const PluginDescriptor GS232ControllerPlugin::m_pluginDescriptor = {
GS232Controller::m_featureId, GS232Controller::m_featureId,
QStringLiteral("GS-232 Rotator Controller"), QStringLiteral("GS-232 Rotator Controller"),
QStringLiteral("6.13.1"), QStringLiteral("6.14.0"),
QStringLiteral("(c) Jon Beniston, M7RCE"), QStringLiteral("(c) Jon Beniston, M7RCE"),
QStringLiteral("https://github.com/f4exb/sdrangel"), QStringLiteral("https://github.com/f4exb/sdrangel"),
true, true,