mirror of
				https://github.com/f4exb/sdrangel.git
				synced 2025-10-31 13:00:26 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			167 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			167 lines
		
	
	
		
			6.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| ///////////////////////////////////////////////////////////////////////////////////
 | |
| // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | |
| // written by Christian Daniel                                                   //
 | |
| // Copyright (C) 2015-2021 Edouard Griffiths, F4EXB <f4exb06@gmail.com>          //
 | |
| // Copyright (C) 2022 Jiří Pinkava <jiri.pinkava@rossum.ai>                      //
 | |
| //                                                                               //
 | |
| // 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_INTERFEROMETERBASEBAND_H
 | |
| #define INCLUDE_INTERFEROMETERBASEBAND_H
 | |
| 
 | |
| #include <QObject>
 | |
| #include <QRecursiveMutex>
 | |
| 
 | |
| #include "dsp/samplemififo.h"
 | |
| #include "util/message.h"
 | |
| #include "util/messagequeue.h"
 | |
| #include "interferometerstreamsink.h"
 | |
| #include "interferometercorr.h"
 | |
| 
 | |
| class DownChannelizer;
 | |
| class BasebandSampleSink;
 | |
| class ScopeVis;
 | |
| class DeviceSampleSource;
 | |
| 
 | |
| class InterferometerBaseband : public QObject
 | |
