kopia lustrzana https://github.com/Hamlib/Hamlib
Add FT-710 to 60M exception in newcat.c to allow some ability to work with WSJT-X
https://github.com/Hamlib/Hamlib/issues/1211pull/1215/head
rodzic
0a2dddfce0
commit
8be3fcbef5
1
NEWS
1
NEWS
|
@ -26,6 +26,7 @@ Version 4.6
|
||||||
|
|
||||||
Version 4.5.4
|
Version 4.5.4
|
||||||
* 2023-XX-XX
|
* 2023-XX-XX
|
||||||
|
* Fix FT-710 usage on 60M
|
||||||
* Fix timing on NRD-535D
|
* Fix timing on NRD-535D
|
||||||
* Fix AGC levels with rigctld
|
* Fix AGC levels with rigctld
|
||||||
* Fix FTDX3000 EX039 error
|
* Fix FTDX3000 EX039 error
|
||||||
|
|
|
@ -814,7 +814,7 @@ int newcat_get_conf2(RIG *rig, token_t token, char *val, int val_len)
|
||||||
int newcat_60m_exception(RIG *rig, freq_t freq)
|
int newcat_60m_exception(RIG *rig, freq_t freq)
|
||||||
{
|
{
|
||||||
// can we improve this to set memory mode and pick the memory slot?
|
// can we improve this to set memory mode and pick the memory slot?
|
||||||
if (is_ftdx10 && freq > 5.2 && freq < 5.5)
|
if ((is_ftdx10 || is_ft710) && freq > 5.2 && freq < 5.5)
|
||||||
{
|
{
|
||||||
rig_debug(RIG_DEBUG_VERBOSE, "%s: 60M exception ignoring freq/mode commands\n",
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: 60M exception ignoring freq/mode commands\n",
|
||||||
__func__);
|
__func__);
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
typedef char ncboolean;
|
typedef char ncboolean;
|
||||||
|
|
||||||
/* shared function version */
|
/* shared function version */
|
||||||
#define NEWCAT_VER "20230107"
|
#define NEWCAT_VER "20230108"
|
||||||
|
|
||||||
/* Hopefully large enough for future use, 128 chars plus '\0' */
|
/* Hopefully large enough for future use, 128 chars plus '\0' */
|
||||||
#define NEWCAT_DATA_LEN 129
|
#define NEWCAT_DATA_LEN 129
|
||||||
|
|
Ładowanie…
Reference in New Issue