| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * hamlib - (C) Frank Singleton 2000 (javabear at users.sourceforge.net) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * ft950.h - (C) Nate Bargmann 2007 (n0nb at arrl.net) | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  |  *           (C) Stephane Fillod 2008 | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This shared library provides an API for communicating | 
					
						
							|  |  |  |  * via serial interface to an FT-950 using the "CAT" interface | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2011-08-23 02:26:44 +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. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *   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 | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef _FT950_H
 | 
					
						
							|  |  |  | #define _FT950_H 1
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define TRUE    1
 | 
					
						
							|  |  |  | #define FALSE   0
 | 
					
						
							|  |  |  | #define ON      TRUE
 | 
					
						
							|  |  |  | #define OFF     FALSE
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define FT950_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Receiver caps */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-17 22:57:04 +00:00
										 |  |  | #define FT950_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_CWR|RIG_MODE_SSB|\
 | 
					
						
							|  |  |  | 		RIG_MODE_RTTY|RIG_MODE_RTTYR|RIG_MODE_PKTLSB|RIG_MODE_PKTUSB|RIG_MODE_PKTFM) | 
					
						
							|  |  |  | #define FT950_SSB_CW_RX_MODES (RIG_MODE_CW|RIG_MODE_CWR|RIG_MODE_SSB|\
 | 
					
						
							|  |  |  | 		RIG_MODE_RTTY|RIG_MODE_RTTYR|RIG_MODE_PKTLSB|RIG_MODE_PKTUSB) | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | #define FT950_AM_RX_MODES (RIG_MODE_AM)
 | 
					
						
							| 
									
										
										
										
											2008-12-17 22:57:04 +00:00
										 |  |  | #define FT950_FM_RX_MODES (RIG_MODE_FM|RIG_MODE_PKTFM)
 | 
					
						
							|  |  |  | #define FT950_CW_RX_MODES (RIG_MODE_CW|RIG_MODE_CWR)
 | 
					
						
							|  |  |  | #define FT950_CW_RTTY_PKT_RX_MODES (RIG_MODE_RTTY|RIG_MODE_RTTYR|\
 | 
					
						
							|  |  |  |         RIG_MODE_PKTUSB|RIG_MODE_PKTLSB|RIG_MODE_CW|RIG_MODE_CWR) | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | /* TRX caps */ | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define FT950_OTHER_TX_MODES (RIG_MODE_CW| RIG_MODE_USB| RIG_MODE_LSB ) /* 100 W class */
 | 
					
						
							|  |  |  | #define FT950_AM_TX_MODES (RIG_MODE_AM )    /* set 25W max */
 | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define FT950_LEVELS (RIG_LEVEL_ATT|RIG_LEVEL_PREAMP|\
 | 
					
						
							|  |  |  |                RIG_LEVEL_ALC|RIG_LEVEL_RAWSTR|RIG_LEVEL_SWR|\ | 
					
						
							|  |  |  |                RIG_LEVEL_RFPOWER|RIG_LEVEL_RF|RIG_LEVEL_SQL|\ | 
					
						
							|  |  |  |                RIG_LEVEL_MICGAIN|RIG_LEVEL_IF|RIG_LEVEL_CWPITCH|\ | 
					
						
							|  |  |  |                RIG_LEVEL_KEYSPD|RIG_LEVEL_AF|RIG_LEVEL_AGC|\ | 
					
						
							|  |  |  |                RIG_LEVEL_METER|RIG_LEVEL_BKINDL|RIG_LEVEL_SQL|\ | 
					
						
							| 
									
										
										
										
											2008-12-10 23:53:56 +00:00
										 |  |  |                RIG_LEVEL_VOXGAIN|RIG_LEVEL_VOXDELAY|RIG_LEVEL_COMP|\ | 
					
						
							| 
									
										
										
										
											2008-12-14 18:51:25 +00:00
										 |  |  |                RIG_LEVEL_ANTIVOX|RIG_LEVEL_NR|RIG_LEVEL_NOTCHF) | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define FT950_FUNCS (RIG_FUNC_TONE|RIG_FUNC_TSQL|RIG_FUNC_LOCK|\
 | 
					
						
							|  |  |  |                RIG_FUNC_MON|RIG_FUNC_NB|RIG_FUNC_NR|RIG_FUNC_VOX|\ | 
					
						
							| 
									
										
										
										
											2019-01-15 04:35:47 +00:00
										 |  |  |                RIG_FUNC_FBKIN|RIG_FUNC_COMP|RIG_FUNC_ANF|RIG_FUNC_MN|\ | 
					
						
							|  |  |  |                RIG_FUNC_TUNER) | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define FT950_VFO_OPS (RIG_OP_TUNE|RIG_OP_CPY|RIG_OP_XCHG|\
 | 
					
						
							|  |  |  |                RIG_OP_UP|RIG_OP_DOWN|RIG_OP_BAND_UP|RIG_OP_BAND_DOWN|\ | 
					
						
							| 
									
										
										
										
											2008-12-06 02:37:45 +00:00
										 |  |  |                RIG_OP_TO_VFO|RIG_OP_FROM_VFO|RIG_OP_TOGGLE) | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* TBC */ | 
					
						
							| 
									
										
										
										
											2008-11-26 22:16:00 +00:00
										 |  |  | #define FT950_STR_CAL { 16, \
 | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | 	       { \ | 
					
						
							| 
									
										
										
										
											2008-11-26 22:16:00 +00:00
										 |  |  | 			{   0, -54 }, /*  S0 */ \ | 
					
						
							|  |  |  | 			{  12, -48 }, /*  S1 */ \ | 
					
						
							|  |  |  | 			{  27, -42 }, /*  S2 */ \ | 
					
						
							|  |  |  | 			{  40, -36 }, /*  S3 */ \ | 
					
						
							|  |  |  | 			{  55, -30 }, /*  S4 */ \ | 
					
						
							|  |  |  | 			{  65, -24 }, /*  S5 */ \ | 
					
						
							|  |  |  | 			{  80, -18 }, /*  S6 */ \ | 
					
						
							|  |  |  | 			{  95, -12 }, /*  S7 */ \ | 
					
						
							|  |  |  | 			{ 112,  -6 }, /*  S8 */ \ | 
					
						
							|  |  |  | 			{ 130,   0 }, /*  S9 */ \ | 
					
						
							|  |  |  | 			{ 150,  10 }, /* +10 */ \ | 
					
						
							|  |  |  | 			{ 172,  20 }, /* +20 */ \ | 
					
						
							|  |  |  | 			{ 190,  30 }, /* +30 */ \ | 
					
						
							|  |  |  | 			{ 220,  40 }, /* +40 */ \ | 
					
						
							|  |  |  | 			{ 240,  50 }, /* +50 */ \ | 
					
						
							|  |  |  | 			{ 255,  60 }, /* +60 */ \ | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | 		} } | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * Other features (used by rig_caps) | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-11-01 22:39:07 +00:00
										 |  |  | #define FT950_ANTS  (RIG_ANT_1|RIG_ANT_2)
 | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define FT950_MEM_CHNL_LENGTH           1       /* 0x10 P1 = 01 return size */
 | 
					
						
							|  |  |  | #define FT950_OP_DATA_LENGTH            19      /* 0x10 P1 = 03 return size */
 | 
					
						
							|  |  |  | #define FT950_VFO_DATA_LENGTH           18      /* 0x10 P1 = 03 return size -- A & B returned */
 | 
					
						
							|  |  |  | #define FT950_MEM_CHNL_DATA_LENGTH      19      /* 0x10 P1 = 04, P4 = 0x01-0x20 return size */
 | 
					
						
							|  |  |  | #define FT950_STATUS_FLAGS_LENGTH       5       /* 0xf7, 0xfa return size */
 | 
					
						
							|  |  |  | #define FT950_ALL_DATA_LENGTH           649     /* 0x10 P1 = 00 return size */
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Timing values in mS */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-12-05 23:46:03 +00:00
										 |  |  | // #define FT950_PACING_INTERVAL                5
 | 
					
						
							|  |  |  | // #define FT950_PACING_DEFAULT_VALUE           0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Delay between bytes sent to FT-950
 | 
					
						
							|  |  |  |  * Should not exceed value set in CAT TOT menu (rig default is 10 mSec) | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #define FT950_WRITE_DELAY                    0
 | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Delay sequential fast writes */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-05 21:46:55 +00:00
										 |  |  | //#define FT950_POST_WRITE_DELAY               5
 | 
					
						
							|  |  |  | #define FT950_POST_WRITE_DELAY               0
 | 
					
						
							| 
									
										
										
										
											2008-09-22 21:31:05 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* _FT950_H */
 |