change retry and timeout for netrigctl to allow binary cmds from w command to work

pull/154/head
Michael Black 2019-12-06 07:57:44 -06:00
rodzic a91a44541c
commit de01f4768a
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 6599353EC683404D
1 zmienionych plików z 3 dodań i 3 usunięć

Wyświetl plik

@ -2044,7 +2044,7 @@ const struct rig_caps netrigctl_caps =
.rig_model = RIG_MODEL_NETRIGCTL,
.model_name = "NET rigctl",
.mfg_name = "Hamlib",
.version = "1.1b",
.version = "1.2",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rig_type = RIG_TYPE_OTHER,
@ -2052,8 +2052,8 @@ const struct rig_caps netrigctl_caps =
.ptt_type = RIG_PTT_RIG_MICDATA,
.dcd_type = RIG_DCD_RIG,
.port_type = RIG_PORT_NETWORK,
.timeout = 2000, /* enough for a network */
.retry = 3,
.timeout = 2500, /* enough for a network */
.retry = 1,
/* following fields updated in rig_state at openning time */
.has_get_func = RIG_FUNC_NONE,