| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  | ///////////////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2023-11-18 05:36:53 +00:00
										 |  |  | // Copyright (C) 2012 maintech GmbH, Otto-Hahn-Str. 15, 97204 Hoechberg, Germany //
 | 
					
						
							|  |  |  | // written by Christian Daniel                                                   //
 | 
					
						
							|  |  |  | // Copyright (C) 2015-2022 Edouard Griffiths, F4EXB <f4exb06@gmail.com>          //
 | 
					
						
							|  |  |  | // Copyright (C) 2021 Jon Beniston, M7RCE <jon@beniston.com>                     //
 | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00: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 04:39:30 +00:00
										 |  |  | // (at your option) any later version.                                           //
 | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00: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_CHANNELTX_MODNFM_NFMMODSETTINGS_H_
 | 
					
						
							|  |  |  | #define PLUGINS_CHANNELTX_MODNFM_NFMMODSETTINGS_H_
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <QByteArray>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-02 23:47:36 +00:00
										 |  |  | #include "dsp/cwkeyersettings.h"
 | 
					
						
							| 
									
										
										
										
											2024-04-20 09:51:29 +00:00
										 |  |  | #include "dsp/dsptypes.h"
 | 
					
						
							| 
									
										
										
										
											2019-08-02 23:47:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  | class Serializable; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct NFMModSettings | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2017-12-12 17:56:24 +00:00
										 |  |  |     typedef enum | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         NFMModInputNone, | 
					
						
							|  |  |  |         NFMModInputTone, | 
					
						
							|  |  |  |         NFMModInputFile, | 
					
						
							|  |  |  |         NFMModInputAudio, | 
					
						
							|  |  |  |         NFMModInputCWTone | 
					
						
							|  |  |  |     } NFMModInputAF; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 01:04:17 +00:00
										 |  |  |     static const int m_nbChannelSpacings; | 
					
						
							|  |  |  |     static const int m_channelSpacings[]; | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  |     static const int m_rfBW[]; | 
					
						
							| 
									
										
										
										
											2020-11-08 01:04:17 +00:00
										 |  |  |     static const int m_afBW[]; | 
					
						
							|  |  |  |     static const int m_fmDev[]; | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     qint64 m_inputFrequencyOffset; | 
					
						
							|  |  |  |     Real m_rfBandwidth; | 
					
						
							|  |  |  |     Real m_afBandwidth; | 
					
						
							|  |  |  |     float m_fmDeviation; | 
					
						
							|  |  |  |     float m_toneFrequency; | 
					
						
							|  |  |  |     float m_volumeFactor; | 
					
						
							|  |  |  |     bool m_channelMute; | 
					
						
							|  |  |  |     bool m_playLoop; | 
					
						
							|  |  |  |     bool m_ctcssOn; | 
					
						
							|  |  |  |     int  m_ctcssIndex; | 
					
						
							| 
									
										
										
										
											2021-04-12 10:03:33 +00:00
										 |  |  |     bool m_dcsOn; | 
					
						
							|  |  |  |     int m_dcsCode; | 
					
						
							|  |  |  |     bool m_dcsPositive; | 
					
						
							| 
									
										
										
										
											2022-06-04 06:47:10 +00:00
										 |  |  |     bool m_preEmphasisOn; | 
					
						
							|  |  |  |     bool m_bpfOn; | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  |     quint32 m_rgbColor; | 
					
						
							| 
									
										
										
										
											2017-11-19 18:14:33 +00:00
										 |  |  |     QString m_title; | 
					
						
							| 
									
										
										
										
											2017-12-12 17:56:24 +00:00
										 |  |  |     NFMModInputAF m_modAFInput; | 
					
						
							| 
									
										
										
										
											2019-07-30 16:31:24 +00:00
										 |  |  |     QString m_audioDeviceName;         //!< This is the audio device you get the audio samples from
 | 
					
						
							|  |  |  |     QString m_feedbackAudioDeviceName; //!< This is the audio device you send the audio samples to for audio feedback
 | 
					
						
							|  |  |  |     float m_feedbackVolumeFactor; | 
					
						
							| 
									
										
										
										
											2019-07-30 17:42:44 +00:00
										 |  |  |     bool m_feedbackAudioEnable; | 
					
						
							| 
									
										
										
										
											2022-08-15 11:09:49 +00:00
										 |  |  |     bool m_compressorEnable; | 
					
						
							| 
									
										
										
										
											2019-11-17 10:09:07 +00:00
										 |  |  |     int m_streamIndex; | 
					
						
							| 
									
										
										
										
											2018-12-20 05:04:14 +00:00
										 |  |  |     bool m_useReverseAPI; | 
					
						
							|  |  |  |     QString m_reverseAPIAddress; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIPort; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIDeviceIndex; | 
					
						
							|  |  |  |     uint16_t m_reverseAPIChannelIndex; | 
					
						
							| 
									
										
										
										
											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; | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     Serializable *m_channelMarker; | 
					
						
							|  |  |  |     Serializable *m_cwKeyerGUI; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-08-02 23:47:36 +00:00
										 |  |  |     CWKeyerSettings m_cwKeyerSettings; //!< For standalone deserialize operation (without m_cwKeyerGUI)
 | 
					
						
							| 
									
										
										
										
											2022-01-09 04:27:12 +00:00
										 |  |  |     Serializable *m_rollupState; | 
					
						
							| 
									
										
										
										
											2019-08-02 23:47:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  |     NFMModSettings(); | 
					
						
							|  |  |  |     void resetToDefaults(); | 
					
						
							|  |  |  |     void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; } | 
					
						
							| 
									
										
										
										
											2022-01-09 04:27:12 +00:00
										 |  |  |     void setRollupState(Serializable *rollupState) { m_rollupState = rollupState; } | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  |     void setCWKeyerGUI(Serializable *cwKeyerGUI) { m_cwKeyerGUI = cwKeyerGUI; } | 
					
						
							|  |  |  |     QByteArray serialize() const; | 
					
						
							|  |  |  |     bool deserialize(const QByteArray& data); | 
					
						
							| 
									
										
										
										
											2019-08-02 23:47:36 +00:00
										 |  |  |     const CWKeyerSettings& getCWKeyerSettings() const { return m_cwKeyerSettings; } | 
					
						
							|  |  |  |     void setCWKeyerSettings(const CWKeyerSettings& cwKeyerSettings) { m_cwKeyerSettings = cwKeyerSettings; } | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-08 01:04:17 +00:00
										 |  |  |     static int getChannelSpacing(int index); | 
					
						
							|  |  |  |     static int getChannelSpacingIndex(int channelSpacing); | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  |     static int getRFBW(int index); | 
					
						
							|  |  |  |     static int getRFBWIndex(int rfbw); | 
					
						
							| 
									
										
										
										
											2020-11-08 01:04:17 +00:00
										 |  |  |     static int getAFBW(int index); | 
					
						
							|  |  |  |     static int getAFBWIndex(int afbw); | 
					
						
							|  |  |  |     static int getFMDev(int index); | 
					
						
							|  |  |  |     static int getFMDevIndex(int fmDev); | 
					
						
							| 
									
										
										
										
											2020-10-31 21:56:12 +00:00
										 |  |  |     static int getNbCTCSSFreq(); | 
					
						
							| 
									
										
										
										
											2017-10-10 21:43:40 +00:00
										 |  |  |     static float getCTCSSFreq(int index); | 
					
						
							|  |  |  |     static int getCTCSSFreqIndex(float ctcssFreq); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif /* PLUGINS_CHANNELTX_MODNFM_NFMMODSETTINGS_H_ */
 |