2002-02-26 01:18:48 +00:00
|
|
|
/*
|
2003-04-06 18:40:36 +00:00
|
|
|
* hamlib - (C) Frank Singleton 2000-2003 (vk3fcs@ix.netcom.com)
|
2009-02-14 00:26:03 +00:00
|
|
|
* (C) Stephane Fillod 2000-2009
|
2002-02-26 01:18:48 +00:00
|
|
|
*
|
|
|
|
* ft100.h - (C) Chris Karpinsky 2001 (aa1vl@arrl.net)
|
|
|
|
* This shared library provides an API for communicating
|
|
|
|
* via serial interface to an FT-100 using the "CAT" interface.
|
|
|
|
* The starting point for this code was Frank's ft847 implementation.
|
|
|
|
*
|
|
|
|
*
|
2011-08-23 02:26: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.
|
2002-12-01 03:08:05 +00:00
|
|
|
*
|
2011-08-23 02:26:44 +00:00
|
|
|
* 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.
|
2002-12-01 03:08:05 +00:00
|
|
|
*
|
2011-08-23 02:26:44 +00:00
|
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2002-12-01 03:08:05 +00:00
|
|
|
*
|
2002-02-26 01:18:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _FT100_H
|
|
|
|
#define _FT100_H 1
|
|
|
|
|
|
|
|
#define FT100_WRITE_DELAY 0
|
2022-01-08 21:48:53 +00:00
|
|
|
#define FT100_POST_WRITE_DELAY 25 /* max is 200ms */
|
2002-02-26 01:18:48 +00:00
|
|
|
#define FT100_DEFAULT_READ_TIMEOUT 2000
|
|
|
|
|
|
|
|
#endif /* _FT100_H */
|