2000-12-22 01:36:59 +00:00
|
|
|
/*
|
|
|
|
* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
|
|
|
|
*
|
|
|
|
* yaesu.h - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
|
2003-04-16 22:30:43 +00:00
|
|
|
* and Stephane Fillod 2001-2003
|
2001-12-28 20:28:04 +00:00
|
|
|
*
|
2000-12-22 01:36:59 +00:00
|
|
|
* Common yaesu declarations for hamlib
|
|
|
|
*
|
2003-10-12 18:04:02 +00:00
|
|
|
* $Id: yaesu.h,v 1.18 2003-10-12 18:04:02 fillods Exp $
|
2002-12-01 03:08:05 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
2000-12-22 01:36:59 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _YAESU_H
|
|
|
|
#define _YAESU_H 1
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Length (in bytes) of yaesu command sequences
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define YAESU_CMD_LENGTH 5
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Basic Data structure for yaesu native cmd set
|
|
|
|
*/
|
|
|
|
|
|
|
|
struct yaesu_cmd_set {
|
2000-12-22 04:59:17 +00:00
|
|
|
unsigned char ncomp; /* 1 = complete, 0 = incomplete, needs extra info */
|
|
|
|
unsigned char nseq[YAESU_CMD_LENGTH]; /* native cmd sequence */
|
2000-12-22 01:36:59 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct yaesu_cmd_set yaesu_cmd_set_t;
|
|
|
|
|
2003-03-09 04:43:38 +00:00
|
|
|
extern const struct rig_caps ft100_caps;
|
2001-11-12 21:59:38 +00:00
|
|
|
extern const struct rig_caps ft747_caps;
|
2001-12-15 03:23:14 +00:00
|
|
|
extern const struct rig_caps ft817_caps;
|
2003-08-11 21:20:35 +00:00
|
|
|
extern const struct rig_caps ft857_caps;
|
2001-11-12 21:59:38 +00:00
|
|
|
extern const struct rig_caps ft847_caps;
|
2003-03-09 04:43:38 +00:00
|
|
|
extern const struct rig_caps ft890_caps;
|
2003-04-14 03:05:32 +00:00
|
|
|
extern const struct rig_caps ft900_caps;
|
2002-10-28 04:53:05 +00:00
|
|
|
extern const struct rig_caps ft920_caps;
|
2003-10-12 18:04:02 +00:00
|
|
|
extern const struct rig_caps ft990_caps;
|
2002-11-21 23:09:28 +00:00
|
|
|
extern const struct rig_caps ft1000mp_caps;
|
2000-12-22 01:36:59 +00:00
|
|
|
|
|
|
|
#endif /* _YAESU_H */
|