mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-26 09:48:45 -05:00
DATV demod: fix DVB-S FEC 7/8 not recognized from the GUI
This commit is contained in:
parent
c149d25b0c
commit
df5822a570
@ -28,7 +28,7 @@
|
||||
const PluginDescriptor DATVDemodPlugin::m_ptrPluginDescriptor =
|
||||
{
|
||||
QString("DATV Demodulator"),
|
||||
QString("4.11.1"),
|
||||
QString("4.11.3"),
|
||||
QString("(c) F4HKW for SDRAngel using LeanSDR framework (c) F4DAV"),
|
||||
QString("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
@ -308,6 +308,8 @@ DATVDemodSettings::DATVCodeRate DATVDemodSettings::getCodeRateFromStr(const QStr
|
||||
return FEC45;
|
||||
} else if (str == "5/6") {
|
||||
return FEC56;
|
||||
} else if (str == "7/8") {
|
||||
return FEC78;
|
||||
} else if (str == "8/9") {
|
||||
return FEC89;
|
||||
} else if (str == "9/10") {
|
||||
|
Loading…
Reference in New Issue
Block a user