SDRAngel  4.11.5
Developer docs for <a href="https://github.com/f4exb/sdrangel">SDRangel<\a>, an Open Source Qt5 / OpenGL 3.0+ SDR and signal analyzer frontend to various hardware.
SWGXtrxInputSettings.h
Go to the documentation of this file.
1 
13 /*
14  * SWGXtrxInputSettings.h
15  *
16  * XTRX
17  */
18 
19 #ifndef SWGXtrxInputSettings_H_
20 #define SWGXtrxInputSettings_H_
21 
22 #include <QJsonObject>
23 
24 
25 #include <QString>
26 
27 #include "SWGObject.h"
28 #include "export.h"
29 
30 namespace SWGSDRangel {
31 
33 public:
35  SWGXtrxInputSettings(QString* json);
36  virtual ~SWGXtrxInputSettings();
37  void init();
38  void cleanup();
39 
40  virtual QString asJson () override;
41  virtual QJsonObject* asJsonObject() override;
42  virtual void fromJsonObject(QJsonObject &json) override;
43  virtual SWGXtrxInputSettings* fromJson(QString &jsonString) override;
44 
45  qint64 getCenterFrequency();
46  void setCenterFrequency(qint64 center_frequency);
47 
48  qint32 getDevSampleRate();
49  void setDevSampleRate(qint32 dev_sample_rate);
50 
51  qint32 getLog2HardDecim();
52  void setLog2HardDecim(qint32 log2_hard_decim);
53 
54  qint32 getDcBlock();
55  void setDcBlock(qint32 dc_block);
56 
57  qint32 getIqCorrection();
58  void setIqCorrection(qint32 iq_correction);
59 
60  qint32 getLog2SoftDecim();
61  void setLog2SoftDecim(qint32 log2_soft_decim);
62 
63  qint32 getLpfBw();
64  void setLpfBw(qint32 lpf_bw);
65 
66  qint32 getGain();
67  void setGain(qint32 gain);
68 
69  qint32 getNcoEnable();
70  void setNcoEnable(qint32 nco_enable);
71 
72  qint32 getNcoFrequency();
73  void setNcoFrequency(qint32 nco_frequency);
74 
75  qint32 getAntennaPath();
76  void setAntennaPath(qint32 antenna_path);
77 
78  qint32 getGainMode();
79  void setGainMode(qint32 gain_mode);
80 
81  qint32 getLnaGain();
82  void setLnaGain(qint32 lna_gain);
83 
84  qint32 getTiaGain();
85  void setTiaGain(qint32 tia_gain);
86 
87  qint32 getPgaGain();
88  void setPgaGain(qint32 pga_gain);
89 
90  qint32 getExtClock();
91  void setExtClock(qint32 ext_clock);
92 
93  qint32 getExtClockFreq();
94  void setExtClockFreq(qint32 ext_clock_freq);
95 
96  qint32 getPwrmode();
97  void setPwrmode(qint32 pwrmode);
98 
99  QString* getFileRecordName();
100  void setFileRecordName(QString* file_record_name);
101 
102  qint32 getUseReverseApi();
103  void setUseReverseApi(qint32 use_reverse_api);
104 
105  QString* getReverseApiAddress();
106  void setReverseApiAddress(QString* reverse_api_address);
107 
108  qint32 getReverseApiPort();
109  void setReverseApiPort(qint32 reverse_api_port);
110 
111  qint32 getReverseApiDeviceIndex();
112  void setReverseApiDeviceIndex(qint32 reverse_api_device_index);
113 
114 
115  virtual bool isSet() override;
116 
117 private:
120 
123 
126 
127  qint32 dc_block;
129 
132 
135 
136  qint32 lpf_bw;
138 
139  qint32 gain;
141 
142  qint32 nco_enable;
144 
147 
148  qint32 antenna_path;
150 
151  qint32 gain_mode;
153 
154  qint32 lna_gain;
156 
157  qint32 tia_gain;
159 
160  qint32 pga_gain;
162 
163  qint32 ext_clock;
165 
168 
169  qint32 pwrmode;
171 
174 
177 
180 
183 
186 
187 };
188 
189 }
190 
191 #endif /* SWGXtrxInputSettings_H_ */
#define SWG_API
Definition: export.h:124