Extend Yaeus BS command sleep from 200ms to 500ms -- DX3000 is muting Rx VFO so hopefully this fixes it.

https://github.com/Hamlib/Hamlib/issues/903
pull/936/head
Mike Black W9MDB 2022-01-17 18:05:26 -06:00
rodzic b2edec79bf
commit fe167c7ff4
2 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -10286,7 +10286,7 @@ int newcat_set_cmd(RIG *rig)
if (strncmp(priv->cmd_str, "BS", 2) == 0)
{
// the BS command needs time to do it's thing
hl_usleep(200 * 1000);
hl_usleep(500 * 1000);
priv->cache_start.tv_sec = 0; // invalidate the cache
}

Wyświetl plik

@ -50,7 +50,7 @@
typedef char ncboolean;
/* shared function version */
#define NEWCAT_VER "20220110"
#define NEWCAT_VER "20220117"
/* Hopefully large enough for future use, 128 chars plus '\0' */
#define NEWCAT_DATA_LEN 129