sdrangel/plugins/channelrx/demodft8/ft8demodworker.h

87 lines
3.3 KiB
C
Raw Normal View History

2023-01-18 17:00:59 -05:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2023 Edouard Griffiths, F4EXB //
// //
// 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 //
// (at your option) any later version. //
// //
// 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_FT8DEMODWORKER_H
#define INCLUDE_FT8DEMODWORKER_H
#include <QObject>
2023-01-19 17:51:43 -05:00
#include "ft8.h"
#include "unpack.h"
2023-01-18 17:00:59 -05:00
class QDateTime;
2023-01-19 17:51:43 -05:00
class MessageQueue;
class MsgReportFT8Messages;
2023-01-18 17:00:59 -05:00
class FT8DemodWorker : public QObject
{
Q_OBJECT
public:
FT8DemodWorker();
~FT8DemodWorker();
void processBuffer(int16_t *buffer, QDateTime periodTS);
2023-01-19 17:51:43 -05:00
void setRecordSamples(bool recordSamples) { m_recordSamples = recordSamples; }
void setLogMessages(bool logMessages) { m_logMessages = logMessages; }
void setNbDecoderThreads(int nbDecoderThreads) { m_nbDecoderThreads = nbDecoderThreads; }
void setDecoderTimeBudget(float decoderTimeBudget) { m_decoderTimeBudget = decoderTimeBudget; }
void setLowFrequency(int lowFreq) { m_lowFreq = lowFreq; }
void setHighFrequency(int highFreq) { m_highFreq = highFreq; }
void setReportingMessageQueue(MessageQueue *messageQueue) { m_reportingMessageQueue = messageQueue; }
2023-01-18 17:00:59 -05:00
private:
2023-01-19 17:51:43 -05:00
class FT8Callback : public FT8::CallbackInterface
{
public:
FT8Callback(const QDateTime& periodTS, FT8::Packing& packing);
virtual int hcb(
int *a91,
float hz0,
float off,
const char *comment,
float snr,
int pass,
int correct_bits
);
const std::map<std::string, bool>& getMsgMap() {
return cycle_already;
}
MsgReportFT8Messages *getReportMessage() {
return m_msgReportFT8Messages;
}
private:
QMutex cycle_mu;
std::map<std::string, bool> cycle_already;
FT8::Packing& m_packing;
MsgReportFT8Messages *m_msgReportFT8Messages;
const QDateTime& m_periodTS;
};
2023-01-18 17:00:59 -05:00
QString m_samplesPath;
2023-01-19 17:51:43 -05:00
bool m_recordSamples;
bool m_logMessages;
int m_nbDecoderThreads;
float m_decoderTimeBudget;
int m_lowFreq;
int m_highFreq;
FT8::FT8Decoder m_ft8Decoder;
FT8::Packing m_packing;
MessageQueue *m_reportingMessageQueue;
2023-01-18 17:00:59 -05:00
};
#endif // INCLUDE_FT8DEMODWORKER_H