mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-07-28 04:54:13 -04:00
UDP source Web API setting correction. UDP sink default port set to 9998
This commit is contained in:
@@ -658,7 +658,7 @@ int UDPSrc::webapiSettingsPutPatch(
|
||||
SWGSDRangel::SWGChannelSettings& response,
|
||||
QString& errorMessage __attribute__((unused)))
|
||||
{
|
||||
UDPSrcSettings settings;
|
||||
UDPSrcSettings settings = m_settings;
|
||||
bool frequencyOffsetChanged = false;
|
||||
|
||||
if (channelSettingsKeys.contains("outputSampleRate")) {
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
|
||||
const PluginDescriptor UDPSrcPlugin::m_pluginDescriptor = {
|
||||
QString("UDP Channel Source"),
|
||||
QString("4.0.2"),
|
||||
QString("4.0.7"),
|
||||
QString("(c) Edouard Griffiths, F4EXB"),
|
||||
QString("https://github.com/f4exb/sdrangel"),
|
||||
true,
|
||||
|
||||
@@ -46,7 +46,7 @@ void UDPSinkSettings::resetToDefaults()
|
||||
m_stereoInput = false;
|
||||
m_squelchEnabled = true;
|
||||
m_udpAddress = "127.0.0.1";
|
||||
m_udpPort = 9999;
|
||||
m_udpPort = 9998;
|
||||
m_rgbColor = QColor(225, 25, 99).rgb();
|
||||
m_title = "UDP Sample Sink";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user