Add FT-710 as a clone of FTDX10

pull/1130/head
Mike Black W9MDB 2022-10-12 22:51:21 -05:00
rodzic e6d0403cd2
commit ec4aea81b2
5 zmienionych plików z 6 dodań i 2 usunięć

3
NEWS
Wyświetl plik

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

Wyświetl plik

@ -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)
/*

Wyświetl plik

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

Wyświetl plik

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

Wyświetl plik

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