2001-02-14 00:59:02 +00:00
|
|
|
/*
|
2001-07-13 19:08:15 +00:00
|
|
|
* Hamlib Dummy backend - main header
|
2009-01-28 22:53:18 +00:00
|
|
|
* Copyright (c) 2001-2009 by Stephane Fillod
|
2001-02-14 00:59:02 +00:00
|
|
|
*
|
|
|
|
*
|
2011-08-20 23:37:17 +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.
|
2001-02-14 00:59:02 +00:00
|
|
|
*
|
2011-08-20 23:37:17 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-07-13 19:08:15 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-08-20 23:37:17 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-02-14 00:59:02 +00:00
|
|
|
*
|
2011-08-20 23:37:17 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2001-07-13 19:08:15 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2011-08-20 23:37:17 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2001-02-14 00:59:02 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DUMMY_H
|
|
|
|
#define _DUMMY_H 1
|
|
|
|
|
2009-01-28 22:53:18 +00:00
|
|
|
#include "hamlib/rig.h"
|
|
|
|
#include "token.h"
|
|
|
|
|
2009-11-22 12:01:38 +00:00
|
|
|
/* backend conf */
|
2018-01-21 14:00:37 +00:00
|
|
|
#define TOK_CFG_MAGICCONF TOKEN_BACKEND(1)
|
|
|
|
#define TOK_CFG_STATIC_DATA TOKEN_BACKEND(2)
|
2009-11-22 12:01:38 +00:00
|
|
|
|
|
|
|
|
2009-01-28 22:53:18 +00:00
|
|
|
/* ext_level's and ext_parm's tokens */
|
|
|
|
#define TOK_EL_MAGICLEVEL TOKEN_BACKEND(1)
|
|
|
|
#define TOK_EL_MAGICFUNC TOKEN_BACKEND(2)
|
2009-02-06 17:27:54 +00:00
|
|
|
#define TOK_EL_MAGICOP TOKEN_BACKEND(3)
|
|
|
|
#define TOK_EP_MAGICPARM TOKEN_BACKEND(4)
|
2009-01-28 22:53:18 +00:00
|
|
|
|
2001-02-14 00:59:02 +00:00
|
|
|
|
|
|
|
extern const struct rig_caps dummy_caps;
|
2008-09-21 19:34:16 +00:00
|
|
|
extern const struct rig_caps netrigctl_caps;
|
2017-07-06 21:53:58 +00:00
|
|
|
extern const struct rig_caps flrig_caps;
|
2018-05-08 11:49:27 +00:00
|
|
|
extern const struct rig_caps trxmanager_caps;
|
2001-02-14 00:59:02 +00:00
|
|
|
|
|
|
|
#endif /* _DUMMY_H */
|