Add debug for ft857 pometer reading

pull/224/head
Michael Black 2020-03-19 22:38:09 -05:00
rodzic 88d58752ea
commit e332b62e7d
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -790,8 +790,9 @@ static int ft857_get_pometer_level(RIG *rig, value_t *val)
/* Valid only if PTT is on */
if ((p->tx_status & 0x80) == 0)
{
rig_debug(RIG_DEBUG_TRACE,"%s: bars=%d\n", __func__, p->tx_status & 0x0F);
// does rig have 10 bars or 15?
val->i = p->tx_status & 0x0F) / 10.0;
val->i = (p->tx_status & 0x0F) / 10.0;
}
else
{