Added Get_Ant Set_Ant

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2482 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.9
Terry Embry, KJ4EED 2008-11-27 07:46:34 +00:00
rodzic f6ac6c2e47
commit 8e8a9bb3c6
2 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -8,7 +8,7 @@
* via serial interface to an FT-950 using the "CAT" interface
*
*
* $Id: ft950.c,v 1.3 2008-11-01 22:39:07 fillods Exp $
* $Id: ft950.c,v 1.4 2008-11-27 07:46:34 mrtembry Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -165,11 +165,13 @@ const struct rig_caps ft950_caps = {
.set_vfo = newcat_set_vfo,
.get_vfo = newcat_get_vfo,
.set_ptt = newcat_set_ptt,
// .get_ptt = newcat_get_ptt,
.get_ptt = newcat_get_ptt,
// .set_split_vfo = newcat_set_split_vfo,
// .get_split_vfo = newcat_get_split_vfo,
// .set_rit = newcat_set_rit,
// .get_rit = newcat_get_rit,
.set_ant = newcat_set_ant,
.get_ant = newcat_get_ant,
.get_func = newcat_get_func,
.set_func = newcat_set_func,
.get_level = newcat_get_level,

Wyświetl plik

@ -12,7 +12,7 @@
* FT-950, FT-450. Much testing remains. -N0NB
*
*
* $Id: newcat.h,v 1.6 2008-11-01 22:39:07 fillods Exp $
* $Id: newcat.h,v 1.7 2008-11-27 07:46:00 mrtembry Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -113,6 +113,9 @@ int newcat_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
int newcat_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
int newcat_set_ptt(RIG *rig, vfo_t vfo, ptt_t ptt);
int newcat_get_ptt(RIG * rig, vfo_t vfo, ptt_t * ptt);
int newcat_set_ant(RIG * rig, vfo_t vfo, ant_t ant);
int newcat_get_ant(RIG * rig, vfo_t vfo, ant_t * ant);
int newcat_set_level(RIG * rig, vfo_t vfo, setting_t level, value_t val);
int newcat_get_level(RIG * rig, vfo_t vfo, setting_t level, value_t * val);
int newcat_set_func(RIG * rig, vfo_t vfo, setting_t func, int status);