1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-05-24 11:12:27 -04:00

DATV demod: fix DVB-S FEC 7/8 not recognized from the GUI

This commit is contained in:
f4exb 2019-07-25 00:35:55 +02:00
parent c149d25b0c
commit df5822a570
2 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,7 @@
const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor = const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
{ {
QString("DATV Demodulator"), QString("DATV Demodulator"),
QString("4.11.1"), QString("4.11.3"),
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"), QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
QString("https://github.com/f4exb/sdrangel"), QString("https://github.com/f4exb/sdrangel"),
true, true,

View File

@ -308,6 +308,8 @@ DATVDemodSettings::DATVCodeRate DATVDemodSettings::getCodeRateFromStr(const QStr
return FEC45; return FEC45;
} else if (str == "5/6") { } else if (str == "5/6") {
return FEC56; return FEC56;
} else if (str == "7/8") {
return FEC78;
} else if (str == "8/9") { } else if (str == "8/9") {
return FEC89; return FEC89;
} else if (str == "9/10") { } else if (str == "9/10") {