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.
soapysdrinputsettings.h
Go to the documentation of this file.
1 // Copyright (C) 2018 Edouard Griffiths, F4EXB //
3 // //
4 // This program is free software; you can redistribute it and/or modify //
5 // it under the terms of the GNU General Public License as published by //
6 // the Free Software Foundation as version 3 of the License, or //
7 // (at your option) any later version. //
8 // //
9 // This program is distributed in the hope that it will be useful, //
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of //
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
12 // GNU General Public License V3 for more details. //
13 // //
14 // You should have received a copy of the GNU General Public License //
15 // along with this program. If not, see <http://www.gnu.org/licenses/>. //
17 
18 #ifndef PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTSETTINGS_H_
19 #define PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTSETTINGS_H_
20 
21 #include <QtGlobal>
22 #include <QString>
23 #include <QVariant>
24 #include <QMap>
25 
27  typedef enum {
31  } fcPos_t;
32 
34  qint32 m_LOppmTenths;
36  quint32 m_log2Decim;
37  fcPos_t m_fcPos;
43  QString m_antenna;
44  quint32 m_bandwidth;
45  QMap<QString, double> m_tunableElements;
46  qint32 m_globalGain;
47  QMap<QString, double> m_individualGains;
48  bool m_autoGain;
51  std::complex<double> m_dcCorrection;
52  std::complex<double> m_iqCorrection;
53  QMap<QString, QVariant> m_streamArgSettings;
54  QMap<QString, QVariant> m_deviceArgSettings;
59 
61  void resetToDefaults();
62  QByteArray serialize() const;
63  bool deserialize(const QByteArray& data);
64 
65 private:
66  QByteArray serializeNamedElementMap(const QMap<QString, double>& map) const;
67  void deserializeNamedElementMap(const QByteArray& data, QMap<QString, double>& map);
68  QByteArray serializeArgumentMap(const QMap<QString, QVariant>& map) const;
69  void deserializeArgumentMap(const QByteArray& data, QMap<QString, QVariant>& map);
70 };
71 
72 #endif /* PLUGINS_SAMPLESOURCE_SOAPYSDRINPUT_SOAPYSDRINPUTSETTINGS_H_ */
QMap< QString, QVariant > m_streamArgSettings
void deserializeNamedElementMap(const QByteArray &data, QMap< QString, double > &map)
std::complex< double > m_iqCorrection
QByteArray serializeNamedElementMap(const QMap< QString, double > &map) const
QMap< QString, QVariant > m_deviceArgSettings
void deserializeArgumentMap(const QByteArray &data, QMap< QString, QVariant > &map)
QMap< QString, double > m_tunableElements
unsigned short uint16_t
Definition: rtptypes_win.h:44
bool deserialize(const QByteArray &data)
std::complex< double > m_dcCorrection
QMap< QString, double > m_individualGains
QByteArray serialize() const
QByteArray serializeArgumentMap(const QMap< QString, QVariant > &map) const