/* * Hamlib Interface - API header * Copyright (c) 2000-2005 by Stephane Fillod and Frank Singleton * * $Id: rig.h,v 1.116 2006-10-15 00:26:47 aa6e Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of * the License, or (at your option) any later version. * * This program 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 Library General Public License for more details. * * You should have received a copy of the GNU Library General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. * */ #ifndef _RIG_H #define _RIG_H 1 #include #include #include /* list in another file to not mess up w/ this one */ /** * \addtogroup rig * @{ */ /*! \file rig.h * \brief Hamlib rig data structures. * * This file contains the data structures and definitions for the Hamlib rig API. * see the rig.c file for more details on the rig API. */ /* __BEGIN_DECLS should be used at the beginning of your declarations, * so that C++ compilers don't mangle their names. Use __END_DECLS at * the end of C declarations. */ #undef __BEGIN_DECLS #undef __END_DECLS #ifdef __cplusplus # define __BEGIN_DECLS extern "C" { # define __END_DECLS } #else # define __BEGIN_DECLS /* empty */ # define __END_DECLS /* empty */ #endif /* HAMLIB_PARAMS is a macro used to wrap function prototypes, so that compilers * that don't understand ANSI C prototypes still work, and ANSI C * compilers can issue warnings about type mismatches. */ #undef HAMLIB_PARAMS #if defined (__STDC__) || defined (_AIX) || (defined (__mips) && defined (_SYSTYPE_SVR4)) || defined(__CYGWIN__) || defined(_WIN32) || defined(__cplusplus) # define HAMLIB_PARAMS(protos) protos # define rig_ptr_t void* #else # define HAMLIB_PARAMS(protos) () # define rig_ptr_t char* #endif #include __BEGIN_DECLS extern HAMLIB_EXPORT_VAR(const char) hamlib_version[]; extern HAMLIB_EXPORT_VAR(const char) hamlib_copyright[]; /** * \brief Hamlib error codes * Error codes that can be returned by the Hamlib functions */ enum rig_errcode_e { RIG_OK=0, /*MEM */ RIG_OP_TO_VFO = (1<<3), /*!< MEM->VFO */ RIG_OP_MCL = (1<<4), /*!< Memory clear */ RIG_OP_UP = (1<<5), /*!< UP */ RIG_OP_DOWN = (1<<6), /*!< DOWN */ RIG_OP_BAND_UP = (1<<7), /*!< Band UP */ RIG_OP_BAND_DOWN = (1<<8), /*!< Band DOWN */ RIG_OP_LEFT = (1<<9), /*!< LEFT */ RIG_OP_RIGHT = (1<<10),/*!< RIGHT */ RIG_OP_TUNE = (1<<11),/*!< Start tune */ RIG_OP_TOGGLE = (1<<12) /*!< Toggle VFOA and VFOB */ } vfo_op_t; /** * \brief Scan operation */ typedef enum { RIG_SCAN_NONE = 0, RIG_SCAN_STOP = RIG_SCAN_NONE, /*!< Stop scanning */ RIG_SCAN_MEM = (1<<0), /*!< Scan all memory channels */ RIG_SCAN_SLCT = (1<<1), /*!< Scan all selected memory channels */ RIG_SCAN_PRIO = (1<<2), /*!< Priority watch (mem or call channel) */ RIG_SCAN_PROG = (1<<3), /*!< Programmed(edge) scan */ RIG_SCAN_DELTA = (1<<4), /*!< delta-f scan */ RIG_SCAN_VFO = (1<<5), /*!< most basic scan */ RIG_SCAN_PLT = (1<<6) /*!< Scan using pipelined tuning */ } scan_t; /** * configuration token */ typedef long token_t; #define RIG_CONF_END 0 /** * \brief Configuration parameter types */ /* strongly inspired from soundmedem. Thanks Thomas! */ enum rig_conf_e { RIG_CONF_STRING, /*!< String type */ RIG_CONF_COMBO, /*!< Combo type */ RIG_CONF_NUMERIC, /*!< Numeric type (integer or real) */ RIG_CONF_CHECKBUTTON /*!< on/off type */ }; #define RIG_COMBO_MAX 8 /** * \brief Configuration parameter structure. */ struct confparams { token_t token; /*!< Conf param token ID */ const char *name; /*!< Param name, no spaces allowed */ const char *label; /*!< Human readable label */ const char *tooltip; /*!< Hint on the parameter */ const char *dflt; /*!< Default value */ enum rig_conf_e type; /*!< Type of the parameter */ union { /*!< */ struct { /*!< */ float min; /*!< Minimum value */ float max; /*!< Maximum value */ float step; /*!< Step */ } n; /*!< Numeric type */ struct { /*!< */ const char *combostr[RIG_COMBO_MAX]; /*!< Combo list */ } c; /*!< Combo type */ } u; /*!< Type union */ }; /** \brief Announce * Designate optional speech synthesizer. */ typedef enum { RIG_ANN_NONE = 0, /*!< None */ RIG_ANN_OFF = RIG_ANN_NONE, /*!< disable announces */ RIG_ANN_FREQ = (1<<0), /*!< Announce frequency */ RIG_ANN_RXMODE = (1<<1), /*!< Announce receive mode */ RIG_ANN_CW = (1<<2), /*!< CW */ RIG_ANN_ENG = (1<<3), /*!< English */ RIG_ANN_JAP = (1<<4) /*!< Japan */ } ann_t; /* Antenna number */ typedef int ant_t; #define RIG_ANT_NONE 0 #define RIG_ANT_N(n) ((ant_t)1<<(n)) #define RIG_ANT_1 RIG_ANT_N(0) #define RIG_ANT_2 RIG_ANT_N(1) #define RIG_ANT_3 RIG_ANT_N(2) #define RIG_ANT_4 RIG_ANT_N(3) /** * \brief AGC delay settings */ /* TODO: kill me, and replace by real AGC delay */ enum agc_level_e { RIG_AGC_OFF = 0, RIG_AGC_SUPERFAST, RIG_AGC_FAST, RIG_AGC_SLOW, RIG_AGC_USER, /*!< user selectable */ RIG_AGC_MEDIUM }; /** * \brief Level display meters */ enum meter_level_e { RIG_METER_NONE = 0, /*< No display meter */ RIG_METER_SWR = (1<<0), /*< Stationary Wave Ratio */ RIG_METER_COMP = (1<<1), /*< Compression level */ RIG_METER_ALC = (1<<2), /*< ALC */ RIG_METER_IC = (1<<3), /*< IC */ RIG_METER_DB = (1<<4) /*< DB */ }; /** * \brief Universal approach for passing values * \sa rig_set_level, rig_get_level, rig_set_parm, rig_get_parm */ typedef union { signed int i; /*!< Signed integer */ float f; /*!< Single precision float */ char *s; /*!< Pointer to char string */ const char *cs; /*!< Pointer to constant char string */ } value_t; /** \brief Level */ enum rig_level_e { RIG_LEVEL_NONE = 0, /*!< None */ RIG_LEVEL_PREAMP = (1<<0), /*!< Preamp, arg int (dB) */ RIG_LEVEL_ATT = (1<<1), /*!< Attenuator, arg int (dB) */ RIG_LEVEL_VOX = (1<<2), /*!< VOX delay, arg int (tenth of seconds) */ RIG_LEVEL_AF = (1<<3), /*!< Volume, arg float [0.0..1.0] */ RIG_LEVEL_RF = (1<<4), /*!< RF gain (not TX power), arg float [0.0..1.0] */ RIG_LEVEL_SQL = (1<<5), /*!< Squelch, arg float [0.0 .. 1.0] */ RIG_LEVEL_IF = (1<<6), /*!< IF, arg int (Hz) */ RIG_LEVEL_APF = (1<<7), /*!< APF, arg float [0.0 .. 1.0] */ RIG_LEVEL_NR = (1<<8), /*!< Noise Reduction, arg float [0.0 .. 1.0] */ RIG_LEVEL_PBT_IN = (1<<9), /*!< Twin PBT (inside), arg float [0.0 .. 1.0] */ RIG_LEVEL_PBT_OUT = (1<<10),/*!< Twin PBT (outside), arg float [0.0 .. 1.0] */ RIG_LEVEL_CWPITCH = (1<<11),/*!< CW pitch, arg int (Hz) */ RIG_LEVEL_RFPOWER = (1<<12),/*!< RF Power, arg float [0.0 .. 1.0] */ RIG_LEVEL_MICGAIN = (1<<13),/*!< MIC Gain, arg float [0.0 .. 1.0] */ RIG_LEVEL_KEYSPD = (1<<14),/*!< Key Speed, arg int (WPM) */ RIG_LEVEL_NOTCHF = (1<<15),/*!< Notch Freq., arg int (Hz) */ RIG_LEVEL_COMP = (1<<16),/*!< Compressor, arg float [0.0 .. 1.0] */ RIG_LEVEL_AGC = (1<<17),/*!< AGC, arg int (see enum agc_level_e) */ RIG_LEVEL_BKINDL = (1<<18),/*!< BKin Delay, arg int (tenth of dots) */ RIG_LEVEL_BALANCE = (1<<19),/*!< Balance (Dual Watch), arg float [0.0 .. 1.0] */ RIG_LEVEL_METER = (1<<20),/*!< Display meter, arg int (see enum meter_level_e) */ RIG_LEVEL_VOXGAIN = (1<<21),/*!< VOX gain level, arg float [0.0 .. 1.0] */ RIG_LEVEL_VOXDELAY = RIG_LEVEL_VOX, /*!< VOX delay, arg int (tenth of seconds) */ RIG_LEVEL_ANTIVOX = (1<<22),/*!< anti-VOX level, arg float [0.0 .. 1.0] */ //RIG_LEVEL_LINEOUT = (1<<23),/*!< Lineout Volume, arg float [0.0 .. 1.0] */ /*!< These ones are not settable */ RIG_LEVEL_RAWSTR = (1<<26),/*!< Raw (A/D) value for signal strength, specific to each rig, arg int */ RIG_LEVEL_SQLSTAT = (1<<27),/*!< SQL status, arg int (open=1/closed=0). Deprecated, use get_dcd instead */ RIG_LEVEL_SWR = (1<<28),/*!< SWR, arg float [0.0..infinite] */ RIG_LEVEL_ALC = (1<<29),/*!< ALC, arg float */ RIG_LEVEL_STRENGTH = (1<<30) /*!< Effective (calibrated) signal strength relative to S9, arg int (dB) */ /*RIG_LEVEL_BWC = (1<<31)*/ /*!< Bandwidth Control, arg int (Hz) */ }; #define RIG_LEVEL_FLOAT_LIST (RIG_LEVEL_AF|RIG_LEVEL_RF|RIG_LEVEL_SQL|RIG_LEVEL_APF|RIG_LEVEL_NR|RIG_LEVEL_PBT_IN|RIG_LEVEL_PBT_OUT|RIG_LEVEL_RFPOWER|RIG_LEVEL_MICGAIN|RIG_LEVEL_COMP|RIG_LEVEL_BALANCE|RIG_LEVEL_SWR|RIG_LEVEL_ALC|RIG_LEVEL_VOXGAIN|RIG_LEVEL_ANTIVOX) #define RIG_LEVEL_READONLY_LIST (RIG_LEVEL_SQLSTAT|RIG_LEVEL_SWR|RIG_LEVEL_ALC|RIG_LEVEL_STRENGTH|RIG_LEVEL_RAWSTR) #define RIG_LEVEL_IS_FLOAT(l) ((l)&RIG_LEVEL_FLOAT_LIST) #define RIG_LEVEL_SET(l) ((l)&~RIG_LEVEL_READONLY_LIST) /** * \brief Parameters * Parameters are settings that are not VFO specific */ enum rig_parm_e { RIG_PARM_NONE = 0, /*!< None */ RIG_PARM_ANN = (1<<0), /*!< "Announce" level, see ann_t */ RIG_PARM_APO = (1<<1), /*!< Auto power off, int in minute */ RIG_PARM_BACKLIGHT = (1<<2), /*!< LCD light, float [0.0..1.0] */ RIG_PARM_BEEP = (1<<4), /*!< Beep on keypressed, int (0,1) */ RIG_PARM_TIME = (1<<5), /*!< hh:mm:ss, int in seconds from 00:00:00 */ RIG_PARM_BAT = (1<<6), /*!< battery level, float [0.0..1.0] */ RIG_PARM_KEYLIGHT = (1<<7) /*!< Button backlight, on/off */ }; #define RIG_PARM_FLOAT_LIST (RIG_PARM_BACKLIGHT|RIG_PARM_BAT) #define RIG_PARM_READONLY_LIST (RIG_PARM_BAT) #define RIG_PARM_IS_FLOAT(l) ((l)&RIG_PARM_FLOAT_LIST) #define RIG_PARM_SET(l) ((l)&~RIG_PARM_READONLY_LIST) #define RIG_SETTING_MAX 32 /** * \brief Setting * * This can be a func, a level or a parm. * Each bit designate one of them. */ typedef unsigned long setting_t; /* * tranceive mode, ie. the rig notify the host of any event, * like freq changed, mode changed, etc. */ #define RIG_TRN_OFF 0 #define RIG_TRN_RIG 1 #define RIG_TRN_POLL 2 /** * \brief Functions */ enum rig_func_e { RIG_FUNC_NONE = 0, /*!< None */ RIG_FUNC_FAGC = (1<<0), /*!< Fast AGC */ RIG_FUNC_NB = (1<<1), /*!< Noise Blanker */ RIG_FUNC_COMP = (1<<2), /*!< Compression */ RIG_FUNC_VOX = (1<<3), /*!< VOX */ RIG_FUNC_TONE = (1<<4), /*!< Tone */ RIG_FUNC_TSQL = (1<<5), /*!< CTCSS */ RIG_FUNC_SBKIN = (1<<6), /*!< Semi Break-in */ RIG_FUNC_FBKIN = (1<<7), /*!< Full Break-in (CW mode) */ RIG_FUNC_ANF = (1<<8), /*!< Automatic Notch Filter (DSP) */ RIG_FUNC_NR = (1<<9), /*!< Noise Reduction (DSP) */ RIG_FUNC_AIP = (1<<10),/*!< AIP (Kenwood) */ RIG_FUNC_APF = (1<<11),/*!< Auto Passband Filter */ RIG_FUNC_MON = (1<<12),/*!< Monitor transmitted signal */ RIG_FUNC_MN = (1<<13),/*!< Manual Notch */ RIG_FUNC_RF = (1<<14),/*!< RTTY Filter */ RIG_FUNC_ARO = (1<<15),/*!< Auto Repeater Offset */ RIG_FUNC_LOCK = (1<<16),/*!< Lock */ RIG_FUNC_MUTE = (1<<17),/*!< Mute */ RIG_FUNC_VSC = (1<<18),/*!< Voice Scan Control */ RIG_FUNC_REV = (1<<19),/*!< Reverse transmit and receive frequencies */ RIG_FUNC_SQL = (1<<20),/*!< Turn Squelch Monitor on/off */ RIG_FUNC_ABM = (1<<21),/*!< Auto Band Mode */ RIG_FUNC_BC = (1<<22),/*!< Beat Canceller */ RIG_FUNC_MBC = (1<<23),/*!< Manual Beat Canceller */ /* (1<<24), used to be RIG_FUNC_LMP, see RIG_PARM_BACKLIGHT instead) */ RIG_FUNC_AFC = (1<<25),/*!< Auto Frequency Control ON/OFF */ RIG_FUNC_SATMODE = (1<<26),/*!< Satellite mode ON/OFF */ RIG_FUNC_SCOPE = (1<<27),/*!< Simple bandscope ON/OFF */ RIG_FUNC_RESUME = (1<<28),/*!< Scan auto-resume */ RIG_FUNC_TBURST = (1<<29),/*!< 1750 Hz tone burst */ RIG_FUNC_TUNER = (1<<30) /*!< Enable automatic tuner */ }; /* * power unit macros, converts to mW * This is limited to 2MW on 32 bits systems. */ #define mW(p) ((int)(p)) #define Watts(p) ((int)((p)*1000)) #define W(p) Watts(p) #define kW(p) ((int)((p)*1000000L)) /** * \brief Radio mode */ typedef enum { RIG_MODE_NONE = 0, /*!< None */ RIG_MODE_AM = (1<<0), /*!< Amplitude Modulation */ RIG_MODE_CW = (1<<1), /*!< CW */ RIG_MODE_USB = (1<<2), /*!< Upper Side Band */ RIG_MODE_LSB = (1<<3), /*!< Lower Side Band */ RIG_MODE_RTTY = (1<<4), /*!< Remote Teletype */ RIG_MODE_FM = (1<<5), /*!< "narrow" band FM */ RIG_MODE_WFM = (1<<6), /*!< broadcast wide FM */ RIG_MODE_CWR = (1<<7), /*!< CW reverse sideband */ RIG_MODE_RTTYR = (1<<8), /*!< RTTY reverse sideband */ RIG_MODE_AMS = (1<<9), /*!< Amplitude Modulation Synchronous */ RIG_MODE_PKTLSB = (1<<10),/*!< Packet/Digital LSB mode (dedicated port) */ RIG_MODE_PKTUSB = (1<<11),/*!< Packet/Digital USB mode (dedicated port) */ RIG_MODE_PKTFM = (1<<12),/*!< Packet/Digital FM mode (dedicated port) */ RIG_MODE_ECSSUSB = (1<<13),/*!< Exalted Carrier Single Sideband USB */ RIG_MODE_ECSSLSB = (1<<14),/*!< Exalted Carrier Single Sideband LSB */ RIG_MODE_FAX = (1<<15) /*!< Facsimile Mode */ } rmode_t; /** \brief macro for backends, no to be used by rig_set_mode et al. */ #define RIG_MODE_SSB (RIG_MODE_USB|RIG_MODE_LSB) /** \brief macro for backends, no to be used by rig_set_mode et al. */ #define RIG_MODE_ECSS (RIG_MODE_ECSSUSB|RIG_MODE_ECSSLSB) #define RIG_DBLST_END 0 /* end marker in a preamp/att level list */ #define RIG_IS_DBLST_END(d) ((d)==0) /** * \brief Frequency range * * Put together a bunch of this struct in an array to define * what frequencies your rig has access to. */ typedef struct freq_range_list { freq_t start; /*!< Start frequency */ freq_t end; /*!< End frequency */ rmode_t modes; /*!< Bit field of RIG_MODE's */ int low_power; /*!< Lower RF power in mW, -1 for no power (ie. rx list) */ int high_power; /*!< Higher RF power in mW, -1 for no power (ie. rx list) */ vfo_t vfo; /*!< VFO list equipped with this range */ ant_t ant; /*!< Antenna list equipped with this range, 0 means all */ } freq_range_t; #define RIG_FRNG_END {Hz(0),Hz(0),RIG_MODE_NONE,0,0,RIG_VFO_NONE} #define RIG_IS_FRNG_END(r) ((r).start == Hz(0) && (r).end == Hz(0)) #define RIG_ITU_REGION1 1 #define RIG_ITU_REGION2 2 #define RIG_ITU_REGION3 3 /** * \brief Tuning step definition * * Lists the tuning steps available for each mode. * * If in the list a ts field has RIG_TS_ANY value, * this means the rig allows its tuning step to be * set to any value ranging from the lowest to the * highest (if any) value in the list for that mode. * The tuning step must be sorted in the ascending * order, and the RIG_TS_ANY value, if present, must * be the last one in the list. * * Note also that the minimum frequency resolution * of the rig is determined by the lowest value * in the Tuning step list. * * \sa rig_set_ts, rig_get_resolution */ struct tuning_step_list { rmode_t modes; /*!< Bit field of RIG_MODE's */ shortfreq_t ts; /*!< Tuning step in Hz */ }; #define RIG_TS_ANY 0 #define RIG_TS_END {RIG_MODE_NONE,0} #define RIG_IS_TS_END(t) ((t).modes == RIG_MODE_NONE && (t).ts == 0) /** * \brief Filter definition * * Lists the filters available for each mode. * * If more than one filter is available for a given mode, * the first entry in the array will be the default * filter to use for the normal passband of this mode. * The first entry in the array below the default normal passband * is the default narrow passband and the first entry in the array * above the default normal passband is the default wide passband. * Note: if there's no lower width or upper width, then narrow or * respectively wide passband is equal to the default normal passband. * * If in the list a width field has RIG_FLT_ANY value, * this means the rig allows its passband width to be * set to any value ranging from the lowest to the * highest value (if any) in the list for that mode. * The RIG_TS_ANY value, if present, must * be the last one in the list. * * The width field is the narrowest passband in a transmit/receive chain * with regard to different IF. * * \sa rig_set_mode, rig_passband_normal, rig_passband_narrow, rig_passband_wide */ struct filter_list { rmode_t modes; /*!< Bit field of RIG_MODE's */ pbwidth_t width; /*!< Passband width in Hz */ }; #define RIG_FLT_ANY 0 #define RIG_FLT_END {RIG_MODE_NONE,0} #define RIG_IS_FLT_END(f) ((f).modes == RIG_MODE_NONE) /* * Used in the channel.flags field */ #define RIG_CHFLAG_NONE 0 #define RIG_CHFLAG_SKIP (1<<0) /* DATA port mode flag */ #define RIG_CHFLAG_DATA (1<<1) /** * \brief Extension attribute definition * */ struct ext_list { token_t token; /*!< Token ID */ value_t val; /*!< Value */ }; #define RIG_EXT_END {0, {.i=0}} #define RIG_IS_EXT_END(x) ((x).token == 0) /** * \brief Channel structure * * The channel struct stores all the attributes peculiar to a VFO. * * \sa rig_set_channel, rig_get_channel */ struct channel { int channel_num; /*!< Channel number */ int bank_num; /*!< Bank number */ vfo_t vfo; /*!< VFO */ int ant; /*!< Selected antenna */ freq_t freq; /*!< Receive frequency */ rmode_t mode; /*!< Receive mode */ pbwidth_t width; /*!< Receive passband width associated with mode */ freq_t tx_freq; /*!< Transmit frequency */ rmode_t tx_mode; /*!< Transmit mode */ pbwidth_t tx_width; /*!< Transmit passband width associated with mode */ split_t split; /*!< Split mode */ vfo_t tx_vfo; /*!< Split transmit VFO */ rptr_shift_t rptr_shift; /*!< Repeater shift */ shortfreq_t rptr_offs; /*!< Repeater offset */ shortfreq_t tuning_step; /*!< Tuning step */ shortfreq_t rit; /*!< RIT */ shortfreq_t xit; /*!< XIT */ setting_t funcs; /*!< Function status */ value_t levels[RIG_SETTING_MAX]; /*!< Level values */ tone_t ctcss_tone; /*!< CTCSS tone */ tone_t ctcss_sql; /*!< CTCSS squelch tone */ tone_t dcs_code; /*!< DCS code */ tone_t dcs_sql; /*!< DCS squelch code */ int scan_group; /*!< Scan group */ int flags; /*!< Channel flags, see RIG_CHFLAG's */ char channel_desc[MAXCHANDESC]; /*!< Name */ struct ext_list *ext_levels; /*!< Extension level value list, NULL ended. ext_levels can be NULL */ }; /** \brief Channel structure typedef */ typedef struct channel channel_t; /** * \brief Channel capability definition * * Definition of the attribute that can be stored/retrieved in/from memory */ struct channel_cap { unsigned bank_num:1; /*!< Bank number */ unsigned vfo:1; /*!< VFO */ unsigned ant:1; /*!< Selected antenna */ unsigned freq:1; /*!< Receive frequency */ unsigned mode:1; /*!< Receive mode */ unsigned width:1; /*!< Receive passband width associated with mode */ unsigned tx_freq:1; /*!< Transmit frequency */ unsigned tx_mode:1; /*!< Transmit mode */ unsigned tx_width:1; /*!< Transmit passband width associated with mode */ unsigned split:1; /*!< Split mode */ unsigned tx_vfo:1; /*!< Split transmit VFO */ unsigned rptr_shift:1; /*!< Repeater shift */ unsigned rptr_offs:1; /*!< Repeater offset */ unsigned tuning_step:1; /*!< Tuning step */ unsigned rit:1; /*!< RIT */ unsigned xit:1; /*!< XIT */ setting_t funcs; /*!< Function status */ setting_t levels; /*!< Level values */ unsigned ctcss_tone:1; /*!< CTCSS tone */ unsigned ctcss_sql:1; /*!< CTCSS squelch tone */ unsigned dcs_code:1; /*!< DCS code */ unsigned dcs_sql:1; /*!< DCS squelch code */ unsigned scan_group:1; /*!< Scan group */ unsigned flags:1; /*!< Channel flags */ unsigned channel_desc:1; /*!< Name */ unsigned ext_levels:1; /*!< Extension level value list */ }; /** \brief Channel cap */ typedef struct channel_cap channel_cap_t; /** * \brief Memory channel type definition * * Definition of memory types. Depending on the type, the content * of the memory channel has to be interpreted accordingly. * For instance, a RIG_MTYPE_EDGE channel_t will hold only a start * or stop frequency. * * \sa chan_list */ typedef enum { RIG_MTYPE_NONE=0, /*!< None */ RIG_MTYPE_MEM, /*!< Regular */ RIG_MTYPE_EDGE, /*!< Scan edge */ RIG_MTYPE_CALL, /*!< Call channel */ RIG_MTYPE_MEMOPAD, /*!< Memory pad */ RIG_MTYPE_SAT /*!< Satellite */ } chan_type_t; /** * \brief Memory channel list definition * * Example for the Ic706MkIIG (99 memory channels, 2 scan edges, 2 call chans): \code chan_t chan_list[] = { { 1, 99, RIG_MTYPE_MEM }, { 100, 103, RIG_MTYPE_EDGE }, { 104, 105, RIG_MTYPE_CALL }, RIG_CHAN_END } \endcode */ struct chan_list { int start; /*!< Starting memory channel \b number */ int end; /*!< Ending memory channel \b number */ chan_type_t type; /*!< Memory type. see chan_type_t */ channel_cap_t mem_caps; /*!< Definition of attributes that can be stored/retrieved */ }; #define RIG_CHAN_END {0,0,RIG_MTYPE_NONE} #define RIG_IS_CHAN_END(c) ((c).type == RIG_MTYPE_NONE) /** \brief chan_t type */ typedef struct chan_list chan_t; /** * \brief level/parm granularity definition * * The granularity is undefined if min=0, max=0, and step=0. * * For float settings, if min.f=0 and max.f=0 (and step.f!=0), * max.f is assumed to be actually equal to 1.0. * * If step=0 (and min and/or max are not null), then this means step * can have maximum resolution, depending on type (int or float). */ struct gran { value_t min; /*!< Minimum value */ value_t max; /*!< Maximum value */ value_t step; /*!< Step */ }; /** \brief gran_t type */ typedef struct gran gran_t; /** \brief Calibration table struct */ struct cal_table { int size; /*!< number of plots in the table */ struct { int raw; /*!< raw (A/D) value, as returned by \a RIG_LEVEL_RAWSTR */ int val; /*!< associated value, basically the measured dB value */ } table[MAX_CAL_LENGTH]; /*!< table of plots */ }; /** * \brief calibration table type * * cal_table_t is a data type suited to hold linear calibration. * cal_table_t.size tell the number of plot cal_table_t.table contains. * * If a value is below or equal to cal_table_t.table[0].raw, * rig_raw2val() will return cal_table_t.table[0].val. * * If a value is greater or equal to cal_table_t.table[cal_table_t.size-1].raw, * rig_raw2val() will return cal_table_t.table[cal_table_t.size-1].val. */ typedef struct cal_table cal_table_t; #define EMPTY_STR_CAL { 0, { { 0, 0 }, } } typedef int (*chan_cb_t) (RIG *, channel_t**, int, const chan_t*, rig_ptr_t); typedef int (*confval_cb_t) (RIG *, const struct confparams *, value_t *, rig_ptr_t); /** * \brief Rig data structure. * * Basic rig type, can store some useful * info about different radios. * Each lib must be able to populate this structure, so we can make * useful enquiries about capablilities. * * The main idea of this struct is that it will be defined by the backend * rig driver, and will remain readonly for the application. * Fields that need to be modifiable by the application are * copied into the struct rig_state, which is a kind of private * of the RIG instance. * This way, you can have several rigs running within the same application, * sharing the struct rig_caps of the backend, while keeping their own * customized data. * NB: don't move fields around, as backend depends on it when initializing * their caps. */ struct rig_caps { rig_model_t rig_model; /*!< Rig model. */ const char *model_name; /*!< Model name. */ const char *mfg_name; /*!< Manufacturer. */ const char *version; /*!< Driver version. */ const char *copyright; /*!< Copyright info. */ enum rig_status_e status; /*!< Driver status. */ int rig_type; /*!< Rotator type. */ ptt_type_t ptt_type; /*!< Type of the PTT port. */ dcd_type_t dcd_type; /*!< Type of the DCD port. */ rig_port_t port_type; /*!< Type of communication port. */ int serial_rate_min; /*!< Minimal serial speed. */ int serial_rate_max; /*!< Maximal serial speed. */ int serial_data_bits; /*!< Number of data bits. */ int serial_stop_bits; /*!< Number of stop bits. */ enum serial_parity_e serial_parity; /*!< Parity. */ enum serial_handshake_e serial_handshake; /*!< Handshake. */ int write_delay; /*!< Delay between each byte sent out, in ms */ int post_write_delay; /*!< Delay between each commands send out, in ms */ int timeout; /*!< Timeout, in ms */ int retry; /*!< Maximum number of retries if command fails, 0 to disable */ setting_t has_get_func; /*!< List of get functions */ setting_t has_set_func; /*!< List of set functions */ setting_t has_get_level; /*!< List of get level */ setting_t has_set_level; /*!< List of set level */ setting_t has_get_parm; /*!< List of get parm */ setting_t has_set_parm; /*!< List of set parm */ gran_t level_gran[RIG_SETTING_MAX]; /*!< level granularity (i.e. steps) */ gran_t parm_gran[RIG_SETTING_MAX]; /*!< parm granularity (i.e. steps) */ const struct confparams *extparms; /*!< Extension parm list */ const struct confparams *extlevels; /*!< Extension level list */ const tone_t *ctcss_list; /*!< CTCSS tones list, zero ended */ const tone_t *dcs_list; /*!< DCS code list, zero ended */ int preamp[MAXDBLSTSIZ]; /*!< Preamp list in dB, 0 terminated */ int attenuator[MAXDBLSTSIZ]; /*!< Preamp list in dB, 0 terminated */ shortfreq_t max_rit; /*!< max absolute RIT */ shortfreq_t max_xit; /*!< max absolute XIT */ shortfreq_t max_ifshift; /*!< max absolute IF-SHIFT */ ann_t announces; /*!< Announces bit field list */ vfo_op_t vfo_ops; /*!< VFO op bit field list */ scan_t scan_ops; /*!< Scan bit field list */ int targetable_vfo; /*!< Bit field list of direct VFO access commands */ int transceive; /*!< Supported transceive mode */ int bank_qty; /*!< Number of banks */ int chan_desc_sz; /*!< Max lenght of memory channel name */ chan_t chan_list[CHANLSTSIZ]; /*!< Channel list, zero ended */ freq_range_t rx_range_list1[FRQRANGESIZ]; /*!< Receive frequency range list for ITU region 1 */ freq_range_t tx_range_list1[FRQRANGESIZ]; /*!< Transmit frequency range list for ITU region 1 */ freq_range_t rx_range_list2[FRQRANGESIZ]; /*!< Receive frequency range list for ITU region 2 */ freq_range_t tx_range_list2[FRQRANGESIZ]; /*!< Transmit frequency range list for ITU region 2 */ struct tuning_step_list tuning_steps[TSLSTSIZ]; /*!< Tuning step list */ struct filter_list filters[FLTLSTSIZ]; /*!< mode/filter table, at -6dB */ cal_table_t str_cal; /*!< S-meter calibration table */ const struct confparams *cfgparams; /*!< Configuration parametres. */ const rig_ptr_t priv; /*!< Private data. */ /* * Rig API * */ int (*rig_init) (RIG * rig); int (*rig_cleanup) (RIG * rig); int (*rig_open) (RIG * rig); int (*rig_close) (RIG * rig); /* * General API commands, from most primitive to least.. :() * List Set/Get functions pairs */ int (*set_freq) (RIG * rig, vfo_t vfo, freq_t freq); int (*get_freq) (RIG * rig, vfo_t vfo, freq_t * freq); int (*set_mode) (RIG * rig, vfo_t vfo, rmode_t mode, pbwidth_t width); int (*get_mode) (RIG * rig, vfo_t vfo, rmode_t * mode, pbwidth_t * width); int (*set_vfo) (RIG * rig, vfo_t vfo); int (*get_vfo) (RIG * rig, vfo_t * vfo); int (*set_ptt) (RIG * rig, vfo_t vfo, ptt_t ptt); int (*get_ptt) (RIG * rig, vfo_t vfo, ptt_t * ptt); int (*get_dcd) (RIG * rig, vfo_t vfo, dcd_t * dcd); int (*set_rptr_shift) (RIG * rig, vfo_t vfo, rptr_shift_t rptr_shift); int (*get_rptr_shift) (RIG * rig, vfo_t vfo, rptr_shift_t * rptr_shift); int (*set_rptr_offs) (RIG * rig, vfo_t vfo, shortfreq_t offs); int (*get_rptr_offs) (RIG * rig, vfo_t vfo, shortfreq_t * offs); int (*set_split_freq) (RIG * rig, vfo_t vfo, freq_t tx_freq); int (*get_split_freq) (RIG * rig, vfo_t vfo, freq_t * tx_freq); int (*set_split_mode) (RIG * rig, vfo_t vfo, rmode_t tx_mode, pbwidth_t tx_width); int (*get_split_mode) (RIG * rig, vfo_t vfo, rmode_t * tx_mode, pbwidth_t * tx_width); int (*set_split_vfo) (RIG * rig, vfo_t vfo, split_t split, vfo_t tx_vfo); int (*get_split_vfo) (RIG * rig, vfo_t vfo, split_t * split, vfo_t *tx_vfo); int (*set_rit) (RIG * rig, vfo_t vfo, shortfreq_t rit); int (*get_rit) (RIG * rig, vfo_t vfo, shortfreq_t * rit); int (*set_xit) (RIG * rig, vfo_t vfo, shortfreq_t xit); int (*get_xit) (RIG * rig, vfo_t vfo, shortfreq_t * xit); int (*set_ts) (RIG * rig, vfo_t vfo, shortfreq_t ts); int (*get_ts) (RIG * rig, vfo_t vfo, shortfreq_t * ts); int (*set_dcs_code) (RIG * rig, vfo_t vfo, tone_t code); int (*get_dcs_code) (RIG * rig, vfo_t vfo, tone_t * code); int (*set_tone) (RIG * rig, vfo_t vfo, tone_t tone); int (*get_tone) (RIG * rig, vfo_t vfo, tone_t * tone); int (*set_ctcss_tone) (RIG * rig, vfo_t vfo, tone_t tone); int (*get_ctcss_tone) (RIG * rig, vfo_t vfo, tone_t * tone); int (*set_dcs_sql) (RIG * rig, vfo_t vfo, tone_t code); int (*get_dcs_sql) (RIG * rig, vfo_t vfo, tone_t * code); int (*set_tone_sql) (RIG * rig, vfo_t vfo, tone_t tone); int (*get_tone_sql) (RIG * rig, vfo_t vfo, tone_t * tone); int (*set_ctcss_sql) (RIG * rig, vfo_t vfo, tone_t tone); int (*get_ctcss_sql) (RIG * rig, vfo_t vfo, tone_t * tone); int (*power2mW) (RIG * rig, unsigned int *mwpower, float power, freq_t freq, rmode_t mode); int (*mW2power) (RIG * rig, float *power, unsigned int mwpower, freq_t freq, rmode_t mode); int (*set_powerstat) (RIG * rig, powerstat_t status); int (*get_powerstat) (RIG * rig, powerstat_t * status); int (*reset) (RIG * rig, reset_t reset); int (*set_ant) (RIG * rig, vfo_t vfo, ant_t ant); int (*get_ant) (RIG * rig, vfo_t vfo, ant_t * ant); int (*set_level) (RIG * rig, vfo_t vfo, setting_t level, value_t val); int (*get_level) (RIG * rig, vfo_t vfo, setting_t level, value_t * val); int (*set_func) (RIG * rig, vfo_t vfo, setting_t func, int status); int (*get_func) (RIG * rig, vfo_t vfo, setting_t func, int *status); int (*set_parm) (RIG * rig, setting_t parm, value_t val); int (*get_parm) (RIG * rig, setting_t parm, value_t * val); int (*set_ext_level)(RIG *rig, vfo_t vfo, token_t token, value_t val); int (*get_ext_level)(RIG *rig, vfo_t vfo, token_t token, value_t *val); int (*set_ext_parm)(RIG *rig, token_t token, value_t val); int (*get_ext_parm)(RIG *rig, token_t token, value_t *val); int (*set_conf) (RIG * rig, token_t token, const char *val); int (*get_conf) (RIG * rig, token_t token, char *val); int (*send_dtmf) (RIG * rig, vfo_t vfo, const char *digits); int (*recv_dtmf) (RIG * rig, vfo_t vfo, char *digits, int *length); int (*send_morse) (RIG * rig, vfo_t vfo, const char *msg); int (*set_bank) (RIG * rig, vfo_t vfo, int bank); int (*set_mem) (RIG * rig, vfo_t vfo, int ch); int (*get_mem) (RIG * rig, vfo_t vfo, int *ch); int (*vfo_op) (RIG * rig, vfo_t vfo, vfo_op_t op); int (*scan) (RIG * rig, vfo_t vfo, scan_t scan, int ch); int (*set_trn) (RIG * rig, int trn); int (*get_trn) (RIG * rig, int *trn); int (*decode_event) (RIG * rig); int (*set_channel) (RIG * rig, const channel_t * chan); int (*get_channel) (RIG * rig, channel_t * chan); const char *(*get_info) (RIG * rig); int (*set_chan_all_cb) (RIG * rig, chan_cb_t chan_cb, rig_ptr_t); int (*get_chan_all_cb) (RIG * rig, chan_cb_t chan_cb, rig_ptr_t); int (*set_mem_all_cb) (RIG * rig, chan_cb_t chan_cb, confval_cb_t parm_cb, rig_ptr_t); int (*get_mem_all_cb) (RIG * rig, chan_cb_t chan_cb, confval_cb_t parm_cb, rig_ptr_t); const char *clone_combo_set; /*