Fix FTDX101 and FT9000 RFPOWER_METER_WATTS

https://github.com/Hamlib/Hamlib/issues/641
pull/649/head
Mike Black W9MDB 2021-04-06 17:13:14 -05:00
rodzic 03b69afee6
commit 993a3162fd
2 zmienionych plików z 1 dodań i 7 usunięć

Wyświetl plik

@ -4569,12 +4569,6 @@ int newcat_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val)
{
snprintf(priv->cmd_str, sizeof(priv->cmd_str), "RM08%c", cat_term);
}
if (is_ftdx101d || is_ftdx101mp)
{
// separate meters for Main and Sub
snprintf(priv->cmd_str, sizeof(priv->cmd_str), "RM0%c", cat_term);
}
else
{
snprintf(priv->cmd_str, sizeof(priv->cmd_str), "RM5%c", cat_term);

Wyświetl plik

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