| {
 | |
|     Q_OBJECT
 | |
| public:
 | |
|     class MsgConfigureChannelizer : public Message {
 | |
|         MESSAGE_CLASS_DECLARATION
 | |
| 
 | |
|     public:
 | |
|         int getLog2Decim() const { return m_log2Decim; }
 | |
|         int getFilterChainHash() const { return m_filterChainHash; }
 | |
| 
 | |
|         static MsgConfigureChannelizer* create(unsigned int log2Decim, unsigned int filterChainHash) {
 | |
|             return new MsgConfigureChannelizer(log2Decim, filterChainHash);
 | |
|         }
 | |
| 
 | |
|     private:
 | |
|         unsigned int m_log2Decim;
 | |
|         unsigned int m_filterChainHash;
 | |
| 
 | |
|         MsgConfigureChannelizer(unsigned int log2Decim, unsigned int filterChainHash) :
 | |
|             Message(),
 | |
|             m_log2Decim(log2Decim),
 | |
|             m_filterChainHash(filterChainHash)
 | |
|         { }
 | |
|     };
 | |
| 
 | |
|     class MsgConfigureCorrelation : public Message {
 | |
|         MESSAGE_CLASS_DECLARATION
 | |
| 
 | |
|     public:
 | |
|         InterferometerSettings::CorrelationType getCorrelationType() const { return m_correlationType; }
 | |
| 
 | |
|         static MsgConfigureCorrelation *create(InterferometerSettings::CorrelationType correlationType) {
 | |
|             return new MsgConfigureCorrelation(correlationType);
 | |
|         }
 | |
| 
 | |
|     private:
 | |
|         InterferometerSettings::CorrelationType m_correlationType;
 | |
| 
 | |
|         MsgConfigureCorrelation(InterferometerSettings::CorrelationType correlationType) :
 | |
|             Message(),
 | |
|             m_correlationType(correlationType)
 | |
|         {}
 | |
|     };
 | |
| 
 | |
|     class MsgSignalNotification : public Message {
 | |
|         MESSAGE_CLASS_DECLARATION
 | |
| 
 | |
|     public:
 | |
|         int getInputSampleRate() const { return m_inputSampleRate; }
 | |
|         qint64 getCenterFrequency() const { return m_centerFrequency; }
 | |
|         int getStreamIndex() const { return m_streamIndex; }
 | |
| 
 | |
|         static MsgSignalNotification* create(int inputSampleRate, qint64 centerFrequency, int streamIndex) {
 | |
|             return new MsgSignalNotification(inputSampleRate, centerFrequency, streamIndex);
 | |
|         }
 | |
|     private:
 | |
|         int m_inputSampleRate;
 | |
|         qint64 m_centerFrequency;
 | |
|         int m_streamIndex;
 | |
| 
 | |
|         MsgSignalNotification(int inputSampleRate, qint64 centerFrequency, int streamIndex) :
 | |
|             Message(),
 | |
|             m_inputSampleRate(inputSampleRate),
 | |
|             m_centerFrequency(centerFrequency),
 | |
|             m_streamIndex(streamIndex)
 | |
|         { }
 | |
|     };
 | |
| 
 | |
|     class MsgConfigureLocalDeviceSampleSource : public Message {
 | |
|         MESSAGE_CLASS_DECLARATION
 | |
| 
 | |
|     public:
 | |
|         static MsgConfigureLocalDeviceSampleSource* create(DeviceSampleSource *deviceSampleSource) {
 | |
|             return new MsgConfigureLocalDeviceSampleSource(deviceSampleSource);
 | |
|         }
 | |
| 
 | |
|         DeviceSampleSource *getDeviceSampleSource() const { return m_deviceSampleSource; }
 | |
| 
 | |
|     private:
 | |
| 
 | |
|         MsgConfigureLocalDeviceSampleSource(DeviceSampleSource *deviceSampleSource) :
 | |
|             Message(),
 | |
|             m_deviceSampleSource(deviceSampleSource)
 | |
|         { }
 | |
| 
 | |
|         DeviceSampleSource *m_deviceSampleSource;
 | |
|     };
 | |
| 
 | |
|     InterferometerBaseband(int fftSize);
 | |
|     ~InterferometerBaseband();
 | |
|     void reset();
 | |
| 
 | |
|     MessageQueue *getInputMessageQueue() { return &m_inputMessageQueue; } //!< Get the queue for asynchronous inbound communication
 | |
| 
 | |
|     void setSpectrumSink(BasebandSampleSink *spectrumSink) { m_spectrumSink = spectrumSink; }
 | |
|     void setScopeSink(ScopeVis *scopeSink) { m_scopeSink = scopeSink; }
 | |
|     void setPhase(int phase) { m_correlator.setPhase(phase); }
 | |
|     void setGain(int gain) { m_correlator.setGain(gain); }
 | |
| 
 | |
| 	void feed(const SampleVector::const_iterator& begin, const SampleVector::const_iterator& end, unsigned int streamIndex);
 | |
|     void setBasebandSampleRate(unsigned int sampleRate);
 | |
|     void play(bool play) { m_play = play; }
 | |
| 
 | |
| private:
 | |
|     void processFifo(const std::vector<SampleVector>& data, unsigned int ibegin, unsigned int iend);
 | |
|     void run();
 | |
|     bool handleMessage(const Message& cmd);
 | |
| 
 | |
|     InterferometerCorrelator m_correlator;
 | |
|     SampleMIFifo m_sampleMIFifo;
 | |
|     std::vector<SampleVector::const_iterator> m_vbegin;
 | |
|     int m_sizes[2];
 | |
|     InterferometerStreamSink m_sinks[2];
 | |
|     DownChannelizer *m_channelizers[2];
 | |
|     BasebandSampleSink *m_spectrumSink;
 | |
|     ScopeVis *m_scopeSink;
 | |
| 	MessageQueue m_inputMessageQueue; //!< Queue for asynchronous inbound communication
 | |
|     QRecursiveMutex m_mutex;
 | |
|     unsigned int m_lastStream;
 | |
|     DeviceSampleSource *m_localSampleSource;
 | |
|     bool m_play;
 | |
| 
 | |
| private slots:
 | |
|     void handleInputMessages();
 | |
|     void handleData(); //!< Handle data when samples have to be processed
 | |
| };
 | |
| 
 | |
| #endif // INCLUDE_INTERFEROMETERBASEBAND_H
 |