mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-06-26 04:17:50 +02:00
Added start/stop commands to the rigctl server
This commit is contained in:
@ -613,6 +613,12 @@ private:
|
||||
else if (parts[0] == "q" || parts[0] == "\\quit") {
|
||||
// Will close automatically
|
||||
}
|
||||
else if (parts[0] == "\\start") {
|
||||
gui::mainWindow.setPlayState(true);
|
||||
}
|
||||
else if (parts[0] == "\\stop") {
|
||||
gui::mainWindow.setPlayState(false);
|
||||
}
|
||||
else if (parts[0] == "\\dump_state") {
|
||||
std::lock_guard lck(vfoMtx);
|
||||
resp =
|
||||
|
Reference in New Issue
Block a user