2018-09-04 19:32:29 -04:00
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
2019-01-22 17:39:12 -05:00
|
|
|
// Copyright (C) 2018-2019 Edouard Griffiths, F4EXB. //
|
2018-09-04 19:32:29 -04:00
|
|
|
// //
|
2019-01-22 17:39:12 -05:00
|
|
|
// Remote sink channel (Rx) UDP sender thread //
|
2018-09-04 19:32:29 -04:00
|
|
|
// //
|
2019-01-22 17:39:12 -05:00
|
|
|
// SDRangel can work as a detached SDR front end. With this plugin it can //
|
|
|
|
// sends the I/Q samples stream to another SDRangel instance via UDP. //
|
|
|
|
// It is controlled via a Web REST API. //
|
2018-09-04 19:32:29 -04: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 00:39:30 -04:00
|
|
|
// (at your option) any later version. //
|
2018-09-04 19:32:29 -04: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/>. //
|
|
|
|
///////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2019-01-22 17:39:12 -05:00
|
|
|
#ifndef INCLUDE_REMOTECHANNELSINKSETTINGS_H_
|
|
|
|
#define INCLUDE_REMOTECHANNELSINKSETTINGS_H_
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
#include <QByteArray>
|
2019-01-22 17:39:12 -05:00
|
|
|
#include <QString>
|
2018-09-04 19:32:29 -04:00
|
|
|
|
|
|
|
class Serializable;
|
|
|
|
|
2019-01-22 17:39:12 -05:00
|
|
|
struct RemoteSinkSettings
|
2018-09-04 19:32:29 -04:00
|
|
|
{
|
|
|
|
uint16_t m_nbFECBlocks;
|
2021-12-19 07:15:17 -05:00
|
|
|
uint32_t m_nbTxBytes;
|
2021-12-23 10:27:19 -05:00
|
|
|
quint64 m_deviceCenterFrequency;
|
2018-09-04 19:32:29 -04:00
|
|
|
QString m_dataAddress;
|
|
|
|
uint16_t m_dataPort;
|
2018-09-05 02:44:14 -04:00
|
|
|
quint32 m_rgbColor;
|
|
|
|
QString m_title;
|
2019-04-25 09:48:47 -04:00
|
|
|
uint32_t m_log2Decim;
|
|
|
|
uint32_t m_filterChainHash;
|
2019-09-22 19:25:17 -04:00
|
|
|
int m_streamIndex; //!< MIMO channel. Not relevant when connected to SI (single Rx).
|
2018-12-21 11:39:04 -05:00
|
|
|
bool m_useReverseAPI;
|
|
|
|
QString m_reverseAPIAddress;
|
|
|
|
uint16_t m_reverseAPIPort;
|
|
|
|
uint16_t m_reverseAPIDeviceIndex;
|
|
|
|
uint16_t m_reverseAPIChannelIndex;
|
2022-04-12 10:20:45 -04:00
|
|
|
int m_workspaceIndex;
|
|
|
|
QByteArray m_geometryBytes;
|
2022-04-12 12:27:27 -04:00
|
|
|
bool m_hidden;
|
2018-09-05 02:44:14 -04:00
|
|
|
|
|
|
|
Serializable *m_channelMarker;
|
2022-01-08 23:27:12 -05:00
|
|
|
Serializable *m_rollupState;
|
2018-09-04 19:32:29 -04:00
|
|
|
|
2019-01-22 17:39:12 -05:00
|
|
|
RemoteSinkSettings();
|
2018-09-04 19:32:29 -04:00
|
|
|
void resetToDefaults();
|
2018-09-05 02:44:14 -04:00
|
|
|
void setChannelMarker(Serializable *channelMarker) { m_channelMarker = channelMarker; }
|
2022-01-08 23:27:12 -05:00
|
|
|
void setRollupState(Serializable *rollupState) { m_rollupState = rollupState; }
|
2018-09-04 19:32:29 -04:00
|
|
|
QByteArray serialize() const;
|
|
|
|
bool deserialize(const QByteArray& data);
|
|
|
|
};
|
|
|
|
|
2019-01-22 17:39:12 -05:00
|
|
|
#endif /* INCLUDE_REMOTECHANNELSINKSETTINGS_H_ */
|