kopia lustrzana https://github.com/Hamlib/Hamlib
45 wiersze
1.4 KiB
C
45 wiersze
1.4 KiB
C
/*
|
|
* hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
|
|
* (C) Stephane Fillod 2000-2010
|
|
*
|
|
* ft847.h - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com)
|
|
* (C) Stephane Fillod 2000-2010
|
|
*
|
|
* This shared library provides an API for communicating
|
|
* via serial interface to an FT-847 using the "CAT" interface.
|
|
*
|
|
*
|
|
* 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.
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#ifndef _FT847_H
|
|
#define _FT847_H 1
|
|
|
|
|
|
#define FT847_WRITE_DELAY 50
|
|
|
|
/* Sequential fast writes may confuse FT847 without this delay */
|
|
|
|
#define FT847_POST_WRITE_DELAY 50
|
|
|
|
|
|
/* Rough safe value for default timeout */
|
|
|
|
#define FT847_DEFAULT_READ_TIMEOUT 2000
|
|
|
|
|
|
#endif /* _FT847_H */
|