1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 06:04:39 -04:00

HackRF output: removed useless method to set samplerate in the thread

This commit is contained in:
f4exb
2017-08-08 13:12:16 +02:00
parent 8297df0cd9
commit 287bf8120d
3 changed files with 2 additions and 15 deletions
@@ -27,7 +27,6 @@ HackRFOutputThread::HackRFOutputThread(hackrf_device* dev, SampleSourceFifo* sam
m_running(false),
m_dev(dev),
m_sampleFifo(sampleFifo),
m_samplerate(10),
m_log2Interp(0)
{
}
@@ -53,11 +52,6 @@ void HackRFOutputThread::stopWork()
wait();
}
void HackRFOutputThread::setSamplerate(uint32_t samplerate)
{
m_samplerate = samplerate;
}
void HackRFOutputThread::setLog2Interpolation(unsigned int log2Interp)
{
m_log2Interp = log2Interp;