mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-08-04 06:52:26 -04:00
Stop device while changing channel set. Fixes #2332
This commit is contained in:
parent
460ebfbeb2
commit
3c3e5cf3df
@ -39,6 +39,7 @@
|
|||||||
#include "channel/channelutils.h"
|
#include "channel/channelutils.h"
|
||||||
#include "channel/channelapi.h"
|
#include "channel/channelapi.h"
|
||||||
#include "channel/channelgui.h"
|
#include "channel/channelgui.h"
|
||||||
|
#include "channel/channelwebapiutils.h"
|
||||||
#include "mainspectrum/mainspectrumgui.h"
|
#include "mainspectrum/mainspectrumgui.h"
|
||||||
#include "settings/preset.h"
|
#include "settings/preset.h"
|
||||||
#include "util/simpleserializer.h"
|
#include "util/simpleserializer.h"
|
||||||
@ -258,13 +259,48 @@ void DeviceUISet::loadDeviceSetSettings(
|
|||||||
m_mainSpectrumGUI->hide();
|
m_mainSpectrumGUI->hide();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_deviceSourceEngine) { // source device
|
// Stop device while changing channels
|
||||||
|
if (m_deviceAPI->state() == DeviceAPI::EngineState::StRunning)
|
||||||
|
{
|
||||||
|
int deviceIndex = m_deviceAPI->getDeviceSetIndex();
|
||||||
|
|
||||||
|
// Load settings after stopping device
|
||||||
|
auto connection = new QMetaObject::Connection();
|
||||||
|
*connection = connect(m_deviceAPI, &DeviceAPI::stateChanged, this, [=]() {
|
||||||
|
if (m_deviceAPI->state() != DeviceAPI::EngineState::StRunning)
|
||||||
|
{
|
||||||
|
// Load channel settings
|
||||||
|
if (m_deviceSourceEngine) {
|
||||||
loadRxChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
loadRxChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
||||||
} else if (m_deviceSinkEngine) { // sink device
|
} else if (m_deviceSinkEngine) {
|
||||||
loadTxChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
loadTxChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
||||||
} else if (m_deviceMIMOEngine) { // MIMO device
|
} else if (m_deviceMIMOEngine) {
|
||||||
loadMIMOChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
loadMIMOChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Restart device
|
||||||
|
ChannelWebAPIUtils::run(deviceIndex);
|
||||||
|
|
||||||
|
QObject::disconnect(*connection);
|
||||||
|
delete connection;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// We use WebAPI rather than m_deviceAPI->stopDeviceEngine();
|
||||||
|
// so that the start/stop button in the Device GUI is correctly updated
|
||||||
|
ChannelWebAPIUtils::stop(deviceIndex);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Load channel settings
|
||||||
|
if (m_deviceSourceEngine) {
|
||||||
|
loadRxChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
||||||
|
} else if (m_deviceSinkEngine) {
|
||||||
|
loadTxChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
||||||
|
} else if (m_deviceMIMOEngine) {
|
||||||
|
loadMIMOChannelSettings(preset, pluginAPI, workspaces, currentWorkspace);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void DeviceUISet::saveDeviceSetSettings(Preset* preset) const
|
void DeviceUISet::saveDeviceSetSettings(Preset* preset) const
|
||||||
|
Loading…
x
Reference in New Issue
Block a user