kopia lustrzana https://github.com/Hamlib/Hamlib
Fix get_powerstat call when get_powerstat is not defined
https://github.com/Hamlib/Hamlib/issues/1217pull/1242/head
rodzic
9c48ec785c
commit
29a80fb496
1
NEWS
1
NEWS
|
@ -25,6 +25,7 @@ Version 4.6
|
||||||
* Fix FTDX3000 rig split
|
* Fix FTDX3000 rig split
|
||||||
|
|
||||||
Version 4.5.5
|
Version 4.5.5
|
||||||
|
* Fix get_powerstat bad call in rigctl_parse.c
|
||||||
* Really fix CM108 ptt_bitnum usage
|
* Really fix CM108 ptt_bitnum usage
|
||||||
* Fix Elecraft power2mW precision/accuracy
|
* Fix Elecraft power2mW precision/accuracy
|
||||||
* Fix power on/off/on for Icom rigs with rigctld power_on=0
|
* Fix power on/off/on for Icom rigs with rigctld power_on=0
|
||||||
|
|
|
@ -1731,7 +1731,7 @@ readline_repeat:
|
||||||
|
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (my_rig->caps->set_powerstat && (rig_powerstat == RIG_POWER_OFF
|
if (my_rig->caps->get_powerstat && (rig_powerstat == RIG_POWER_OFF
|
||||||
|| rig_powerstat == RIG_POWER_STANDBY))
|
|| rig_powerstat == RIG_POWER_STANDBY))
|
||||||
{
|
{
|
||||||
// Update power status
|
// Update power status
|
||||||
|
|
Ładowanie…
Reference in New Issue