| 
									
										
										
										
											2021-06-22 16:38:56 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | // Copyright (C) 2017 Edouard Griffiths, F4EXB.                                  //
 | 
					
						
							|  |  |  | // Copyright (C) 2021 Jon Beniston, M7RCE                                        //
 | 
					
						
							|  |  |  | //                                                                               //
 | 
					
						
							|  |  |  | // 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_RADIOCLOCKSETTINGS_H
 | 
					
						
							|  |  |  | #define INCLUDE_RADIOCLOCKSETTINGS_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QByteArray>
 | 
					
						
							|  |  |  | #include <QString>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "dsp/dsptypes.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Serializable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct RadioClockSettings | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     qint32 m_inputFrequencyOffset; | 
					
						
							|  |  |  |     Real m_rfBandwidth; | 
					
						
							|  |  |  |     Real m_threshold;               //!< For MSF and DCF in dB
 | 
					
						
							|  |  |  |     enum Modulation { | 
					
						
							|  |  |  |         MSF, | 
					
						
							|  |  |  |         DCF77, | 
					
						
							| 
									
										
										
										
											2021-07-22 15:08:55 +00:00
										 |  |  |         TDF, | 
					
						
							|  |  |  |         WWVB | 
					
						
							| 
									
										
										
										
											2021-06-22 16:38:56 +00:00
										 |  |  |     } m_modulation; | 
					
						
							|  |  |  |     enum DisplayTZ { | 
					
						
							|  |  |  |         BROADCAST, | 
					
						
							|  |  |  |         LOCAL, | 
					
						
							|  |  |  |         UTC | 
					
						
							|  |  |  |     } m_timezone; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     quint32 m_rgbColor; | 
					
						
							|  |  |  |     QString m_title; | 
					
						
							|  |  |  |     Serializable *m_channelMarker; | 
					
						
							|  |  |  |     int m_streamIndex; //!< MIMO channel. Not relevant when connected to SI (single Rx).
 | 
					
						
							|  |  |  |     bool m_useReverseAPI; | 
					
						
							|  |  |  |     QString m_reverseAPIAddress; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIPort; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIDeviceIndex; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIChannelIndex; | 
					
						
							|  |  |  |     Serializable *m_scopeGUI; | 
					
						
							| 
									
										
										
										
											2022-01-09 04:27:12 +00:00
										 |  |  |     Serializable *m_rollupState; | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  |     int m_workspaceIndex; | 
					
						
							|  |  |  |     QByteArray m_geometryBytes; | 
					
						
							| 
									
										
										
										
											2022-04-12 16:27:27 +00:00
										 |  |  |     bool m_hidden; | 
					
						
							| 
									
										
										
										
											2022-04-12 14:20:45 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-07-12 21:18:14 +00:00
										 |  |  |     static const int RADIOCLOCK_CHANNEL_SAMPLE_RATE = 1000; | 
					
						
							| 
									
										
										
										
											2021-07-22 15:08:55 +00:00
										 |  |  |     static const int m_scopeStreams = 8; | 
					
						
							| 
									
										
										
										
											2021-06-22 16:38:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     RadioClockSettings(); | 
					
						
							|  |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  |     void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; } | 
					
						
							| 
									
										
										
										
											2022-01-09 04:27:12 +00:00
										 |  |  |     void setRollupState(Serializable *rollupState) { m_rollupState = rollupState; } | 
					
						
							| 
									
										
										
										
											2021-06-22 16:38:56 +00:00
										 |  |  |     void setScopeGUI(Serializable *scopeGUI) { m_scopeGUI = scopeGUI; } | 
					
						
							|  |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							| 
									
										
										
										
											2021-07-22 15:08:55 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     enum DST { | 
					
						
							|  |  |  |         UNKNOWN, | 
					
						
							|  |  |  |         IN_EFFECT, | 
					
						
							|  |  |  |         NOT_IN_EFFECT, | 
					
						
							|  |  |  |         STARTING, | 
					
						
							|  |  |  |         ENDING | 
					
						
							|  |  |  |     };                              // Daylight savings status
 | 
					
						
							| 
									
										
										
										
											2021-06-22 16:38:56 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* INCLUDE_RADIOCLOCKSETTINGS_H */
 |