We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5acdab0 commit aa929a1Copy full SHA for aa929a1
misc_modules/rigctl_server/src/main.cpp
@@ -690,6 +690,11 @@ class SigctlServerModule : public ModuleManager::Instance {
690
"0\n" /* RIG_PARM_NONE */;
691
client->write(resp.size(), (uint8_t*)resp.c_str());
692
}
693
+ // This get_powerstat stuff is a wordaround for WSJT-X 2.7.0
694
+ else if (parts[0] == "\\get_powerstat") {
695
+ resp = "1\n";
696
+ client->write(resp.size(), (uint8_t*)resp.c_str());
697
+ }
698
else {
699
// If command is not recognized, return error
700
flog::error("Rigctl client sent invalid command: '{0}'", cmd);
0 commit comments