Fix FT-450D detection

pull/1242/head
Mike Black W9MDB 2023-02-04 06:35:40 -06:00
rodzic 8c0bb2034d
commit c055817c27
3 zmienionych plików z 3 dodań i 1 usunięć

1
NEWS
Wyświetl plik

@ -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

Wyświetl plik

@ -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);

Wyświetl plik

@ -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