From ec4aea81b2b25555e7c76be28e7f781fceeab59f Mon Sep 17 00:00:00 2001 From: Mike Black W9MDB Date: Wed, 12 Oct 2022 22:51:21 -0500 Subject: [PATCH] Add FT-710 as a clone of FTDX10 --- NEWS | 3 ++- include/hamlib/riglist.h | 1 + rigs/yaesu/Makefile.am | 2 +- rigs/yaesu/yaesu.c | 1 + rigs/yaesu/yaesu.h | 1 + 5 files changed, 6 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index cd9a78437..312543fe5 100644 --- a/NEWS +++ b/NEWS @@ -16,8 +16,9 @@ Version 4.6 * 2023-XX-XX Version 4.5 - * 2022-09-30 + * 2022-10-12 * New rotator utility https://www.pianetaradio.it/blog/catrotator/ + * Add FT-710 * Add Rohde&Schwartz EK89X receiver * Add Xeigu X5105 * Add Gemini DX-1200 HF-1K Amplifiers diff --git a/include/hamlib/riglist.h b/include/hamlib/riglist.h index c5d67fc28..a68432246 100644 --- a/include/hamlib/riglist.h +++ b/include/hamlib/riglist.h @@ -126,6 +126,7 @@ #define RIG_MODEL_FT450D RIG_MAKE_MODEL(RIG_YAESU, 46) #define RIG_MODEL_FT650 RIG_MAKE_MODEL(RIG_YAESU, 47) #define RIG_MODEL_FT990UNI RIG_MAKE_MODEL(RIG_YAESU, 48) +#define RIG_MODEL_FT710 RIG_MAKE_MODEL(RIG_YAESU, 49) /* diff --git a/rigs/yaesu/Makefile.am b/rigs/yaesu/Makefile.am index 62c46ee11..593176fee 100644 --- a/rigs/yaesu/Makefile.am +++ b/rigs/yaesu/Makefile.am @@ -6,7 +6,7 @@ YAESUSRC = ft100.c ft100.h ft747.c ft747.h ft817.c ft817.h ft847.c ft847.h \ ft857.c ft857.h ft897.c ft897.h ft990.c ft990.h ft990v12.c ft990v12.h frg8800.c ft757gx.c \ ft757gx.h ft600.h ft600.c ft736.c frg100.c frg100.h frg9600.c ft1000d.c \ ft1000d.h vr5000.c ft767gx.c ft767gx.h ft840.c ft840.h ft980.c ft980.h \ - vx1700.c vx1700.h ftdx10.h + vx1700.c vx1700.h ftdx10.h ft710.c ## Yaesu radios that use the new Kenwood style CAT commands NEWCATSRC = newcat.c newcat.h ft450.c ft450.h ft950.c ft950.h ft991.c ft991.h \ diff --git a/rigs/yaesu/yaesu.c b/rigs/yaesu/yaesu.c index 1d4deb441..88b7df742 100644 --- a/rigs/yaesu/yaesu.c +++ b/rigs/yaesu/yaesu.c @@ -120,6 +120,7 @@ DECLARE_INITRIG_BACKEND(yaesu) rig_register(&ftdx101mp_caps); rig_register(&mchfqrp_caps); rig_register(&ft650_caps); + rig_register(&ft710_caps); return RIG_OK; } diff --git a/rigs/yaesu/yaesu.h b/rigs/yaesu/yaesu.h index c66522817..9780009f5 100644 --- a/rigs/yaesu/yaesu.h +++ b/rigs/yaesu/yaesu.h @@ -89,5 +89,6 @@ extern const struct rig_caps ftdx10_caps; extern const struct rig_caps ftdx101mp_caps; extern const struct rig_caps mchfqrp_caps; extern const struct rig_caps ft650_caps; +extern const struct rig_caps ft710_caps; #endif /* _YAESU_H */