mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
WDSP receiver: added to Web API mapper
This commit is contained in:
parent
80b2370bc3
commit
7f960824f5
@ -4774,6 +4774,12 @@ bool WebAPIRequestMapper::getChannelSettings(
|
||||
channelSettings->getWfmModSettings()->init();
|
||||
channelSettings->getWfmModSettings()->fromJsonObject(settingsJsonObject);
|
||||
}
|
||||
else if (channelSettingsKey == "WDSPRxSettings")
|
||||
{
|
||||
channelSettings->setWdspRxSettings(new SWGSDRangel::SWGWDSPRxSettings());
|
||||
channelSettings->getWdspRxSettings()->init();
|
||||
channelSettings->getWdspRxSettings()->fromJsonObject(settingsJsonObject);
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
|
@ -77,6 +77,7 @@ const QMap<QString, QString> WebAPIUtils::m_channelURIToSettingsKey = {
|
||||
{"sdrangel.channel.rttymod", "RTTYModSettings"},
|
||||
{"sdrangel.channeltx.modssb", "SSBModSettings"},
|
||||
{"sdrangel.channel.ssbdemod", "SSBDemodSettings"},
|
||||
{"sdrangel.channel.wdsprx", "WDSPRxSettings"},
|
||||
{"sdrangel.channel.ft8demod", "FT8DemodSettings"},
|
||||
{"de.maintech.sdrangelove.channel.ssb", "SSBDemodSettings"}, // remap
|
||||
{"sdrangel.channel.radioastronomy", "RadioAstronomySettings"},
|
||||
@ -199,6 +200,7 @@ const QMap<QString, QString> WebAPIUtils::m_channelTypeToSettingsKey = {
|
||||
{"RTTYMod", "RTTYModSettings"},
|
||||
{"SSBMod", "SSBModSettings"},
|
||||
{"SSBDemod", "SSBDemodSettings"},
|
||||
{"WDSPRx", "WDSPRxSettings"},
|
||||
{"FT8Demod", "FT8DemodSettings"},
|
||||
{"UDPSink", "UDPSinkSettings"},
|
||||
{"UDPSource", "UDPSourceSettings"},
|
||||
|
Loading…
Reference in New Issue
Block a user