2015-09-03 01:57:54 +00:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
|
|
|
|
// written by Christian Daniel //
|
|
|
|
// //
|
|
|
|
// This program is free software; you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation as version 3 of the License, or //
|
2019-04-11 04:57:41 +00:00
|
|
|
// (at your option) any later version. //
|
2015-09-03 01:57:54 +00:00
|
|
|
// //
|
|
|
|
// This program is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License V3 for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef INCLUDE_FCDTHREAD_H
|
|
|
|
#define INCLUDE_FCDTHREAD_H
|
|
|
|
|
|
|
|
#include <QThread>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QWaitCondition>
|
2018-11-18 20:56:33 +00:00
|
|
|
|
2017-10-22 17:12:43 +00:00
|
|
|
#include "dsp/samplesinkfifo.h"
|
2018-11-19 01:33:44 +00:00
|
|
|
#include "dsp/decimators.h"
|
|
|
|
#include "fcdtraits.h"
|
|
|
|
|
|
|
|
class AudioFifo;
|
2015-09-03 01:57:54 +00:00
|
|
|
|
2015-09-04 02:10:38 +00:00
|
|
|
class FCDProPlusThread : public QThread {
|
2015-09-03 01:57:54 +00:00
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
2018-11-19 01:33:44 +00:00
|
|
|
FCDProPlusThread(SampleSinkFifo* sampleFifo, AudioFifo *fcdFIFO, QObject* parent = nullptr);
|
2015-09-04 02:10:38 +00:00
|
|
|
~FCDProPlusThread();
|
2015-09-03 01:57:54 +00:00
|
|
|
|
2015-09-03 06:39:57 +00:00
|
|
|
void startWork();
|
2015-09-03 01:57:54 +00:00
|
|
|
void stopWork();
|
2019-01-04 14:12:35 +00:00
|
|
|
void setLog2Decimation(unsigned int log2_decim);
|
2019-01-04 23:31:16 +00:00
|
|
|
void setFcPos(int fcPos);
|
2020-06-21 09:46:08 +00:00
|
|
|
void setIQOrder(bool iqOrder) { m_iqOrder = iqOrder; }
|
2015-09-03 06:39:57 +00:00
|
|
|
|
2015-09-03 01:57:54 +00:00
|
|
|
private:
|
2018-11-19 01:33:44 +00:00
|
|
|
AudioFifo* m_fcdFIFO;
|
2015-09-03 01:57:54 +00:00
|
|
|
|
|
|
|
QMutex m_startWaitMutex;
|
|
|
|
QWaitCondition m_startWaiter;
|
|
|
|
bool m_running;
|
2019-01-04 14:12:35 +00:00
|
|
|
unsigned int m_log2Decim;
|
2019-01-04 23:31:16 +00:00
|
|
|
int m_fcPos;
|
2020-06-21 09:46:08 +00:00
|
|
|
bool m_iqOrder;
|
2015-09-03 01:57:54 +00:00
|
|
|
|
2018-11-19 01:33:44 +00:00
|
|
|
qint16 m_buf[fcd_traits<ProPlus>::convBufSize*2]; // stereo (I, Q)
|
2015-09-03 01:57:54 +00:00
|
|
|
SampleVector m_convertBuffer;
|
2016-10-06 17:18:02 +00:00
|
|
|
SampleSinkFifo* m_sampleFifo;
|
2020-06-21 09:46:08 +00:00
|
|
|
Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 16, true> m_decimatorsIQ;
|
|
|
|
Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 16, false> m_decimatorsQI;
|
2015-09-03 01:57:54 +00:00
|
|
|
|
|
|
|
void run();
|
2020-06-21 09:46:08 +00:00
|
|
|
void workIQ(unsigned int n_items);
|
|
|
|
void workQI(unsigned int n_items);
|
2015-09-03 01:57:54 +00:00
|
|
|
};
|
|
|
|
#endif // INCLUDE_FCDTHREAD_H
|