Fix FTDX3000 SH commands

pull/518/head
Michael Black W9MDB 2021-01-21 22:42:19 -06:00
rodzic b56a577ebb
commit 9a870577d0
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -7862,7 +7862,7 @@ int newcat_set_rx_bandwidth(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
snprintf(priv->cmd_str, sizeof(priv->cmd_str), "SH%c%d%02d;", main_sub_vfo, on,
w);
}
else if (is_ft2000 || is_ftdx10)
else if (is_ft2000 || is_ftdx10 || is_ftdx3000)
{
snprintf(priv->cmd_str, sizeof(priv->cmd_str), "SH0%02d;", w);
}
@ -8092,7 +8092,7 @@ int newcat_get_rx_bandwidth(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t *width)
if (sh_command_valid)
{
if (is_ft2000 || is_ftdx10)
if (is_ft2000 || is_ftdx10 || is_ftdx3000)
{
snprintf(priv->cmd_str, sizeof(priv->cmd_str), "%s0%c", cmd, cat_term);
}