/////////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2022 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_M17DEMODBASEBAND_H #define INCLUDE_M17DEMODBASEBAND_H #include #include #include "dsp/samplesinkfifo.h" #include "util/message.h" #include "util/messagequeue.h" #include "m17demodsink.h" class DownChannelizer; class ChannelAPI; class M17DemodBaseband : public QObject { Q_OBJECT public: class MsgConfigureM17DemodBaseband : public Message { MESSAGE_CLASS_DECLARATION public: const M17DemodSettings& getSettings() const { return m_settings; } const QList& getSettingsKeys() const { return m_settingsKeys; } bool getForce() const { return m_force; } static MsgConfigureM17DemodBaseband* create(const M17DemodSettings& settings, const QList& settingsKeys, bool force) { return new MsgConfigureM17DemodBaseband(settings, settingsKeys, force); } private: M17DemodSettings m_settings; QList m_settingsKeys; bool m_force; MsgConfigureM17DemodBaseband(const M17DemodSettings& settings, const QList& settingsKeys, bool force) : Message(), m_settings(settings), m_settingsKeys(settingsKeys), m_force(force) { } }; M17DemodBaseband(); ~M17DemodBaseband(); void reset(); void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end); MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; } //!< Get the queue for asynchronous inbound communication int getChannelSampleRate() const; int getAudioSampleRate() const { return m_sink.getAudioSampleRate(); } double getMagSq() { return m_sink.getMagSq(); } void getMagSqLevels(double& avg, double& peak, int& nbSamples) { m_sink.getMagSqLevels(avg, peak, nbSamples); } bool getSquelchOpen() const { return m_sink.getSquelchOpen(); } void setBasebandSampleRate(int sampleRate); void setScopeXYSink(BasebandSampleSink* scopeSink) { m_sink.setScopeXYSink(scopeSink); } void configureMyPosition(float myLatitude, float myLongitude) { m_sink.configureMyPosition(myLatitude, myLongitude); } void setChannel(ChannelAPI *channel); void setFifoLabel(const QString& label) { m_sampleFifo.setLabel(label); } void setAudioFifoLabel(const QString& label) { m_sink.setAudioFifoLabel(label); } void getDiagnostics( bool& dcd, float& evm, float& deviation, float& offset, int& status, int& sync_word_type, float& clock, int& sampleIndex, int& syncIndex, int& clockIndex, int& viterbiCost ) const { m_sink.getDiagnostics( dcd, evm, deviation, offset, status, sync_word_type, clock, sampleIndex, syncIndex, clockIndex, viterbiCost ); } void getBERT(uint32_t& bertErrors, uint32_t& bertBits) { m_sink.getBERT(bertErrors, bertBits); } void resetPRBS() { m_sink.resetPRBS(); } uint32_t getLSFCount() const { return m_sink.getLSFCount(); } const QString& getSrcCall() const { return m_sink.getSrcCall(); } const QString& getDestcCall() const { return m_sink.getDestcCall(); } const QString& getTypeInfo() const { return m_sink.getTypeInfo(); } const std::array& getMeta() const {return m_sink.getMeta(); } bool getHasGNSS() const { return m_sink.getHasGNSS(); } bool getStreamElsePacket() const { return m_sink.getStreamElsePacket(); } uint16_t getCRC() const { return m_sink.getCRC(); } int getStdPacketProtocol() const { return m_sink.getStdPacketProtocol(); } void setDemodInputMessageQueue(MessageQueue *messageQueue) { m_sink.setDemodInputMessageQueue(messageQueue); } private: SampleSinkFifo m_sampleFifo; DownChannelizer *m_channelizer; int m_channelSampleRate; M17DemodSink m_sink; MessageQueue m_inputMessageQueue; //!< Queue for asynchronous inbound communication M17DemodSettings m_settings; QRecursiveMutex m_mutex; bool handleMessage(const Message& cmd); void applySettings(const M17DemodSettings& settings, const QList& settingsKeys, bool force = false); private slots: void handleInputMessages(); void handleData(); //!< Handle data when samples have to be processed }; #endif // INCLUDE_M17DEMODBASEBAND_H