| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-19 05:24:06 +01:00
										 |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2020 Edouard Griffiths, F4EXB <f4exb06@gmail.com>          //
 | 
					
						
							|  |  |  | // Copyright (C) 2020 Jon Beniston, M7RCE <jon@beniston.com>                     //
 | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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 DEVICES_USRP_DEVICEUSRPSHARED_H_
 | 
					
						
							|  |  |  | #define DEVICES_USRP_DEVICEUSRPSHARED_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <cstddef>
 | 
					
						
							|  |  |  | #include "deviceusrpparam.h"
 | 
					
						
							|  |  |  | #include "util/message.h"
 | 
					
						
							|  |  |  | #include "export.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Structure shared by a buddy with other buddies | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | class DEVICES_API DeviceUSRPShared | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     class DEVICES_API MsgReportBuddyChange : public Message { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         int      getDevSampleRate() const { return m_devSampleRate; } | 
					
						
							|  |  |  |         uint64_t getCenterFrequency() const { return m_centerFrequency; } | 
					
						
							| 
									
										
										
										
											2020-10-25 11:57:48 +00:00
										 |  |  |         int      getLOOffset() const { return m_loOffset; } | 
					
						
							| 
									
										
										
										
											2020-10-26 14:39:12 +00:00
										 |  |  |         int      getMasterClockRate() const { return m_masterClockRate; } | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  |         bool getRxElseTx() const { return m_rxElseTx; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgReportBuddyChange* create( | 
					
						
							|  |  |  |                 int devSampleRate, | 
					
						
							|  |  |  |                 uint64_t centerFrequency, | 
					
						
							| 
									
										
										
										
											2020-10-25 11:57:48 +00:00
										 |  |  |                 int loOffset, | 
					
						
							| 
									
										
										
										
											2020-10-26 14:39:12 +00:00
										 |  |  |                 int masterClockRate, | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  |                 bool rxElseTx) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgReportBuddyChange( | 
					
						
							|  |  |  |                     devSampleRate, | 
					
						
							|  |  |  |                     centerFrequency, | 
					
						
							| 
									
										
										
										
											2020-10-25 11:57:48 +00:00
										 |  |  |                     loOffset, | 
					
						
							| 
									
										
										
										
											2020-10-26 14:39:12 +00:00
										 |  |  |                     masterClockRate, | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  |                     rxElseTx); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         int      m_devSampleRate;       //!< device/host sample rate
 | 
					
						
							|  |  |  |         uint64_t m_centerFrequency;     //!< Center frequency
 | 
					
						
							| 
									
										
										
										
											2020-10-25 11:57:48 +00:00
										 |  |  |         int      m_loOffset;            //!< LO offset
 | 
					
						
							| 
									
										
										
										
											2020-10-26 14:39:12 +00:00
										 |  |  |         int      m_masterClockRate;     //!< FPGA/RFIC sample rate
 | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  |         bool     m_rxElseTx;            //!< tells which side initiated the message
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgReportBuddyChange( | 
					
						
							|  |  |  |                 int devSampleRate, | 
					
						
							|  |  |  |                 uint64_t centerFrequency, | 
					
						
							| 
									
										
										
										
											2020-10-25 11:57:48 +00:00
										 |  |  |                 int loOffset, | 
					
						
							| 
									
										
										
										
											2020-10-26 14:39:12 +00:00
										 |  |  |                 int masterClockRate, | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  |                 bool rxElseTx) : | 
					
						
							|  |  |  |             Message(), | 
					
						
							|  |  |  |             m_devSampleRate(devSampleRate), | 
					
						
							|  |  |  |             m_centerFrequency(centerFrequency), | 
					
						
							| 
									
										
										
										
											2020-10-25 11:57:48 +00:00
										 |  |  |             m_loOffset(loOffset), | 
					
						
							| 
									
										
										
										
											2020-10-26 14:39:12 +00:00
										 |  |  |             m_masterClockRate(masterClockRate), | 
					
						
							| 
									
										
										
										
											2020-10-02 22:45:28 +01:00
										 |  |  |             m_rxElseTx(rxElseTx) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class DEVICES_API MsgReportClockSourceChange : public Message { | 
					
						
							|  |  |  |         MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         QString     getClockSource() const { return m_clockSource; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static MsgReportClockSourceChange* create(QString clockSource) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return new MsgReportClockSourceChange( | 
					
						
							|  |  |  |                     clockSource); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         QString     m_clockSource;      //!< "internal", "external", "gpsdo"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         MsgReportClockSourceChange(QString clockSource) : | 
					
						
							|  |  |  |             Message(), | 
					
						
							|  |  |  |             m_clockSource(clockSource) | 
					
						
							|  |  |  |         { } | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     class DEVICES_API ThreadInterface | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |     public: | 
					
						
							|  |  |  |         virtual void startWork() = 0; | 
					
						
							|  |  |  |         virtual void stopWork() = 0; | 
					
						
							|  |  |  |         virtual void setDeviceSampleRate(int sampleRate) = 0; | 
					
						
							|  |  |  |         virtual bool isRunning() = 0; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DeviceUSRPParams    *m_deviceParams; //!< unique hardware device parameters
 | 
					
						
							|  |  |  |     int                 m_channel;       //!< logical device channel number (-1 if none)
 | 
					
						
							|  |  |  |     ThreadInterface     *m_thread;       //!< holds the thread address if started else 0
 | 
					
						
							|  |  |  |     uint64_t            m_centerFrequency; | 
					
						
							|  |  |  |     uint32_t            m_log2Soft; | 
					
						
							|  |  |  |     bool                m_threadWasRunning; //!< flag to know if thread needs to be resumed after suspend
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     static const unsigned int m_sampleFifoMinRate; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     DeviceUSRPShared() : | 
					
						
							|  |  |  |         m_deviceParams(0), | 
					
						
							|  |  |  |         m_channel(-1), | 
					
						
							|  |  |  |         m_thread(0), | 
					
						
							|  |  |  |         m_centerFrequency(0), | 
					
						
							|  |  |  |         m_log2Soft(0), | 
					
						
							|  |  |  |         m_threadWasRunning(false) | 
					
						
							|  |  |  |     {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     ~DeviceUSRPShared() | 
					
						
							|  |  |  |     {} | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* DEVICES_USRP_DEVICEUSRPSHARED_H_ */
 |