/////////////////////////////////////////////////////////////////////////////////// // 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 . // /////////////////////////////////////////////////////////////////////////////////// #ifndef INCLUDE_FT8DEMODWORKER_H #define INCLUDE_FT8DEMODWORKER_H #include #include "ft8.h" #include "unpack.h" class QDateTime; class MessageQueue; class MsgReportFT8Messages; class FT8DemodWorker : public QObject { Q_OBJECT public: FT8DemodWorker(); ~FT8DemodWorker(); void processBuffer(int16_t *buffer, QDateTime periodTS); 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; } private: 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& getMsgMap() { return cycle_already; } MsgReportFT8Messages *getReportMessage() { return m_msgReportFT8Messages; } private: QMutex cycle_mu; std::map cycle_already; FT8::Packing& m_packing; MsgReportFT8Messages *m_msgReportFT8Messages; const QDateTime& m_periodTS; }; QString m_samplesPath; 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; }; #endif // INCLUDE_FT8DEMODWORKER_H