1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-14 03:38:41 -04:00

BFM demod: fixed requiredBW method

This commit is contained in:
f4exb
2017-01-08 20:11:01 +01:00
parent c2c0c902d4
commit 0ad22f3cd4
3 changed files with 26 additions and 17 deletions
+13 -13
View File
@@ -15,7 +15,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
///////////////////////////////////////////////////////////////////////////////////
#include "../../channelrx/demodbfm/bfmdemodgui.h"
#include "bfmdemodgui.h"
#include <device/devicesourceapi.h>
#include <dsp/downchannelizer.h>
@@ -27,7 +27,7 @@
#include <iostream>
#include <iomanip>
#include "../../../sdrbase/dsp/threadedbasebandsamplesink.h"
#include "dsp/threadedbasebandsamplesink.h"
#include "dsp/dspengine.h"
#include "dsp/spectrumvis.h"
#include "gui/glspectrum.h"
@@ -37,8 +37,8 @@
#include "gui/basicchannelsettingswidget.h"
#include "mainwindow.h"
#include "../../channelrx/demodbfm/bfmdemod.h"
#include "../../channelrx/demodbfm/rdstmc.h"
#include "bfmdemod.h"
#include "rdstmc.h"
#include "ui_bfmdemodgui.h"
const QString BFMDemodGUI::m_channelID = "sdrangel.channel.bfm";
@@ -47,15 +47,15 @@ const int BFMDemodGUI::m_rfBW[] = {
80000, 100000, 120000, 140000, 160000, 180000, 200000, 220000, 250000
};
int requiredBW(int rfBW)
{
if (rfBW <= 48000)
return 48000;
else if (rfBW < 100000)
return 96000;
else
return 384000;
}
//int requiredBW(int rfBW)
//{
// if (rfBW <= 48000)
// return 48000;
// else if (rfBW < 100000)
// return 96000;
// else
// return 384000;
//}
BFMDemodGUI* BFMDemodGUI::create(PluginAPI* pluginAPI, DeviceSourceAPI *deviceAPI)
{