mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-05 08:21:16 -05:00
89 lines
3.5 KiB
C
89 lines
3.5 KiB
C
|
///////////////////////////////////////////////////////////////////////////////////
|
||
|
// Copyright (C) 2023 Edouard Griffiths, F4EXB //
|
||
|
// //
|
||
|
// 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 _AUDIOCATSISO_AUDIOCATSISOSETTINGS_H_
|
||
|
#define _AUDIOCATSISO_AUDIOCATSISOSETTINGS_H_
|
||
|
|
||
|
#include <QString>
|
||
|
#include "audio/audiodeviceinfo.h"
|
||
|
|
||
|
struct AudioCATSISOSettings {
|
||
|
typedef enum {
|
||
|
FC_POS_INFRA = 0,
|
||
|
FC_POS_SUPRA,
|
||
|
FC_POS_CENTER
|
||
|
} fcPos_t;
|
||
|
|
||
|
enum IQMapping {
|
||
|
LR,
|
||
|
RL,
|
||
|
L,
|
||
|
R
|
||
|
};
|
||
|
|
||
|
quint64 m_rxCenterFrequency;
|
||
|
quint64 m_txCenterFrequency;
|
||
|
bool m_transverterMode;
|
||
|
qint64 m_transverterDeltaFrequency;
|
||
|
bool m_iqOrder;
|
||
|
int m_streamIndex;
|
||
|
int m_spectrumStreamIndex; //!< spectrum source
|
||
|
bool m_txEnable;
|
||
|
|
||
|
QString m_rxDeviceName; // Including realm, as from getFullDeviceName below
|
||
|
IQMapping m_rxIQMapping;
|
||
|
unsigned int m_log2Decim;
|
||
|
fcPos_t m_fcPosRx;
|
||
|
bool m_dcBlock;
|
||
|
bool m_iqCorrection;
|
||
|
float m_rxVolume;
|
||
|
|
||
|
QString m_txDeviceName; // Including realm, as from getFullDeviceName below
|
||
|
IQMapping m_txIQMapping;
|
||
|
unsigned int m_log2Interp;
|
||
|
fcPos_t m_fcPosTx; //!< Not implemented yet
|
||
|
float m_txVolume; //!< Not implemented yet
|
||
|
|
||
|
bool m_useReverseAPI;
|
||
|
QString m_reverseAPIAddress;
|
||
|
uint16_t m_reverseAPIPort;
|
||
|
uint16_t m_reverseAPIDeviceIndex;
|
||
|
|
||
|
AudioCATSISOSettings();
|
||
|
AudioCATSISOSettings(const AudioCATSISOSettings& other);
|
||
|
void resetToDefaults();
|
||
|
QByteArray serialize() const;
|
||
|
bool deserialize(const QByteArray& data);
|
||
|
AudioCATSISOSettings& operator=(const AudioCATSISOSettings&) = default;
|
||
|
void applySettings(const QStringList& settingsKeys, const AudioCATSISOSettings& settings);
|
||
|
QString getDebugString(const QStringList& settingsKeys, bool force=false) const;
|
||
|
|
||
|
// Append realm to device names, because there may be multiple devices with the same name on Windows
|
||
|
static QString getFullDeviceName(const AudioDeviceInfo &deviceInfo)
|
||
|
{
|
||
|
QString realm = deviceInfo.realm();
|
||
|
if (realm != "" && realm != "default" && realm != "alsa")
|
||
|
return deviceInfo.deviceName() + " " + realm;
|
||
|
else
|
||
|
return deviceInfo.deviceName();
|
||
|
}
|
||
|
|
||
|
static int getSampleRateFromIndex(unsigned int index);
|
||
|
};
|
||
|
|
||
|
#endif /* _AUDIOCATSISO_AUDIOCATSISOSETTINGS_H_ */
|