2004-04-16 20:29:51 +00:00
|
|
|
/*
|
|
|
|
* Hamlib KIT backend - main header
|
2012-01-06 08:40:04 +00:00
|
|
|
* Copyright (c) 2004-2012 by Stephane Fillod
|
2004-04-16 20:29:51 +00:00
|
|
|
*
|
|
|
|
*
|
2011-08-21 02:34:44 +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.1 of the License, or (at your option) any later version.
|
2004-04-16 20:29:51 +00:00
|
|
|
*
|
2011-08-21 02:34:44 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2004-04-16 20:29:51 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-08-21 02:34:44 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2004-04-16 20:29:51 +00:00
|
|
|
*
|
2011-08-21 02:34:44 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2004-04-16 20:29:51 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2011-08-21 02:34:44 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2004-04-16 20:29:51 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _KIT_H
|
|
|
|
#define _KIT_H 1
|
|
|
|
|
2010-11-03 20:52:25 +00:00
|
|
|
#include "hamlib/rig.h"
|
2004-04-16 20:29:51 +00:00
|
|
|
|
|
|
|
extern const struct rig_caps elektor304_caps;
|
2007-10-07 20:31:24 +00:00
|
|
|
extern const struct rig_caps elektor507_caps;
|
2009-09-04 21:52:04 +00:00
|
|
|
extern const struct rig_caps si570avrusb_caps;
|
2010-11-03 20:52:25 +00:00
|
|
|
extern const struct rig_caps si570picusb_caps;
|
2013-09-20 15:54:57 +00:00
|
|
|
extern const struct rig_caps si570peaberry1_caps;
|
|
|
|
extern const struct rig_caps si570peaberry2_caps;
|
2004-08-19 21:02:47 +00:00
|
|
|
extern const struct rig_caps drt1_caps;
|
2005-11-01 23:14:41 +00:00
|
|
|
extern const struct rig_caps dwt_caps;
|
|
|
|
extern const struct rig_caps usrp0_caps;
|
|
|
|
extern const struct rig_caps usrp_caps;
|
2007-10-23 21:56:30 +00:00
|
|
|
extern const struct rig_caps dds60_caps;
|
2008-04-11 18:03:53 +00:00
|
|
|
extern const struct rig_caps miniVNA_caps;
|
2011-01-28 00:40:45 +00:00
|
|
|
extern const struct rig_caps funcube_caps;
|
2014-02-06 19:25:49 +00:00
|
|
|
extern const struct rig_caps funcubeplus_caps;
|
2011-02-04 23:20:09 +00:00
|
|
|
extern const struct rig_caps fifisdr_caps;
|
2012-01-06 08:40:04 +00:00
|
|
|
extern const struct rig_caps hiqsdr_caps;
|
2012-11-25 15:27:05 +00:00
|
|
|
extern const struct rig_caps fasdr_caps;
|
2004-04-16 20:29:51 +00:00
|
|
|
|
2008-10-31 07:45:17 +00:00
|
|
|
extern const struct rot_caps pcrotor_caps;
|
|
|
|
|
2004-04-16 20:29:51 +00:00
|
|
|
#endif /* _KIT_H */
|