| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  | // Copyright (C) 2015-2018 Edouard Griffiths, F4EXB                              //
 | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02: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                  //
 | 
					
						
							| 
									
										
										
										
											2019-04-11 06:57:41 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 04:10:38 +02:00
										 |  |  | #ifndef INCLUDE_FCDPROTHREAD_H
 | 
					
						
							|  |  |  | #define INCLUDE_FCDPROTHREAD_H
 | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include <QThread>
 | 
					
						
							|  |  |  | #include <QMutex>
 | 
					
						
							|  |  |  | #include <QWaitCondition>
 | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-22 19:12:43 +02:00
										 |  |  | #include "dsp/samplesinkfifo.h"
 | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  | #include "dsp/decimators.h"
 | 
					
						
							|  |  |  | #include "fcdtraits.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class AudioFifo; | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 04:10:38 +02:00
										 |  |  | class FCDProThread : public QThread { | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 	Q_OBJECT | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | public: | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  | 	FCDProThread(SampleSinkFifo* sampleFifo, AudioFifo *fcdFIFO, QObject* parent = nullptr); | 
					
						
							| 
									
										
										
										
											2015-09-04 04:10:38 +02:00
										 |  |  | 	~FCDProThread(); | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 08:39:57 +02:00
										 |  |  | 	void startWork(); | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 	void stopWork(); | 
					
						
							| 
									
										
										
										
											2019-01-04 15:12:35 +01:00
										 |  |  | 	void setLog2Decimation(unsigned int log2_decim); | 
					
						
							| 
									
										
										
										
											2019-01-05 00:31:16 +01:00
										 |  |  | 	void setFcPos(int fcPos); | 
					
						
							| 
									
										
										
										
											2020-06-21 11:46:08 +02:00
										 |  |  |     void setIQOrder(bool iqOrder) { m_iqOrder = iqOrder; } | 
					
						
							| 
									
										
										
										
											2015-09-03 08:39:57 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | private: | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  | 	AudioFifo* m_fcdFIFO; | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	QMutex m_startWaitMutex; | 
					
						
							|  |  |  | 	QWaitCondition m_startWaiter; | 
					
						
							|  |  |  | 	bool m_running; | 
					
						
							| 
									
										
										
										
											2019-01-04 15:12:35 +01:00
										 |  |  | 	unsigned int m_log2Decim; | 
					
						
							| 
									
										
										
										
											2019-01-05 00:31:16 +01:00
										 |  |  | 	int m_fcPos; | 
					
						
							| 
									
										
										
										
											2020-06-21 11:46:08 +02:00
										 |  |  |     bool m_iqOrder; | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  |     qint16 m_buf[fcd_traits<Pro>::convBufSize*2]; // stereo (I, Q)
 | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 	SampleVector m_convertBuffer; | 
					
						
							| 
									
										
										
										
											2016-10-06 19:18:02 +02:00
										 |  |  | 	SampleSinkFifo* m_sampleFifo; | 
					
						
							| 
									
										
										
										
											2020-06-21 11:46:08 +02:00
										 |  |  | 	Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 16, true> m_decimatorsIQ; | 
					
						
							|  |  |  | 	Decimators<qint32, qint16, SDR_RX_SAMP_SZ, 16, false> m_decimatorsQI; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void run(); | 
					
						
							| 
									
										
										
										
											2020-06-21 11:46:08 +02:00
										 |  |  | 	void workIQ(unsigned int n_items); | 
					
						
							|  |  |  | 	void workQI(unsigned int n_items); | 
					
						
							| 
									
										
										
										
											2015-09-03 03:57:54 +02:00
										 |  |  | }; | 
					
						
							| 
									
										
										
										
											2018-11-20 01:48:17 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-04 04:10:38 +02:00
										 |  |  | #endif // INCLUDE_FCDPROTHREAD_H
 |