If get_powerstat fails assume rig is powered on -- should fix sdr++ problem

https://github.com/Hamlib/Hamlib/issues/1186
pull/1191/head
Mike Black W9MDB 2022-12-12 17:38:52 -06:00
rodzic df8b88072a
commit 5c4c2f7748
1 zmienionych plików z 10 dodań i 1 usunięć

Wyświetl plik

@ -2051,6 +2051,15 @@ static int netrigctl_get_powerstat(RIG *rig, powerstat_t *status)
ret = netrigctl_transaction(rig, cmd, strlen(cmd), buf);
if (ret == 1)
{
// was causing problems with sdr++ since it does not have PS command
// a return of 1 should indicate there is no powerstat command available
// so we fake the ON status
*status = RIG_POWER_ON;
return RIG_OK;
}
if (ret <= 0)
{
return (ret < 0) ? ret : -RIG_EPROTO;
@ -2725,7 +2734,7 @@ struct rig_caps netrigctl_caps =
RIG_MODEL(RIG_MODEL_NETRIGCTL),
.model_name = "NET rigctl",
.mfg_name = "Hamlib",
.version = "20221201.0",
.version = "20221212.0",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_OTHER,