2000-09-16 01:45:00 +00:00
|
|
|
/*
|
2001-07-13 19:08:15 +00:00
|
|
|
* Hamlib CI-V backend - defines for the ICOM "CI-V" interface.
|
2016-11-06 13:38:42 +00:00
|
|
|
* Copyright (c) 2000-2016 by Stephane Fillod
|
2000-09-16 01:45:00 +00:00
|
|
|
*
|
|
|
|
*
|
2011-08-21 01:45:47 +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.
|
2000-09-16 01:45:00 +00:00
|
|
|
*
|
2011-08-21 01:45:47 +00:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
2001-07-13 19:08:15 +00:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2011-08-21 01:45:47 +00:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2000-09-16 01:45:00 +00:00
|
|
|
*
|
2011-08-21 01:45:47 +00:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2001-07-13 19:08:15 +00:00
|
|
|
* License along with this library; if not, write to the Free Software
|
2011-08-21 01:45:47 +00:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
2000-09-16 01:45:00 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ICOM_DEFS_H
|
|
|
|
#define _ICOM_DEFS_H 1
|
|
|
|
|
|
|
|
/*
|
|
|
|
* CI-V frame codes
|
|
|
|
*/
|
2000-09-19 07:06:19 +00:00
|
|
|
#define PR 0xfe /* Preamble code */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define CTRLID 0xe0 /* Controllers's default address */
|
2001-06-10 22:27:08 +00:00
|
|
|
#define BCASTID 0x00 /* Broadcast address */
|
2000-09-19 07:06:19 +00:00
|
|
|
#define FI 0xfd /* End of message code */
|
|
|
|
#define ACK 0xfb /* OK code */
|
|
|
|
#define NAK 0xfa /* NG code */
|
|
|
|
#define COL 0xfc /* CI-V bus collision detected */
|
|
|
|
#define PAD 0xff /* Transmit padding */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2000-09-19 07:06:19 +00:00
|
|
|
#define ACKFRMLEN 6 /* reply frame length */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2000-10-23 19:48:12 +00:00
|
|
|
#define S_NONE -1
|
|
|
|
|
2000-10-29 16:27:37 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Arguments length in bytes
|
|
|
|
*/
|
|
|
|
#define CHAN_NB_LEN 2
|
|
|
|
#define BANK_NB_LEN 2
|
|
|
|
#define OFFS_LEN 3
|
|
|
|
|
2000-09-16 01:45:00 +00:00
|
|
|
/*
|
|
|
|
* Cn controller commands
|
2006-07-18 22:51:43 +00:00
|
|
|
*
|
|
|
|
|
2019-05-30 06:37:49 +00:00
|
|
|
Most radios have 2 or 3 receive passbands available. Where only 2 are available they
|
2006-07-18 22:51:43 +00:00
|
|
|
are selected by 01 for wide and 02 for narrow Actual bandwidth is determined by the filters
|
2011-08-21 01:45:47 +00:00
|
|
|
installed. With the newer DSP rigs there are 3 presets 01 = wide 02 = middle and 03 = narrow.
|
2019-05-30 06:37:49 +00:00
|
|
|
Actually, you can set change any of these presets to any thing you want.
|
2006-07-18 22:51:43 +00:00
|
|
|
|
2000-09-16 01:45:00 +00:00
|
|
|
* Notes:
|
2006-07-18 22:51:43 +00:00
|
|
|
* The following only applies to IC-706.
|
|
|
|
* 1. When wide or normal op available: add "00" for wide, "01" normal
|
2000-09-16 01:45:00 +00:00
|
|
|
* Normal or narrow op: add "00" for normal, "01" for narrow
|
|
|
|
* Wide, normal or narrow op: add "00" for wide, "01" normal, "02" narrow
|
|
|
|
* 2. Memory channel number 1A=0100/1b=0101, 2A=0102/2b=0103,
|
|
|
|
* 3A=0104/3b=0105, C1=0106, C2=0107
|
|
|
|
*/
|
2019-05-30 06:37:49 +00:00
|
|
|
#define C_SND_FREQ 0x00 /* Send frequency data transceive mode does not ack*/
|
|
|
|
#define C_SND_MODE 0x01 /* Send mode data, Sc for transceive mode does not ack */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define C_RD_BAND 0x02 /* Read band edge frequencies */
|
|
|
|
#define C_RD_FREQ 0x03 /* Read display frequency */
|
|
|
|
#define C_RD_MODE 0x04 /* Read display mode */
|
|
|
|
#define C_SET_FREQ 0x05 /* Set frequency data(1) */
|
|
|
|
#define C_SET_MODE 0x06 /* Set mode data, Sc */
|
|
|
|
#define C_SET_VFO 0x07 /* Set VFO */
|
|
|
|
#define C_SET_MEM 0x08 /* Set channel, Sc(2) */
|
|
|
|
#define C_WR_MEM 0x09 /* Write memory */
|
|
|
|
#define C_MEM2VFO 0x0a /* Memory to VFO */
|
|
|
|
#define C_CLR_MEM 0x0b /* Memory clear */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define C_RD_OFFS 0x0c /* Read duplex offset frequency; default changes with HF/6M/2M */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define C_SET_OFFS 0x0d /* Set duplex offset frequency */
|
|
|
|
#define C_CTL_SCAN 0x0e /* Control scan, Sc */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define C_CTL_SPLT 0x0f /* Control split, and duplex mode Sc */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define C_SET_TS 0x10 /* Set tuning step, Sc */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define C_CTL_ATT 0x11 /* Set/get attenuator, Sc */
|
|
|
|
#define C_CTL_ANT 0x12 /* Set/get antenna, Sc */
|
2000-09-19 07:06:19 +00:00
|
|
|
#define C_CTL_ANN 0x13 /* Control announce (speech synth.), Sc */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define C_CTL_LVL 0x14 /* Set AF/RF/squelch, Sc */
|
2016-11-06 13:38:42 +00:00
|
|
|
#define C_RD_SQSM 0x15 /* Read squelch condition/S-meter level, Sc */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define C_CTL_FUNC 0x16 /* Function settings (AGC,NB,etc.), Sc */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define C_SND_CW 0x17 /* Send CW message */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define C_SET_PWR 0x18 /* Set Power ON/OFF, Sc */
|
2000-10-10 22:17:34 +00:00
|
|
|
#define C_RD_TRXID 0x19 /* Read transceiver ID code */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define C_CTL_MEM 0x1a /* Misc memory/bank/rig control functions, Sc */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define C_SET_TONE 0x1b /* Set tone frequency */
|
2000-10-10 22:17:34 +00:00
|
|
|
#define C_CTL_PTT 0x1c /* Control Transmit On/Off, Sc */
|
2019-12-17 16:25:55 +00:00
|
|
|
#define C_CTL_DVT 0x1f /* Digital modes calsigns & messages */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define C_CTL_DIG 0x20 /* Digital modes settings & status */
|
2019-06-01 06:51:17 +00:00
|
|
|
#define C_CTL_RIT 0x21 /* RIT/XIT control */
|
2019-12-17 16:25:55 +00:00
|
|
|
#define C_CTL_DSD 0x22 /* D-STAR Data */
|
2020-02-06 00:00:34 +00:00
|
|
|
#define C_SEND_SEL_FREQ 0x25i /* Send/Recv sel/unsel VFO frequency */
|
2020-01-11 14:25:06 +00:00
|
|
|
#define C_CTL_SCP 0x27 /* Scope control & data */
|
2020-02-06 00:00:34 +00:00
|
|
|
#define C_SND_VOICE 0x28 /* Transmit Voice Memory Contents */
|
2016-11-06 13:38:42 +00:00
|
|
|
#define C_CTL_MTEXT 0x70 /* Microtelecom Extension */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define C_CTL_MISC 0x7f /* Miscellaneous control, Sc */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sc controller sub commands
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set mode data (C_SET_MODE) sub commands
|
|
|
|
*/
|
|
|
|
#define S_LSB 0x00 /* Set to LSB */
|
|
|
|
#define S_USB 0x01 /* Set to USB */
|
|
|
|
#define S_AM 0x02 /* Set to AM */
|
2018-12-24 13:25:12 +00:00
|
|
|
#define S_AMN 0x02 /* Set to AM-N */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define S_CW 0x03 /* Set to CW */
|
|
|
|
#define S_RTTY 0x04 /* Set to RTTY */
|
|
|
|
#define S_FM 0x05 /* Set to FM */
|
2018-12-24 13:25:12 +00:00
|
|
|
#define S_FMN 0x05 /* Set to FM-N */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define S_WFM 0x06 /* Set to Wide FM */
|
2004-08-21 23:53:39 +00:00
|
|
|
#define S_CWR 0x07 /* Set to CW Reverse */
|
|
|
|
#define S_RTTYR 0x08 /* Set to RTTY Reverse */
|
|
|
|
#define S_AMS 0x11 /* Set to AMS */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_PSK 0x12 /* 7800 PSK USB */
|
|
|
|
#define S_PSKR 0x13 /* 7800 PSK LSB */
|
2018-12-21 07:07:41 +00:00
|
|
|
#define S_SAML 0x14 /* Set to AMS-L */
|
|
|
|
#define S_SAMU 0x15 /* Set to AMS-U */
|
|
|
|
#define S_P25 0x16 /* Set to P25 */
|
|
|
|
#define S_DSTAR 0x17 /* Set to D-STAR */
|
|
|
|
#define S_DPMR 0x18 /* Set to dPMR */
|
|
|
|
#define S_NXDNVN 0x19 /* Set to NXDN_VN */
|
|
|
|
#define S_NXDN_N 0x20 /* Set to NXDN-N */
|
|
|
|
#define S_DCR 0x21 /* Set to DCR */
|
2019-04-07 14:03:55 +00:00
|
|
|
#define S_DD 0x22 /* Set to DD 1200Mhz only? */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2002-03-10 23:39:35 +00:00
|
|
|
#define S_R7000_SSB 0x05 /* Set to SSB on R-7000 */
|
2008-11-09 14:26:04 +00:00
|
|
|
|
2011-08-21 01:45:47 +00:00
|
|
|
/* filter width coding for older ICOM rigs with 2 filter width */
|
2008-11-09 14:26:04 +00:00
|
|
|
/* there is no special 'wide' for that rigs */
|
|
|
|
#define PD_MEDIUM_2 0x01 /* Medium */
|
|
|
|
#define PD_NARROW_2 0x02 /* Narrow */
|
|
|
|
|
2011-08-21 01:45:47 +00:00
|
|
|
/* filter width coding for newer ICOM rigs with 3 filter width */
|
2008-11-09 14:26:04 +00:00
|
|
|
#define PD_WIDE_3 0x01 /* Wide */
|
|
|
|
#define PD_MEDIUM_3 0x02 /* Medium */
|
|
|
|
#define PD_NARROW_3 0x03 /* Narrow */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set VFO (C_SET_VFO) sub commands
|
|
|
|
*/
|
|
|
|
#define S_VFOA 0x00 /* Set to VFO A */
|
|
|
|
#define S_VFOB 0x01 /* Set to VFO B */
|
|
|
|
#define S_BTOA 0xa0 /* VFO A=B */
|
|
|
|
#define S_XCHNG 0xb0 /* Switch VFO A and B */
|
2000-10-23 19:48:12 +00:00
|
|
|
#define S_SUBTOMAIN 0xb1 /* MAIN = SUB */
|
|
|
|
#define S_DUAL_OFF 0xc0 /* Dual watch off */
|
|
|
|
#define S_DUAL_ON 0xc1 /* Dual watch on */
|
2019-06-01 06:51:17 +00:00
|
|
|
#define S_DUAL 0xc2 /* Dual watch (0 = off, 1 = on) */
|
2000-10-23 19:48:12 +00:00
|
|
|
#define S_MAIN 0xd0 /* Select MAIN band */
|
|
|
|
#define S_SUB 0xd1 /* Select SUB band */
|
2019-04-07 14:03:55 +00:00
|
|
|
#define S_SUB_SEL 0xd2 /* Read/Set Main/Sub selection */
|
2000-10-23 19:48:12 +00:00
|
|
|
#define S_FRONTWIN 0xe0 /* Select front window */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set MEM (C_SET_MEM) sub commands
|
|
|
|
*/
|
2018-12-16 21:20:06 +00:00
|
|
|
#define S_BANK 0xa0 /* Select memory bank (aka 'memory group' with IC-R8600) */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan control (C_CTL_SCAN) subcommands
|
|
|
|
*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_SCAN_STOP 0x00 /* Stop scan/window scan */
|
2001-06-26 20:55:29 +00:00
|
|
|
#define S_SCAN_START 0x01 /* Programmed/Memory scan */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_SCAN_PROG 0x02 /* Programmed scan */
|
2001-06-26 20:55:29 +00:00
|
|
|
#define S_SCAN_DELTA 0x03 /* Delta-f scan */
|
|
|
|
#define S_SCAN_WRITE 0x04 /* auto memory-write scan */
|
|
|
|
#define S_SCAN_FPROG 0x12 /* Fine programmed scan */
|
|
|
|
#define S_SCAN_FDELTA 0x13 /* Fine delta-f scan */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_SCAN_MEM2 0x22 /* Memory scan */
|
2001-06-26 20:55:29 +00:00
|
|
|
#define S_SCAN_SLCTN 0x23 /* Selected number memory scan */
|
|
|
|
#define S_SCAN_SLCTM 0x24 /* Selected mode memory scan */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_SCAN_PRIO 0x42 /* Priority / window scan */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_SCAN_FDFOF 0xA0 /* Fix dF OFF */
|
|
|
|
#define S_SCAN_FDF5I 0xA1 /* Fix range +/-5kHz */
|
|
|
|
#define S_SCAN_FDF1X 0xA2 /* Fix range +/-10kHz */
|
|
|
|
#define S_SCAN_FDF2X 0xA3 /* Fix range +/-20kHz */
|
|
|
|
#define S_SCAN_FDF5X 0xA4 /* Fix range +/-50kHz */
|
|
|
|
#define S_SCAN_FDF1C 0xA5 /* Fix range +/-100kHz */
|
|
|
|
#define S_SCAN_FDF5C 0xA6 /* Fix range +/-500kHz */
|
|
|
|
#define S_SCAN_FDF1M 0xA7 /* Fix range +/-1MHz */
|
|
|
|
#define S_SCAN_FDFON 0xAA /* Fix dF ON */
|
|
|
|
#define S_SCAN_NSLCT 0xB0 /* Set as non select channel */
|
|
|
|
#define S_SCAN_SLCT 0xB1 /* Set as select channel */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_SCAN_SL_NUM 0xB2 /* select programed mem scan 7800 only */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_SCAN_RSMOFF 0xD0 /* Set scan resume OFF */
|
|
|
|
#define S_SCAN_RSMONP 0xD1 /* Set scan resume ON + pause time */
|
|
|
|
#define S_SCAN_RSMON 0xD3 /* Set scan resume ON */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Split control (S_CTL_SPLT) subcommands
|
|
|
|
*/
|
|
|
|
#define S_SPLT_OFF 0x00 /* Split OFF */
|
|
|
|
#define S_SPLT_ON 0x01 /* Split ON */
|
|
|
|
#define S_DUP_OFF 0x10 /* Simplex mode */
|
|
|
|
#define S_DUP_M 0x11 /* Duplex - mode */
|
|
|
|
#define S_DUP_P 0x12 /* Duplex + mode */
|
|
|
|
|
|
|
|
/*
|
2000-10-16 22:37:22 +00:00
|
|
|
* Set Attenuator (C_CTL_ATT) subcommands
|
2000-09-16 01:45:00 +00:00
|
|
|
*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_ATT_RD -1 /* Without subcommand, reads out setting */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define S_ATT_OFF 0x00 /* Off */
|
2000-09-19 07:06:19 +00:00
|
|
|
#define S_ATT_6dB 0x06 /* 6 dB, IC-756Pro */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define S_ATT_10dB 0x10 /* 10 dB */
|
2000-09-19 07:06:19 +00:00
|
|
|
#define S_ATT_12dB 0x12 /* 12 dB, IC-756Pro */
|
|
|
|
#define S_ATT_18dB 0x18 /* 18 dB, IC-756Pro */
|
2000-09-16 01:45:00 +00:00
|
|
|
#define S_ATT_20dB 0x20 /* 20 dB */
|
2000-09-19 07:06:19 +00:00
|
|
|
#define S_ATT_30dB 0x30 /* 30 dB, or Att on for IC-R75 */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2001-01-28 22:10:14 +00:00
|
|
|
/*
|
|
|
|
* Set Preamp (S_FUNC_PAMP) data
|
|
|
|
*/
|
|
|
|
#define D_PAMP_OFF 0x00
|
|
|
|
#define D_PAMP1 0x01
|
|
|
|
#define D_PAMP2 0x02
|
|
|
|
|
2010-04-14 19:56:10 +00:00
|
|
|
/*
|
|
|
|
* Set AGC (S_FUNC_AGC) data
|
|
|
|
*/
|
|
|
|
#define D_AGC_FAST 0x00
|
|
|
|
#define D_AGC_MID 0x01
|
|
|
|
#define D_AGC_SLOW 0x02
|
|
|
|
#define D_AGC_SUPERFAST 0x03 /* IC746 pro */
|
|
|
|
|
2000-09-16 01:45:00 +00:00
|
|
|
/*
|
|
|
|
* Set antenna (C_SET_ANT) subcommands
|
|
|
|
*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_ANT_RD -1 /* Without subcommand, reads out setting */
|
2000-09-19 07:06:19 +00:00
|
|
|
#define S_ANT1 0x00 /* Antenna 1 */
|
|
|
|
#define S_ANT2 0x01 /* Antenna 2 */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Announce control (C_CTL_ANN) subcommands
|
|
|
|
*/
|
|
|
|
#define S_ANN_ALL 0x00 /* Announce all */
|
|
|
|
#define S_ANN_FREQ 0x01 /* Announce freq */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_ANN_MODE 0x02 /* Announce operating mode */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2000-10-16 22:37:22 +00:00
|
|
|
/*
|
|
|
|
* Function settings (C_CTL_LVL) subcommands
|
|
|
|
*/
|
|
|
|
#define S_LVL_AF 0x01 /* AF level setting */
|
|
|
|
#define S_LVL_RF 0x02 /* RF level setting */
|
|
|
|
#define S_LVL_SQL 0x03 /* SQL level setting */
|
|
|
|
#define S_LVL_IF 0x04 /* IF shift setting */
|
|
|
|
#define S_LVL_APF 0x05 /* APF level setting */
|
|
|
|
#define S_LVL_NR 0x06 /* NR level setting */
|
|
|
|
#define S_LVL_PBTIN 0x07 /* Twin PBT setting (inside) */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_LVL_PBTOUT 0x08 /* Twin PBT setting (outside) */
|
|
|
|
#define S_LVL_CWPITCH 0x09 /* CW pitch setting */
|
|
|
|
#define S_LVL_RFPOWER 0x0a /* RF power setting */
|
|
|
|
#define S_LVL_MICGAIN 0x0b /* MIC gain setting */
|
|
|
|
#define S_LVL_KEYSPD 0x0c /* Key Speed setting */
|
|
|
|
#define S_LVL_NOTCHF 0x0d /* Notch freq. setting */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_LVL_COMP 0x0e /* Compressor level setting */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_LVL_BKINDL 0x0f /* BKin delay setting */
|
|
|
|
#define S_LVL_BALANCE 0x10 /* Balance setting (Dual watch) */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_LVL_AGC 0x11 /* AGC (7800) */
|
|
|
|
#define S_LVL_NB 0x12 /* NB setting */
|
|
|
|
#define S_LVL_DIGI 0x13 /* DIGI-SEL (7800) */
|
|
|
|
#define S_LVL_DRIVE 0x14 /* DRIVE gain setting */
|
|
|
|
#define S_LVL_MON 0x15 /* Monitor gain setting */
|
2010-04-14 08:55:52 +00:00
|
|
|
#define S_LVL_VOXGAIN 0x16 /* VOX gain setting */
|
|
|
|
#define S_LVL_ANTIVOX 0x17 /* Anti VOX gain setting */
|
2010-04-14 19:56:10 +00:00
|
|
|
#define S_LVL_CONTRAST 0x18 /* CONTRAST level setting */
|
2010-04-14 08:55:52 +00:00
|
|
|
#define S_LVL_BRIGHT 0x19 /* BRIGHT level setting */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_LVL_BASS 0x1B /* Bass level setting */
|
|
|
|
#define S_LVL_TREBLE 0x1C /* Treble level setting */
|
|
|
|
#define S_LVL_SCNSPD 0x1D /* Scan speed */
|
|
|
|
#define S_LVL_SCNDEL 0x1E /* Scan delay */
|
|
|
|
#define S_LVL_PRIINT 0x1F /* PRIO interval */
|
|
|
|
#define S_LVL_RESTIM 0x20 /* Resume time */
|
2000-10-16 22:37:22 +00:00
|
|
|
|
2000-09-16 01:45:00 +00:00
|
|
|
/*
|
2006-07-18 22:51:43 +00:00
|
|
|
* Read squelch condition/S-meter level/other meter levels (C_RD_SQSM) subcommands
|
2000-09-16 01:45:00 +00:00
|
|
|
*/
|
|
|
|
#define S_SQL 0x01 /* Read squelch condition */
|
|
|
|
#define S_SML 0x02 /* Read S-meter level */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_SMF 0x03 /* Read S-meter level in AAAABBCC format */
|
|
|
|
#define S_CML 0x04 /* Read centre -meter level */
|
2018-12-24 18:33:11 +00:00
|
|
|
#define S_CSQL 0x05 /* Read combined squelch conditions */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_SAMS 0x06 /* Read S-AM Sync indicator */
|
|
|
|
#define S_OVF 0x07 /* Read OVF indicator status */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_RFML 0x11 /* Read RF-meter level */
|
|
|
|
#define S_SWR 0x12 /* Read SWR-meter level */
|
|
|
|
#define S_ALC 0x13 /* Read ALC-meter level */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_CMP 0x14 /* Read COMP-meter level */
|
2010-04-14 19:56:10 +00:00
|
|
|
#define S_VD 0x15 /* Read Vd-meter level */
|
|
|
|
#define S_ID 0x16 /* Read Id-meter level */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
|
|
|
/*
|
2006-07-18 22:51:43 +00:00
|
|
|
* Function settings (C_CTL_FUNC) subcommands Set and Read
|
2000-09-16 01:45:00 +00:00
|
|
|
*/
|
2000-10-16 22:37:22 +00:00
|
|
|
#define S_FUNC_PAMP 0x02 /* Preamp setting */
|
2001-01-28 22:10:14 +00:00
|
|
|
#define S_FUNC_AGCOFF 0x10 /* IC-R8500 only */
|
|
|
|
#define S_FUNC_AGCON 0x11 /* IC-R8500 only */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_FUNC_AGC 0x12 /* AGC setting presets: the dsp models allow these to be modified */
|
2001-01-28 22:10:14 +00:00
|
|
|
#define S_FUNC_NBOFF 0x20 /* IC-R8500 only */
|
|
|
|
#define S_FUNC_NBON 0x21 /* IC-R8500 only */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define S_FUNC_NB 0x22 /* NB setting */
|
2001-01-28 22:10:14 +00:00
|
|
|
#define S_FUNC_APFOFF 0x30 /* IC-R8500 only */
|
|
|
|
#define S_FUNC_APFON 0x31 /* IC-R8500 only */
|
|
|
|
#define S_FUNC_APF 0x32 /* APF setting */
|
|
|
|
#define S_FUNC_NR 0x40 /* NR setting */
|
|
|
|
#define S_FUNC_ANF 0x41 /* ANF setting */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define S_FUNC_TONE 0x42 /* TONE setting */
|
|
|
|
#define S_FUNC_TSQL 0x43 /* TSQL setting */
|
|
|
|
#define S_FUNC_COMP 0x44 /* COMP setting */
|
2001-01-28 22:10:14 +00:00
|
|
|
#define S_FUNC_MON 0x45 /* Monitor setting */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define S_FUNC_VOX 0x46 /* VOX setting */
|
|
|
|
#define S_FUNC_BKIN 0x47 /* BK-IN setting */
|
2001-01-28 22:10:14 +00:00
|
|
|
#define S_FUNC_MN 0x48 /* Manual notch setting */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_FUNC_RF 0x49 /* RTTY Filter setting */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_FUNC_AFC 0x4A /* Auto Frequency Control (AFC) setting */
|
2019-12-09 05:33:20 +00:00
|
|
|
#define S_FUNC_CSQL 0x4B /* DTCS tone code squelch setting*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_FUNC_VSC 0x4C /* voice squelch control useful for scanning*/
|
2010-04-14 19:56:10 +00:00
|
|
|
#define S_FUNC_MANAGC 0x4D /* manual AGC */
|
|
|
|
#define S_FUNC_DIGISEL 0x4E /* DIGI-SEL */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_FUNC_TW_PK 0x4F /* RTTY Twin Peak filter 0= off 1 = on */
|
|
|
|
#define S_FUNC_DIAL_LK 0x50 /* Dial lock */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_FUNC_P25SQL 0x52 /* P25 DSQL */
|
|
|
|
#define S_FUNC_ANTRX 0x53 /* ANT-RX */
|
|
|
|
#define S_FUNC_IF1F 0x55 /* 1st IF filter */
|
|
|
|
#define S_FUNC_DSPF 0x56 /* DSP filter */
|
|
|
|
#define S_FUNC_MANN 0x57 /* Manual notch width */
|
|
|
|
#define S_FUNC_SSBT 0x58 /* SSB Tx bandwidth */
|
|
|
|
#define S_FUNC_SUBB 0x59 /* Sub band */
|
|
|
|
#define S_FUNC_SATM 0x5A /* Satellite mode */
|
2019-12-09 05:33:20 +00:00
|
|
|
#define S_FUNC_DSSQL 0x5B /* D-STAR DSQL */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_FUNC_DPSQL 0x5F /* dPMR DSQL */
|
|
|
|
#define S_FUNC_NXSQL 0x60 /* NXDN DSQL */
|
|
|
|
#define S_FUNC_DCSQL 0x61 /* DCR DSQL */
|
|
|
|
#define S_FUNC_DPSCM 0x62 /* dPMR scrambler */
|
|
|
|
#define S_FUNC_NXENC 0x63 /* NXDN encryption */
|
|
|
|
#define S_FUNC_DCENC 0x64 /* DCR encryption */
|
|
|
|
#define S_FUNC_IPP 0x65 /* IP+ setting */
|
2000-10-10 22:17:34 +00:00
|
|
|
|
2000-10-23 19:48:12 +00:00
|
|
|
/*
|
|
|
|
* Set Power On/Off (C_SET_PWR) subcommands
|
|
|
|
*/
|
|
|
|
#define S_PWR_OFF 0x00
|
|
|
|
#define S_PWR_ON 0x01
|
2016-05-26 05:01:27 +00:00
|
|
|
#define S_PWR_STDBY 0x02
|
2000-10-23 19:48:12 +00:00
|
|
|
|
2000-10-10 22:17:34 +00:00
|
|
|
/*
|
|
|
|
* Transmit control (C_CTL_PTT) subcommands
|
|
|
|
*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_PTT 0x00
|
|
|
|
#define S_ANT_TUN 0x01 /* Auto tuner 0=OFF, 1 = ON, 2=Start Tuning */
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2019-06-01 06:51:17 +00:00
|
|
|
/*
|
|
|
|
* RIT/XIT control (C_CTL_RIT) subcommands
|
|
|
|
*/
|
|
|
|
#define S_RIT_FREQ 0x00
|
|
|
|
#define S_RIT 0x01 /* RIT 0 = OFF, 1 = ON */
|
|
|
|
#define S_XIT 0x02 /* XIT (delta TX) 0 = OFF, 1 = ON */
|
|
|
|
|
2000-10-16 22:37:22 +00:00
|
|
|
/*
|
2006-09-22 19:55:59 +00:00
|
|
|
* Misc contents (C_CTL_MEM) subcommands applies to newer rigs.
|
2014-10-30 20:42:25 +00:00
|
|
|
*
|
|
|
|
* Beware the IC-7200 which is non-standard.
|
2000-10-16 22:37:22 +00:00
|
|
|
*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_MEM_CNTNT 0x00 /* Memory content 2 bigendian */
|
|
|
|
#define S_MEM_BAND_REG 0x01 /* band stacking register */
|
|
|
|
#define S_MEM_FILT_WDTH 0x03 /* current passband filter width */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_MEM_PARM 0x05 /* rig parameters; extended parm # + param value: should be coded */
|
|
|
|
/* in the rig files because they are different for each rig */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_MEM_DATA_MODE 0x06 /* data mode */
|
|
|
|
#define S_MEM_TX_PB 0x07 /* SSB tx passband */
|
2006-09-22 19:55:59 +00:00
|
|
|
#define S_MEM_FLTR_SHAPE 0x08 /* DSP filter shape 0=sharp 1=soft */
|
2006-07-18 22:51:43 +00:00
|
|
|
|
|
|
|
/* Icr75c */
|
2000-10-16 22:37:22 +00:00
|
|
|
#define S_MEM_CNTNT_SLCT 0x01
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_MEM_FLT_SLCT 0x01
|
2004-08-21 23:53:39 +00:00
|
|
|
#define S_MEM_MODE_SLCT 0x02
|
2002-02-28 10:59:46 +00:00
|
|
|
/* For IC-910H rig. */
|
|
|
|
#define S_MEM_RDWR_MEM 0x00 /* Read/write memory channel */
|
|
|
|
#define S_MEM_SATMEM 0x01 /* Satellite memory */
|
|
|
|
#define S_MEM_VOXGAIN 0x02 /* VOX gain level (0=0%, 255=100%) */
|
|
|
|
#define S_MEM_VOXDELAY 0x03 /* VOX delay (0=0.0 sec, 20=2.0 sec) */
|
2016-05-26 05:01:27 +00:00
|
|
|
#define S_MEM1_VOXDELAY 0x05 /* VOX delay (0=0.0 sec, 20=2.0 sec) */
|
2002-02-28 10:59:46 +00:00
|
|
|
#define S_MEM_ANTIVOX 0x04 /* anti VOX setting */
|
|
|
|
#define S_MEM_RIT 0x06 /* RIT (0=off, 1=on, 2=sub dial) */
|
2019-11-20 17:44:27 +00:00
|
|
|
#define S_MEM_SATMODE910 0x07 /* Satellite mode (on/off) */
|
2002-02-28 10:59:46 +00:00
|
|
|
#define S_MEM_BANDSCOPE 0x08 /* Simple bandscope (on/off) */
|
2000-10-16 22:37:22 +00:00
|
|
|
|
2019-11-20 17:44:27 +00:00
|
|
|
/* For IC9700 and IC9100 and likely future Icoms */
|
|
|
|
#define S_MEM_SATMODE 0x5a /* Satellite mode (on/off) */
|
|
|
|
|
2018-12-16 21:20:06 +00:00
|
|
|
/* IC-R8600 and others */
|
|
|
|
#define S_MEM_SKIP_SLCT_OFF 0x00
|
|
|
|
#define S_MEM_SKIP_SLCT_ON 0x10
|
|
|
|
#define S_MEM_PSKIP_SLCT_ON 0x20
|
|
|
|
#define S_MEM_DUP_OFF 0x00
|
|
|
|
#define S_MEM_DUP_MINUS 0x01
|
|
|
|
#define S_MEM_DUP_PLUS 0x02
|
|
|
|
#define S_MEM_TSTEP_OFF 0x00
|
|
|
|
#define S_MEM_TSTEP_ON 0x01
|
|
|
|
#define S_FUNC_IPPLUS 0x07 /* IP+ subcommand 0x1a 0x07 */
|
|
|
|
|
2018-12-24 10:14:53 +00:00
|
|
|
/* IC-R6 */
|
|
|
|
#define S_MEM_AFLT 0x00 /* AF LPF Off/On */
|
2006-07-18 22:51:43 +00:00
|
|
|
|
2018-12-26 08:25:38 +00:00
|
|
|
/* IC-R30 */
|
|
|
|
#define S_MEM_ANL 0x00 /* ANL Off/On */
|
2020-01-05 08:01:46 +00:00
|
|
|
#define S_MEM_EAR 0x01 /* Earphone mode Off/On */
|
|
|
|
#define S_MEM_REC 0x09 /* Recorder Off/On */
|
2018-12-26 08:25:38 +00:00
|
|
|
|
2001-01-28 22:10:14 +00:00
|
|
|
/*
|
|
|
|
* Tone control (C_SET_TONE) subcommands
|
|
|
|
*/
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_TONE_RPTR 0x00 /* Tone frequency setting for repeater receive */
|
2001-01-28 22:10:14 +00:00
|
|
|
#define S_TONE_SQL 0x01 /* Tone frequency setting for squelch */
|
2006-07-18 22:51:43 +00:00
|
|
|
#define S_TONE_DTCS 0x02 /* DTCS code and polarity for squelch */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_TONE_P25NAC 0x03 /* P25 NAC */
|
|
|
|
#define S_TONE_DSCSQL 0x07 /* D-STAR CSQL */
|
|
|
|
#define S_TONE_DPCOM 0x08 /* dPMR COM ID */
|
|
|
|
#define S_TONE_DPCC 0x09 /* dPMR CC */
|
|
|
|
#define S_TONE_NXRAN 0x0A /* NXDN RAN */
|
|
|
|
#define S_TONE_DCUC 0x0B /* DCR UC */
|
|
|
|
#define S_TONE_DPSCK 0x0C /* dPMR scrambler key */
|
|
|
|
#define S_TONE_NXENK 0x0D /* NXDN encryption key */
|
|
|
|
#define S_TONE_DCENK 0x0E /* DCR encryption key */
|
2001-01-28 22:10:14 +00:00
|
|
|
|
2001-06-10 22:27:08 +00:00
|
|
|
/*
|
2006-07-18 22:51:43 +00:00
|
|
|
* Transceiver ID (C_RD_TRXID) subcommands
|
2001-06-10 22:27:08 +00:00
|
|
|
*/
|
|
|
|
#define S_RD_TRXID 0x00
|
|
|
|
|
2018-12-26 08:25:38 +00:00
|
|
|
/*
|
|
|
|
* Digital modes settings & status subcommands
|
|
|
|
*/
|
|
|
|
#define S_DIG_DSCALS 0x00 /* D-STAR Call sign */
|
|
|
|
#define S_DIG_DSMESS 0x01 /* D-STAR Message */
|
|
|
|
#define S_DIG_DSRSTS 0x02 /* D-STAR Rx status */
|
|
|
|
#define S_DIG_DSGPSD 0x03 /* D-STAR GPS data */
|
|
|
|
#define S_DIG_DSGPSM 0x04 /* D-STAR GPS message */
|
|
|
|
#define S_DIG_DSCSQL 0x05 /* D-STAR CSQL */
|
2019-12-17 16:25:55 +00:00
|
|
|
#define S_DIG_P25ID 0x06 /* P25 ID */
|
2018-12-26 08:25:38 +00:00
|
|
|
#define S_DIG_P25STS 0x07 /* P25 Rx status */
|
|
|
|
#define S_DIG_DPRXID 0x08 /* dPMR Rx ID */
|
|
|
|
#define S_DIG_DPRSTS 0x09 /* dPMR Rx status */
|
|
|
|
#define S_DIG_NXRXID 0x0A /* NXDN Rx ID */
|
|
|
|
#define S_DIG_NXRSTS 0x0B /* NXDN Rx status */
|
|
|
|
#define S_DIG_DCRXID 0x0C /* DCR Rx ID */
|
2019-12-17 16:25:55 +00:00
|
|
|
#define S_DVT_DSMYCS 0x00 /* D-STAR My CS */
|
|
|
|
#define S_DVT_DSTXCS 0x01 /* D-STAR Tx CS */
|
|
|
|
#define S_DVT_DSTXMS 0x02 /* D-STAR Tx Mess */
|
|
|
|
#define S_DSD_DSTXDT 0x00 /* D-STAR Tx Data */
|
2018-12-26 08:25:38 +00:00
|
|
|
|
2020-01-11 14:25:06 +00:00
|
|
|
/*
|
|
|
|
* S_CTL_SCP Scope control & data subcommands
|
|
|
|
*/
|
|
|
|
#define S_SCP_DAT 0x00 /* Read data */
|
|
|
|
#define S_SCP_STS 0x10 /* On/Off status */
|
|
|
|
#define S_SCP_DOP 0x11 /* Data O/P Control */
|
|
|
|
#define S_SCP_MSS 0x12 /* Main/Sub setting */
|
|
|
|
#define S_SCP_MOD 0x14 /* Centre/Fixed mode */
|
|
|
|
#define S_SCP_SPN 0x15 /* Span setting */
|
|
|
|
#define S_SCP_EDG 0x16 /* Edge setting */
|
|
|
|
#define S_SCP_HLD 0x17 /* Hold On/Off */
|
|
|
|
#define S_SCP_REF 0x19 /* Reference level */
|
|
|
|
#define S_SCP_SWP 0x1a /* Sweep speed */
|
|
|
|
#define S_SCP_STX 0x1b /* Scope during Tx */
|
|
|
|
#define S_SCP_TYP 0x1c /* Display type */
|
|
|
|
#define S_SCP_VBW 0x1d /* VBW setting */
|
|
|
|
#define S_SCP_FEF 0x1e /* Fixed edge freqs */
|
|
|
|
|
2002-03-06 21:11:28 +00:00
|
|
|
/*
|
|
|
|
* C_CTL_MISC OptoScan extension
|
|
|
|
*/
|
|
|
|
#define S_OPTO_LOCAL 0x01
|
|
|
|
#define S_OPTO_REMOTE 0x02
|
|
|
|
#define S_OPTO_TAPE_ON 0x03
|
|
|
|
#define S_OPTO_TAPE_OFF 0x04
|
|
|
|
#define S_OPTO_RDSTAT 0x05
|
|
|
|
#define S_OPTO_RDCTCSS 0x06
|
|
|
|
#define S_OPTO_RDDCS 0x07
|
|
|
|
#define S_OPTO_RDDTMF 0x08
|
|
|
|
#define S_OPTO_RDID 0x09
|
|
|
|
#define S_OPTO_SPKRON 0x0a
|
|
|
|
#define S_OPTO_SPKROFF 0x0b
|
|
|
|
#define S_OPTO_5KSCON 0x0c
|
|
|
|
#define S_OPTO_5KSCOFF 0x0d
|
|
|
|
#define S_OPTO_NXT 0x0e
|
|
|
|
#define S_OPTO_SCON 0x0f
|
|
|
|
#define S_OPTO_SCOFF 0x10
|
2000-09-16 01:45:00 +00:00
|
|
|
|
2008-03-31 14:22:58 +00:00
|
|
|
/*
|
|
|
|
* OmniVIPlus (Omni VI) extensions
|
|
|
|
*/
|
|
|
|
#define C_OMNI6_XMT 0x16
|
|
|
|
|
2004-08-21 23:53:39 +00:00
|
|
|
/*
|
2010-04-14 19:56:10 +00:00
|
|
|
* S_MEM_MODE_SLCT Misc CI-V Mode settings
|
2004-08-21 23:53:39 +00:00
|
|
|
*/
|
|
|
|
#define S_PRM_BEEP 0x02
|
2004-08-27 01:49:38 +00:00
|
|
|
#define S_PRM_CWPITCH 0x10
|
2004-08-21 23:53:39 +00:00
|
|
|
#define S_PRM_LANG 0x15
|
|
|
|
#define S_PRM_BACKLT 0x21
|
|
|
|
#define S_PRM_SLEEP 0x32
|
|
|
|
#define S_PRM_SLPTM 0x33
|
|
|
|
#define S_PRM_TIME 0x27
|
|
|
|
|
2006-09-22 19:55:59 +00:00
|
|
|
/*
|
|
|
|
* Tokens for Extra Level and Parameters common to multiple rigs. Use token # > 99. Defined here so they
|
|
|
|
* will be available in ICOM name space. They have different internal commands primarily in dsp rigs. These
|
|
|
|
* tokens are used ext_lvl and ext_parm funtions in the individual rig files.
|
|
|
|
* Extra parameters which are rig specific should be coded in the individual rig files and token #s < 100.
|
|
|
|
*/
|
2011-08-21 01:45:47 +00:00
|
|
|
|
2006-09-22 19:55:59 +00:00
|
|
|
#define TOKEN_BACKEND(t) (t)
|
|
|
|
|
|
|
|
#define TOK_RTTY_FLTR TOKEN_BACKEND(100)
|
|
|
|
#define TOK_SSBBASS TOKEN_BACKEND(101)
|
|
|
|
#define TOK_SQLCTRL TOKEN_BACKEND(102)
|
2019-06-01 08:12:35 +00:00
|
|
|
#define TOK_DRIVE_GAIN TOKEN_BACKEND(103)
|
|
|
|
#define TOK_DIGI_SEL_FUNC TOKEN_BACKEND(104)
|
|
|
|
#define TOK_DIGI_SEL_LEVEL TOKEN_BACKEND(105)
|
2020-01-04 05:59:44 +00:00
|
|
|
#define TOK_DSTAR_CALL_SIGN TOKEN_BACKEND(120)
|
|
|
|
#define TOK_DSTAR_MESSAGE TOKEN_BACKEND(121)
|
|
|
|
#define TOK_DSTAR_STATUS TOKEN_BACKEND(122)
|
|
|
|
#define TOK_DSTAR_GPS_DATA TOKEN_BACKEND(123)
|
|
|
|
#define TOK_DSTAR_GPS_MESS TOKEN_BACKEND(124)
|
|
|
|
#define TOK_DSTAR_DSQL TOKEN_BACKEND(125)
|
|
|
|
#define TOK_DSTAR_MY_CS TOKEN_BACKEND(126)
|
|
|
|
#define TOK_DSTAR_TX_CS TOKEN_BACKEND(127)
|
2020-01-05 08:01:46 +00:00
|
|
|
#define TOK_DSTAR_TX_MESS TOKEN_BACKEND(128)
|
|
|
|
#define TOK_DSTAR_TX_DATA TOKEN_BACKEND(129)
|
|
|
|
#define TOK_DSTAR_CODE TOKEN_BACKEND(130)
|
2020-01-11 14:25:06 +00:00
|
|
|
#define TOK_SCOPE_DAT TOKEN_BACKEND(131)
|
|
|
|
#define TOK_SCOPE_STS TOKEN_BACKEND(132)
|
|
|
|
#define TOK_SCOPE_DOP TOKEN_BACKEND(133)
|
|
|
|
#define TOK_SCOPE_MSS TOKEN_BACKEND(134)
|
|
|
|
#define TOK_SCOPE_MOD TOKEN_BACKEND(135)
|
|
|
|
#define TOK_SCOPE_SPN TOKEN_BACKEND(136)
|
|
|
|
#define TOK_SCOPE_EDG TOKEN_BACKEND(137)
|
|
|
|
#define TOK_SCOPE_HLD TOKEN_BACKEND(138)
|
|
|
|
#define TOK_SCOPE_REF TOKEN_BACKEND(139)
|
|
|
|
#define TOK_SCOPE_SWP TOKEN_BACKEND(140)
|
|
|
|
#define TOK_SCOPE_STX TOKEN_BACKEND(141)
|
|
|
|
#define TOK_SCOPE_TYP TOKEN_BACKEND(142)
|
|
|
|
#define TOK_SCOPE_VBW TOKEN_BACKEND(143)
|
|
|
|
#define TOK_SCOPE_FEF TOKEN_BACKEND(144)
|
2019-12-17 16:25:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* icom_ext_parm table subcommand modifiers
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define SC_MOD_RD 0x01 /* Readable */
|
|
|
|
#define SC_MOD_WR 0x02 /* Writeable */
|
|
|
|
#define SC_MOD_RW 0x03 /* Read-write */
|
|
|
|
#define SC_MOD_RW12 0x07 /* Write +0x01, Read +0x02 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* icom_ext_parm table data types
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CMD_DAT_WRD 0x00 /* literal single word type */
|
2020-01-04 05:59:44 +00:00
|
|
|
#define CMD_DAT_INT 0x01 /* bcd int type */
|
|
|
|
#define CMD_DAT_FLT 0x02 /* bcd float type */
|
2020-01-07 15:27:24 +00:00
|
|
|
#define CMD_DAT_LVL 0x03 /* bcd level type */
|
|
|
|
#define CMD_DAT_BOL 0x04 /* bcd boolean type */
|
|
|
|
#define CMD_DAT_STR 0x05 /* string type */
|
|
|
|
#define CMD_DAT_BUF 0x06 /* literal byte buffer type */
|
|
|
|
#define CMD_DAT_TIM 0x07 /* Time type HHMM<>seconds */
|
2006-09-22 19:55:59 +00:00
|
|
|
|
2002-03-06 21:11:28 +00:00
|
|
|
#endif /* _ICOM_DEFS_H */
|