kopia lustrzana https://github.com/Hamlib/Hamlib
Fix FT-450D detection
rodzic
8c0bb2034d
commit
c055817c27
1
NEWS
1
NEWS
|
@ -29,6 +29,7 @@ Version 4.6
|
||||||
* Fix FTDX3000 rig split
|
* Fix FTDX3000 rig split
|
||||||
|
|
||||||
Version 4.5.5
|
Version 4.5.5
|
||||||
|
* Fix FT-450D detection
|
||||||
* Fix VFO A/B swapping for gpredict -- hopefully better behavior for VFO swapping rigs
|
* Fix VFO A/B swapping for gpredict -- hopefully better behavior for VFO swapping rigs
|
||||||
Should avoid setting RX freq while TX and avoid TX freq while RX
|
Should avoid setting RX freq while TX and avoid TX freq while RX
|
||||||
* Fix QRP QDX PTT to new TQ command due to firmware changes
|
* Fix QRP QDX PTT to new TQ command due to firmware changes
|
||||||
|
|
|
@ -492,6 +492,7 @@ int newcat_init(RIG *rig)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
is_ft450 = newcat_is_rig(rig, RIG_MODEL_FT450);
|
is_ft450 = newcat_is_rig(rig, RIG_MODEL_FT450);
|
||||||
|
is_ft450 |= newcat_is_rig(rig, RIG_MODEL_FT450D);
|
||||||
is_ft891 = newcat_is_rig(rig, RIG_MODEL_FT891);
|
is_ft891 = newcat_is_rig(rig, RIG_MODEL_FT891);
|
||||||
is_ft950 = newcat_is_rig(rig, RIG_MODEL_FT950);
|
is_ft950 = newcat_is_rig(rig, RIG_MODEL_FT950);
|
||||||
is_ft991 = newcat_is_rig(rig, RIG_MODEL_FT991);
|
is_ft991 = newcat_is_rig(rig, RIG_MODEL_FT991);
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
typedef char ncboolean;
|
typedef char ncboolean;
|
||||||
|
|
||||||
/* shared function version */
|
/* shared function version */
|
||||||
#define NEWCAT_VER "20230123"
|
#define NEWCAT_VER "20230204"
|
||||||
|
|
||||||
/* 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