1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-09-27 15:26:33 -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 =
{
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,

View File

@ -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") {