kopia lustrzana https://github.com/Hamlib/Hamlib
92 wiersze
2.6 KiB
C
92 wiersze
2.6 KiB
C
/*
|
|
* hamlib - (C) Frank Singleton 2000 (vk3fcs@@ix.netcom.com)
|
|
*
|
|
* ft757gx.h - (C) Frank Singleton 2000 (vk3fcs@@ix.netcom.com)
|
|
* This shared library provides an API for communicating
|
|
* via serial interface to an FT-757GX using the "CAT" interface
|
|
* box (FIF-232C) or similar (max232 + some capacitors :-)
|
|
*
|
|
*
|
|
* 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 _FT757GX_H
|
|
#define _FT757GX_H 1
|
|
|
|
#define FT757GX_STATUS_UPDATE_DATA_LENGTH 75
|
|
|
|
#define FT757GX_PACING_INTERVAL 0
|
|
#define FT757GX_PACING_DEFAULT_VALUE 0
|
|
#define FT757GX_WRITE_DELAY 50
|
|
|
|
/* number of BCD digits--2 digits per octet */
|
|
#define BCD_LEN 8
|
|
|
|
|
|
/* Sequential fast writes confuse my FT757GX without this delay */
|
|
#define FT757GX_POST_WRITE_DELAY 5
|
|
|
|
|
|
/* Rough safe value for default timeout */
|
|
#define FT757GX_DEFAULT_READ_TIMEOUT FT757GX_STATUS_UPDATE_DATA_LENGTH * (5 + (FT757GX_PACING_INTERVAL * FT757GX_PACING_DEFAULT_VALUE))
|
|
|
|
/*
|
|
* Some useful offsets in the status update map (offset = book byte value - 1)
|
|
*
|
|
* Status Update Chart, FT757GXII
|
|
*/
|
|
#define STATUS_CURR_FREQ 5 /* Operating Frequency */
|
|
#define STATUS_CURR_MODE 9
|
|
#define STATUS_VFOA_FREQ 10
|
|
#define STATUS_VFOA_MODE 14
|
|
#define STATUS_VFOB_FREQ 15
|
|
#define STATUS_VFOB_MODE 19
|
|
|
|
/* Mode values for both set and get */
|
|
#define MODE_LSB 0x00
|
|
#define MODE_USB 0x01
|
|
#define MODE_CWW 0x02
|
|
#define MODE_CWN 0x03
|
|
#define MODE_AM 0x04
|
|
#define MODE_FM 0x05
|
|
|
|
/* TODO: get better measure numbers */
|
|
#define FT757GXII_STR_CAL { 2, { \
|
|
{ 0, -60 }, /* S0 -6dB */ \
|
|
{ 15, 60 } /* +60 */ \
|
|
} }
|
|
|
|
#define FT757_MEM_CAP { \
|
|
.freq = 1, \
|
|
.mode = 1, \
|
|
.width = 1 \
|
|
}
|
|
|
|
|
|
/*
|
|
* Receiver caps
|
|
*/
|
|
#define FT757GX_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
|
|
|
|
|
|
/*
|
|
* TX caps
|
|
*/
|
|
#define FT757GX_ALL_TX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_SSB|RIG_MODE_FM)
|
|
|
|
#endif /* _FT757GX_H */
|