| 
									
										
										
										
											2023-01-19 23:51:43 +01:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-19 06:43:20 +01:00
										 |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2019, 2023 Edouard Griffiths, F4EXB <f4exb06@gmail.com>    //
 | 
					
						
							| 
									
										
										
										
											2023-01-19 23:51:43 +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 INCLUDE_FT8MESSAGE_H
 | 
					
						
							|  |  |  | #define INCLUDE_FT8MESSAGE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | #include <QDateTime>
 | 
					
						
							|  |  |  | #include <QList>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "export.h"
 | 
					
						
							|  |  |  | #include "message.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct SDRBASE_API FT8Message | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     QDateTime ts; | 
					
						
							| 
									
										
										
										
											2023-01-28 11:39:44 +01:00
										 |  |  |     QString type; | 
					
						
							| 
									
										
										
										
											2023-01-19 23:51:43 +01:00
										 |  |  |     int pass; | 
					
						
							|  |  |  |     int snr; | 
					
						
							|  |  |  |     int nbCorrectBits; | 
					
						
							|  |  |  |     float dt; | 
					
						
							|  |  |  |     float df; | 
					
						
							|  |  |  |     QString call1; | 
					
						
							|  |  |  |     QString call2; | 
					
						
							|  |  |  |     QString loc; | 
					
						
							|  |  |  |     QString decoderInfo; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-23 08:03:04 +01:00
										 |  |  | class SDRBASE_API MsgReportFT8Messages : public Message { | 
					
						
							| 
									
										
										
										
											2023-01-19 23:51:43 +01:00
										 |  |  |     MESSAGE_CLASS_DECLARATION | 
					
						
							|  |  |  | public: | 
					
						
							|  |  |  |     QList<FT8Message>& getFT8Messages() { return m_ft8Messages; } | 
					
						
							| 
									
										
										
										
											2023-01-20 23:16:57 +01:00
										 |  |  |     void setBaseFrequency(qint64 baseFrequency) { m_baseFrequency = baseFrequency; } | 
					
						
							| 
									
										
										
										
											2023-01-19 23:51:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     static MsgReportFT8Messages* create() { | 
					
						
							|  |  |  |         return new MsgReportFT8Messages(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							|  |  |  |     QList<FT8Message> m_ft8Messages; | 
					
						
							| 
									
										
										
										
											2023-01-20 23:16:57 +01:00
										 |  |  |     qint64 m_baseFrequency; | 
					
						
							| 
									
										
										
										
											2023-01-19 23:51:43 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     MsgReportFT8Messages() : | 
					
						
							| 
									
										
										
										
											2023-01-20 23:16:57 +01:00
										 |  |  |         Message(), | 
					
						
							|  |  |  |         m_baseFrequency(0) | 
					
						
							| 
									
										
										
										
											2023-01-19 23:51:43 +01:00
										 |  |  |     { } | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // INCLUDE_FT8MESSAGE_H
 |