Disable rigctld error check with rig_close/rig_open -- more investigation needed

https://github.com/Hamlib/Hamlib/issues/556
pull/557/head
Michael Black W9MDB 2021-02-20 10:24:08 -06:00
rodzic b0fc76ce44
commit 529685ab69
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -1092,6 +1092,7 @@ void *handle_socket(void *arg)
RETURNFUNC(NULL);
}
#if 0
if (ferror(fsockin) || ferror(fsockout) || retcode == 2)
{
if (ferror(fsockout)) fsockout = get_fsockout(handle_data_arg);
@ -1112,6 +1113,7 @@ void *handle_socket(void *arg)
} while (retry-- > 0 && retcode != RIG_OK);
}
}
#endif
}
while (retcode == 0 || retcode == 2 || retcode == -RIG_ENAVAIL);