/* * hamlib - (C) Frank Singleton 2000 (vk3fcs@ix.netcom.com) * * yaesu.c - (C) Stephane Fillod 2001,2002 * * This shared library provides an API for communicating * via serial interface to a Yaesu rig * * * $Id: yaesu.c,v 1.11 2003-03-09 04:43:38 n0nb Exp $ * * * 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 * */ #include #include /* Standard input/output definitions */ #include /* String function definitions */ #include /* UNIX standard function definitions */ #include /* File control definitions */ #include /* Error number definitions */ #include /* POSIX terminal control definitions */ #include #include #include "serial.h" #include "misc.h" #include "yaesu.h" /* * initrigs_yaesu is called by rig_backend_load */ int initrigs_yaesu(void *be_handle) { rig_debug(RIG_DEBUG_VERBOSE, "yaesu: %s called\n", __func__); rig_register(&ft100_caps); rig_register(&ft747_caps); rig_register(&ft817_caps); rig_register(&ft847_caps); rig_register(&ft890_caps); rig_register(&ft920_caps); rig_register(&ft1000mp_caps); return RIG_OK; }