From c055817c27f58fd98d0bdc6b918c9574ad565290 Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Sat, 4 Feb 2023 06:35:40 -0600 Subject: [PATCH] Fix FT-450D detection --- NEWS | 1 + rigs/yaesu/newcat.c | 1 + rigs/yaesu/newcat.h | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index e28e14605..17c550a07 100644 --- a/NEWS +++ b/NEWS @@ -29,6 +29,7 @@ Version 4.6 * Fix FTDX3000 rig split Version 4.5.5 + * Fix FT-450D detection * 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 * Fix QRP QDX PTT to new TQ command due to firmware changes diff --git a/rigs/yaesu/newcat.c b/rigs/yaesu/newcat.c index 10ea9b1fa..78a5eba21 100644 --- a/rigs/yaesu/newcat.c +++ b/rigs/yaesu/newcat.c @@ -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_FT450D); is_ft891 = newcat_is_rig(rig, RIG_MODEL_FT891); is_ft950 = newcat_is_rig(rig, RIG_MODEL_FT950); is_ft991 = newcat_is_rig(rig, RIG_MODEL_FT991); diff --git a/rigs/yaesu/newcat.h b/rigs/yaesu/newcat.h index 60b2c9add..c549aa98c 100644 --- a/rigs/yaesu/newcat.h +++ b/rigs/yaesu/newcat.h @@ -50,7 +50,7 @@ typedef char ncboolean; /* shared function version */ -#define NEWCAT_VER "20230123" +#define NEWCAT_VER "20230204" /* Hopefully large enough for future use, 128 chars plus '\0' */ #define NEWCAT_DATA_LEN 129