| 
									
										
										
										
											2017-09-26 23:19:49 +02:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2017-10-01 23:22:06 +02:00
										 |  |  | // Copyright (C) 2017 Edouard Griffiths, F4EXB.                                  //
 | 
					
						
							| 
									
										
										
										
											2017-09-26 23:19:49 +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:39:30 +02:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-09-26 23:19:49 +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/>.          //
 | 
					
						
							|  |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef PLUGINS_CHANNELRX_DEMODAM_AMDEMODSETTINGS_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELRX_DEMODAM_AMDEMODSETTINGS_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QByteArray>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-01 16:52:23 +02:00
										 |  |  | class Serializable; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-26 23:19:49 +02:00
										 |  |  | struct AMDemodSettings | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2018-05-13 22:30:50 +02:00
										 |  |  |     enum SyncAMOperation | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         SyncAMDSB, | 
					
						
							|  |  |  |         SyncAMUSB, | 
					
						
							|  |  |  |         SyncAMLSB | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-09-26 23:19:49 +02:00
										 |  |  |     qint32 m_inputFrequencyOffset; | 
					
						
							|  |  |  |     Real m_rfBandwidth; | 
					
						
							|  |  |  |     Real m_squelch; | 
					
						
							|  |  |  |     Real m_volume; | 
					
						
							|  |  |  |     bool m_audioMute; | 
					
						
							|  |  |  |     bool m_bandpassEnable; | 
					
						
							| 
									
										
										
										
											2017-09-27 00:55:33 +02:00
										 |  |  |     quint32 m_rgbColor; | 
					
						
							| 
									
										
										
										
											2017-11-19 03:38:07 +01:00
										 |  |  |     QString m_title; | 
					
						
							| 
									
										
										
										
											2017-10-01 16:52:23 +02:00
										 |  |  |     Serializable *m_channelMarker; | 
					
						
							| 
									
										
										
										
											2018-03-26 18:41:09 +02:00
										 |  |  |     QString m_audioDeviceName; | 
					
						
							| 
									
										
										
										
											2018-05-13 17:27:24 +02:00
										 |  |  |     bool m_pll; | 
					
						
							| 
									
										
										
										
											2018-05-13 22:30:50 +02:00
										 |  |  |     SyncAMOperation m_syncAMOperation; | 
					
						
							| 
									
										
										
										
											2019-05-20 16:31:15 +02:00
										 |  |  |     int m_streamIndex; //!< MIMO channel. Not relevant when connected to SI (single Rx).
 | 
					
						
							| 
									
										
										
										
											2018-12-13 23:52:09 +01:00
										 |  |  |     bool m_useReverseAPI; | 
					
						
							|  |  |  |     QString m_reverseAPIAddress; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIPort; | 
					
						
							| 
									
										
										
										
											2018-12-14 08:51:01 +01:00
										 |  |  |     uint16_t m_reverseAPIDeviceIndex; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIChannelIndex; | 
					
						
							| 
									
										
										
										
											2017-09-26 23:19:49 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  |     AMDemodSettings(); | 
					
						
							|  |  |  |     void resetToDefaults(); | 
					
						
							| 
									
										
										
										
											2017-10-01 16:52:23 +02:00
										 |  |  |     void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; } | 
					
						
							| 
									
										
										
										
											2017-09-26 23:19:49 +02:00
										 |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* PLUGINS_CHANNELRX_DEMODAM_AMDEMODSETTINGS_H_ */
 |