1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-22 07:38:59 -04:00

BladeRF plugin: cleanup of useless methods and attributes

This commit is contained in:
f4exb
2016-11-12 22:57:25 +01:00
parent 866b076ac9
commit 0d4426b8f4
3 changed files with 1 additions and 11 deletions
@@ -17,7 +17,7 @@
#include <stdio.h>
#include <errno.h>
#include "bladerfthread.h"
#include "../../../sdrbase/dsp/samplesinkfifo.h"
#include "dsp/samplesinkfifo.h"
@@ -27,7 +27,6 @@ BladerfThread::BladerfThread(struct bladerf* dev, SampleSinkFifo* sampleFifo, QO
m_dev(dev),
m_convertBuffer(BLADERF_BLOCKSIZE),
m_sampleFifo(sampleFifo),
m_samplerate(10),
m_log2Decim(0),
m_fcPos(0)
{
@@ -53,11 +52,6 @@ void BladerfThread::stopWork()
wait();
}
void BladerfThread::setSamplerate(int samplerate)
{
m_samplerate = samplerate;
}
void BladerfThread::setLog2Decimation(unsigned int log2_decim)
{
m_log2Decim = log2_decim;