mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-21 23:55:13 -05:00
add rsp1b to remote sinks/sources
This commit is contained in:
parent
3c7909620d
commit
24e3fb2d76
@ -61,7 +61,8 @@ public:
|
||||
SOAPY_SDR,
|
||||
TEST_SOURCE,
|
||||
USRP,
|
||||
XTRX
|
||||
XTRX,
|
||||
SDRPLAY_V3_RSP1B
|
||||
};
|
||||
|
||||
enum Command {
|
||||
|
@ -359,6 +359,7 @@ RemoteTCPProtocol::Device RemoteTCPSinkSink::getDevice()
|
||||
QHash<QString, RemoteTCPProtocol::Device> sdrplayMap = {
|
||||
{"RSP1", RemoteTCPProtocol::SDRPLAY_V3_RSP1},
|
||||
{"RSP1A", RemoteTCPProtocol::SDRPLAY_V3_RSP1A},
|
||||
{"RSP1B", RemoteTCPProtocol::SDRPLAY_V3_RSP1B},
|
||||
{"RSP2", RemoteTCPProtocol::SDRPLAY_V3_RSP2},
|
||||
{"RSPduo", RemoteTCPProtocol::SDRPLAY_V3_RSPDUO},
|
||||
{"RSPdx", RemoteTCPProtocol::SDRPLAY_V3_RSPDX},
|
||||
|
@ -312,6 +312,7 @@ const QHash<RemoteTCPProtocol::Device, const AndroidSDRDriverInputGui::DeviceGai
|
||||
{RemoteTCPProtocol::HACK_RF, &m_hackRFGains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1A, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1B, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP2, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDUO, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDX, &m_sdrplayV3Gains},
|
||||
|
@ -207,6 +207,7 @@ bool RemoteTCPInputGui::handleMessage(const Message& message)
|
||||
{RemoteTCPProtocol::SDRPLAY_1, "SDRplay1"},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1, "SDRplayV3 RSP1"},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1A, "SDRplayV3 RSP1A"},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1B, "SDRplayV3 RSP1B"},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP2, "SDRplayV3 RSP2"},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDUO, "SDRplayV3 RSPduo"},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDX, "SDRplayV3 RSPdx"},
|
||||
@ -408,6 +409,7 @@ const QHash<RemoteTCPProtocol::Device, const RemoteTCPInputGui::SampleRateRange
|
||||
{RemoteTCPProtocol::LIME_SDR, &m_limeSampleRateRange},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1, &m_sdrPlaySampleRateRange},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1A, &m_sdrPlaySampleRateRange},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1B, &m_sdrPlaySampleRateRange},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP2, &m_sdrPlaySampleRateRange},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDUO, &m_sdrPlaySampleRateRange},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDX, &m_sdrPlaySampleRateRange},
|
||||
@ -499,6 +501,7 @@ const QHash<RemoteTCPProtocol::Device, const RemoteTCPInputGui::DeviceGains *> R
|
||||
{RemoteTCPProtocol::LIME_SDR, &m_limeGains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1A, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP1B, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSP2, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDUO, &m_sdrplayV3Gains},
|
||||
{RemoteTCPProtocol::SDRPLAY_V3_RSPDX, &m_sdrplayV3Gains},
|
||||
|
@ -13460,7 +13460,7 @@ margin-bottom: 20px;
|
||||
"properties" : {
|
||||
"deviceType" : {
|
||||
"type" : "string",
|
||||
"description" : "SDRplay device type. Can be RSP1, RSP1A, RSP2, RSPduo, RSPdx, Unknown"
|
||||
"description" : "SDRplay device type. Can be RSP1, RSP1A, RSP1B, RSP2, RSPduo, RSPdx, Unknown"
|
||||
},
|
||||
"bandwidths" : {
|
||||
"type" : "array",
|
||||
|
@ -73,7 +73,7 @@ SDRPlayV3Report:
|
||||
properties:
|
||||
deviceType:
|
||||
type: string
|
||||
description: SDRplay device type. Can be RSP1, RSP1A, RSP2, RSPduo, RSPdx, Unknown
|
||||
description: SDRplay device type. Can be RSP1, RSP1A, RSP1B, RSP2, RSPduo, RSPdx, Unknown
|
||||
bandwidths:
|
||||
type: array
|
||||
items:
|
||||
|
@ -73,7 +73,7 @@ SDRPlayV3Report:
|
||||
properties:
|
||||
deviceType:
|
||||
type: string
|
||||
description: SDRplay device type. Can be RSP1, RSP1A, RSP2, RSPduo, RSPdx, Unknown
|
||||
description: SDRplay device type. Can be RSP1, RSP1A, RSP1B, RSP2, RSPduo, RSPdx, Unknown
|
||||
bandwidths:
|
||||
type: array
|
||||
items:
|
||||
|
@ -13460,7 +13460,7 @@ margin-bottom: 20px;
|
||||
"properties" : {
|
||||
"deviceType" : {
|
||||
"type" : "string",
|
||||
"description" : "SDRplay device type. Can be RSP1, RSP1A, RSP2, RSPduo, RSPdx, Unknown"
|
||||
"description" : "SDRplay device type. Can be RSP1, RSP1A, RSP1B, RSP2, RSPduo, RSPdx, Unknown"
|
||||
},
|
||||
"bandwidths" : {
|
||||
"type" : "array",
|
||||
|
Loading…
Reference in New Issue
Block a user