Update:
		src/locator.c -- Applied patch from Dave Hines M1CXW
		yaesu/ft920.* -- Format cleanup


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1899 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.2.4
Nate Bargmann, N0NB 2005-01-18 23:06:51 +00:00
rodzic 95daa7ac08
commit e02795f58c
3 zmienionych plików z 1136 dodań i 1139 usunięć

Wyświetl plik

@ -14,7 +14,7 @@
* Copyright (c) 2003 by Nate Bargmann
* Copyright (c) 2003 by Dave Hines
*
* $Id: locator.c,v 1.16 2004-10-02 10:32:08 fillods Exp $
* $Id: locator.c,v 1.17 2005-01-18 23:06:34 n0nb Exp $
*
* Code to determine bearing and range was taken from the Great Circle,
* by S. R. Sampson, N5OWK.
@ -72,7 +72,7 @@
/* arc length for 1 degree, 60 Nautical Miles */
#define ARC_IN_KM 111.2
/* The following is contributed by Dave Hines
/* The following is contributed by Dave Hines M1CXW
*
* begin dph
*/
@ -80,25 +80,34 @@
* These are the constants used when converting between Maidenhead grid
* locators and longitude/latitude values. MAX_LOCATOR_PAIRS is the maximum
* number of locator character pairs to convert. This number MUST NOT exceed
* the number of pairs of values in range[] & weight[].
* the number of pairs of values in loc_char_range[].
* Setting MAX_LOCATOR_PAIRS to 3 will convert the currently defined 6
* character locators. A value of 4 will convert the extended 8 character
* locators described in section 3L of "The IARU region 1 VHF managers
* handbook". Values of 5 and 6 will extent the format even more, to the
* longest definition I have seen for locators. Beware that there seems to be
* no universally accepted standard for 10 & 12 character locators.
* Note that the loc_char_weight values are in minutes of arc, to avoid
* constants which can't be represented precisely in either binary or decimal.
* longest definition I have seen for locators, see
* http://www.btinternet.com/~g8yoa/geog/non-ra.html
* Beware that there seems to be no universally accepted standard for 10 & 12
* character locators.
*
* The ranges of characters which will be accepted by locator2longlat, and
* generated by longlat2locator, are specified by the loc_char_range[] array.
* This array may be changed without requiring any other code changes.
*
* For the fifth pair to range from aa to xx use:
* const static int loc_char_range[] = { 18, 10, 24, 10, 24, 10 };
*
* For the fifth pair to range from aa to yy use:
* const static int loc_char_range[] = { 18, 10, 24, 10, 25, 10 };
*
* MAX_LOCATOR_PAIRS now sets the limit locator2longlat() will convert and
* sets the maximum length longlat2locator() will generate. Each function
* properly handles any value from 1 to 6 so MAX_LOCATOR_PAIRS should be
* left at 6. MIN_LOCATOR_PAIRS sets a floor on the shortest locator that
* should be handled. -N0NB
*
*/
const static double loc_char_weight[] = { 600.0, 60.0, 2.5, 0.25, 0.01, 0.001 };
const static int loc_char_range[] = { 18, 10, 24, 10, 25, 10 };
const static int loc_char_range[] = { 18, 10, 24, 10, 24, 10 };
#define MAX_LOCATOR_PAIRS 6
#define MIN_LOCATOR_PAIRS 1
@ -319,12 +328,12 @@ int HAMLIB_API dec2dmmm(double dec, int *degrees, double *minutes, int *sw) {
* EM19 will return coordinates equivalent to the southwest corner
* of EM19mm.
*
* \retval -RIG_EINVAL if locator exceeds RR99xx99yy99 or exceeds length
* \retval -RIG_EINVAL if locator exceeds RR99xx99xx99 or exceeds length
* limit--currently 1 to 6 lon/lat pairs.
* \retval RIG_OK if conversion went OK.
*
* \bug The fifth pair ranges from aa to yy, there is another convention
* that ranges from aa to xx. At some point both conventions should be
* \bug The fifth pair ranges from aa to xx, there is another convention
* that ranges from aa to yy. At some point both conventions should be
* supported.
*
* \sa longlat2locator()
@ -335,7 +344,8 @@ int HAMLIB_API dec2dmmm(double dec, int *degrees, double *minutes, int *sw) {
int HAMLIB_API locator2longlat(double *longitude, double *latitude, const char *locator) {
int x_or_y, paircount;
int locvalue, pair;
double xy[2], minutes;
int divisions;
double xy[2], ordinate;
/* bail if NULL pointers passed */
if (!longitude || !latitude)
@ -349,9 +359,10 @@ int HAMLIB_API locator2longlat(double *longitude, double *latitude, const char *
else if (paircount < MIN_LOCATOR_PAIRS)
return -RIG_EINVAL;
/* For x(=lon) and y(=lat) */
/* For x(=longitude) and y(=latitude) */
for (x_or_y = 0; x_or_y < 2; ++x_or_y) {
minutes = 0.0;
ordinate = -90.0;
divisions = 1;
for (pair = 0; pair < paircount; ++pair) {
locvalue = locator[pair*2 + x_or_y];
@ -361,18 +372,19 @@ int HAMLIB_API locator2longlat(double *longitude, double *latitude, const char *
(isupper(locvalue)) ? 'A' : 'a';
/* Check range for non-letter/digit or out of range */
if (((unsigned) locvalue) >= loc_char_range[pair])
if ((locvalue < 0) || (locvalue >= loc_char_range[pair]))
return -RIG_EINVAL;
minutes += locvalue * loc_char_weight[pair];
divisions *= loc_char_range[pair];
ordinate += locvalue * 180.0 / divisions;
}
/* Center coordinate */
minutes += loc_char_weight[paircount - 1] / 2.0;
/* Center ordinate in the Maidenhead "square" or "subsquare" */
ordinate += 90.0 / divisions;
xy[x_or_y] = minutes / 60.0 - 90.0;
xy[x_or_y] = ordinate;
}
*longitude = xy[0] * 2;
*longitude = xy[0] * 2.0;
*latitude = xy[1];
return RIG_OK;
@ -404,8 +416,8 @@ int HAMLIB_API locator2longlat(double *longitude, double *latitude, const char *
/* begin dph */
int HAMLIB_API longlat2locator(double longitude, double latitude, char *locator, int pair_count) {
int x_or_y, pair, locvalue;
double tmp;
int x_or_y, pair, locvalue, divisions;
double square_size, ordinate;
if (!locator)
return -RIG_EINVAL;
@ -414,15 +426,17 @@ int HAMLIB_API longlat2locator(double longitude, double latitude, char *locator,
return -RIG_EINVAL;
for (x_or_y = 0; x_or_y < 2; ++x_or_y) {
tmp = ((x_or_y == 0) ? longitude / 2. : latitude);
ordinate = (x_or_y == 0) ? longitude / 2.0 : latitude;
divisions = 1;
/* The 1e-6 here guards against floating point rounding errors */
tmp = fmod(tmp + 270., 180.) * 60. + 1e-6;
ordinate = fmod(ordinate + 270.000001, 180.0);
for (pair = 0; pair < pair_count; ++pair) {
locvalue = (int) (tmp / loc_char_weight[pair]);
divisions *= loc_char_range[pair];
square_size = 180.0 / divisions;
/* assert(locvalue < loc_char_range[pair]); */
tmp -= loc_char_weight[pair] * locvalue;
locvalue = (int) (ordinate / square_size);
ordinate -= square_size * locvalue;
locvalue += (loc_char_range[pair] == 10) ? '0':'A';
locator[pair * 2 + x_or_y] = locvalue;
}

Plik diff jest za duży Load Diff

Wyświetl plik

@ -2,14 +2,14 @@
* hamlib - (C) Frank Singleton 2000 (javabear at users.sourceforge.net)
*
* ft920.h - (C) Frank Singleton 2000 (javabear at users.sourceforge.net)
* (C) Nate Bargmann 2002, 2003 (n0nb at arrl.net)
* (C) Nate Bargmann 2002-2005 (n0nb at arrl.net)
* (C) Stephane Fillod 2002 (fillods at users.sourceforge.net)
*
* This shared library provides an API for communicating
* via serial interface to an FT-920 using the "CAT" interface
*
*
* $Id: ft920.h,v 1.12 2003-04-06 18:40:36 fillods Exp $
* $Id: ft920.h,v 1.13 2005-01-18 23:06:51 n0nb Exp $
*
*
* This library is free software; you can redistribute it and/or
@ -30,50 +30,50 @@
#ifndef _FT920_H
#define _FT920_H 1
#define _FT920_H 1
#define TRUE 1
#define FALSE 0
#define TRUE 1
#define FALSE 0
#define FT920_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
#define FT920_VFO_ALL (RIG_VFO_A|RIG_VFO_B)
/* Receiver caps */
#define FT920_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_USB|RIG_MODE_LSB)
#define FT920_SSB_CW_RX_MODES (RIG_MODE_CW|RIG_MODE_USB|RIG_MODE_LSB)
#define FT920_AM_RX_MODES (RIG_MODE_AM)
#define FT920_FM_RX_MODES (RIG_MODE_FM)
#define FT920_ALL_RX_MODES (RIG_MODE_AM|RIG_MODE_CW|RIG_MODE_USB|RIG_MODE_LSB)
#define FT920_SSB_CW_RX_MODES (RIG_MODE_CW|RIG_MODE_USB|RIG_MODE_LSB)
#define FT920_AM_RX_MODES (RIG_MODE_AM)
#define FT920_FM_RX_MODES (RIG_MODE_FM)
/* TX caps */
#define FT920_OTHER_TX_MODES (RIG_MODE_CW| RIG_MODE_USB| RIG_MODE_LSB ) /* 100 W class */
#define FT920_AM_TX_MODES (RIG_MODE_AM ) /* set 25W max */
#define FT920_FUNC_ALL (RIG_FUNC_FAGC|RIG_FUNC_NB|RIG_FUNC_COMP|RIG_FUNC_VOX|RIG_FUNC_TONE|RIG_FUNC_TSQL|RIG_FUNC_SBKIN|RIG_FUNC_FBKIN) /* fix */
#define FT920_OTHER_TX_MODES (RIG_MODE_CW| RIG_MODE_USB| RIG_MODE_LSB ) /* 100 W class */
#define FT920_AM_TX_MODES (RIG_MODE_AM ) /* set 25W max */
#define FT920_FUNC_ALL (RIG_FUNC_FAGC|RIG_FUNC_NB|RIG_FUNC_COMP|RIG_FUNC_VOX|RIG_FUNC_TONE|RIG_FUNC_TSQL|RIG_FUNC_SBKIN|RIG_FUNC_FBKIN) /* fix */
/* Other features */
#define FT920_ANTS 0 /* FIXME: declare Ant A & B and RX input */
#define FT920_ANTS 0 /* FIXME: declare Ant A & B and RX input */
/* Returned data length in bytes */
#define FT920_MEM_CHNL_LENGTH 1 /* 0x10 P1 = 01 return size */
#define FT920_STATUS_FLAGS_LENGTH 8 /* 0xfa return size */
#define FT920_VFO_DATA_LENGTH 28 /* 0x10 P1 = 02, 03 return size */
#define FT920_MEM_CHNL_DATA_LENGTH 14 /* 0x10 P1 = 04, P4 = 0x00-0x89 return size */
#define FT920_MEM_CHNL_LENGTH 1 /* 0x10 P1 = 01 return size */
#define FT920_STATUS_FLAGS_LENGTH 8 /* 0xfa return size */
#define FT920_VFO_DATA_LENGTH 28 /* 0x10 P1 = 02, 03 return size */
#define FT920_MEM_CHNL_DATA_LENGTH 14 /* 0x10 P1 = 04, P4 = 0x00-0x89 return size */
/* Timing values in mS */
#define FT920_PACING_INTERVAL 5
#define FT920_PACING_DEFAULT_VALUE 1
#define FT920_WRITE_DELAY 50
#define FT920_PACING_INTERVAL 5
#define FT920_PACING_DEFAULT_VALUE 1
#define FT920_WRITE_DELAY 50
/* Delay sequential fast writes */
#define FT920_POST_WRITE_DELAY 5
#define FT920_POST_WRITE_DELAY 5
/* Rough safe value for default timeout */
@ -81,8 +81,8 @@
#define FT920_DEFAULT_READ_TIMEOUT 28 * ( 5 + (FT920_PACING_INTERVAL * FT920_PACING_DEFAULT_VALUE))
/* BCD coded frequency length */
#define FT920_BCD_DIAL 8
#define FT920_BCD_RIT 3
#define FT920_BCD_DIAL 8
#define FT920_BCD_RIT 3
/*
@ -91,14 +91,14 @@
*
* delay for 28 bytes = (2.2917 + pace_interval) * 28
*
* pace_interval time to read 28 bytes
* ------------ ----------------------
* pace_interval time to read 28 bytes
* ------------- ---------------------
*
* 0 64 msec
* 1 92 msec
* 2 120 msec
* 5 204 msec
* 255 7.2 sec
* 0 64 msec
* 1 92 msec
* 2 120 msec
* 5 204 msec
* 255 7.2 sec
*
*/
@ -109,29 +109,29 @@
*/
enum ft920_native_cmd_e {
FT920_NATIVE_SPLIT_OFF = 0,
FT920_NATIVE_SPLIT_ON,
FT920_NATIVE_RECALL_MEM,
FT920_NATIVE_VFO_TO_MEM,
FT920_NATIVE_VFO_A,
FT920_NATIVE_VFO_B,
FT920_NATIVE_MEM_TO_VFO,
FT920_NATIVE_CLARIFIER_OPS,
FT920_NATIVE_VFO_A_FREQ_SET,
FT920_NATIVE_MODE_SET,
FT920_NATIVE_PACING,
FT920_NATIVE_MEM_CHNL,
FT920_NATIVE_OP_DATA,
FT920_NATIVE_VFO_DATA,
FT920_NATIVE_MEM_CHNL_DATA,
FT920_NATIVE_VFO_B_FREQ_SET,
FT920_NATIVE_VFO_A_PASSBAND_WIDE,
FT920_NATIVE_VFO_A_PASSBAND_NAR,
FT920_NATIVE_VFO_B_PASSBAND_WIDE,
FT920_NATIVE_VFO_B_PASSBAND_NAR,
FT920_NATIVE_STATUS_FLAGS,
FT920_NATIVE_SIZE /* end marker, value indicates number of */
/* native cmd entries */
FT920_NATIVE_SPLIT_OFF = 0,
FT920_NATIVE_SPLIT_ON,
FT920_NATIVE_RECALL_MEM,
FT920_NATIVE_VFO_TO_MEM,
FT920_NATIVE_VFO_A,
FT920_NATIVE_VFO_B,
FT920_NATIVE_MEM_TO_VFO,
FT920_NATIVE_CLARIFIER_OPS,
FT920_NATIVE_VFO_A_FREQ_SET,
FT920_NATIVE_MODE_SET,
FT920_NATIVE_PACING,
FT920_NATIVE_MEM_CHNL,
FT920_NATIVE_OP_DATA,
FT920_NATIVE_VFO_DATA,
FT920_NATIVE_MEM_CHNL_DATA,
FT920_NATIVE_VFO_B_FREQ_SET,
FT920_NATIVE_VFO_A_PASSBAND_WIDE,
FT920_NATIVE_VFO_A_PASSBAND_NAR,
FT920_NATIVE_VFO_B_PASSBAND_WIDE,
FT920_NATIVE_VFO_B_PASSBAND_NAR,
FT920_NATIVE_STATUS_FLAGS,
FT920_NATIVE_SIZE /* end marker, value indicates number of */
/* native cmd entries */
};
typedef enum ft920_native_cmd_e ft920_native_cmd_t;
@ -143,30 +143,30 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
*/
/* VFO A */
#define MODE_SET_A_LSB 0x00
#define MODE_SET_A_USB 0x01
#define MODE_SET_A_CW_U 0x02
#define MODE_SET_A_CW_L 0x03
#define MODE_SET_A_AM_W 0x04
#define MODE_SET_A_AM_N 0x05
#define MODE_SET_A_FM_W 0x06
#define MODE_SET_A_FM_N 0x07
#define MODE_SET_A_DATA_L 0x08
#define MODE_SET_A_DATA_U 0x0a
#define MODE_SET_A_DATA_F 0x0b
#define MODE_SET_A_LSB 0x00
#define MODE_SET_A_USB 0x01
#define MODE_SET_A_CW_U 0x02
#define MODE_SET_A_CW_L 0x03
#define MODE_SET_A_AM_W 0x04
#define MODE_SET_A_AM_N 0x05
#define MODE_SET_A_FM_W 0x06
#define MODE_SET_A_FM_N 0x07
#define MODE_SET_A_DATA_L 0x08
#define MODE_SET_A_DATA_U 0x0a
#define MODE_SET_A_DATA_F 0x0b
/* VFO B */
#define MODE_SET_B_LSB 0x80
#define MODE_SET_B_USB 0x81
#define MODE_SET_B_CW_U 0x82
#define MODE_SET_B_CW_L 0x83
#define MODE_SET_B_AM_W 0x84
#define MODE_SET_B_AM_N 0x85
#define MODE_SET_B_FM_W 0x86
#define MODE_SET_B_FM_N 0x87
#define MODE_SET_B_DATA_L 0x88
#define MODE_SET_B_DATA_U 0x8a
#define MODE_SET_B_DATA_F 0x8b
#define MODE_SET_B_LSB 0x80
#define MODE_SET_B_USB 0x81
#define MODE_SET_B_CW_U 0x82
#define MODE_SET_B_CW_L 0x83
#define MODE_SET_B_AM_W 0x84
#define MODE_SET_B_AM_N 0x85
#define MODE_SET_B_FM_W 0x86
#define MODE_SET_B_FM_N 0x87
#define MODE_SET_B_DATA_L 0x88
#define MODE_SET_B_DATA_U 0x8a
#define MODE_SET_B_DATA_F 0x8b
/*
@ -176,15 +176,15 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
*/
/* P1 values */
#define CLAR_RX_OFF 0x00
#define CLAR_RX_ON 0x01
#define CLAR_TX_OFF 0x80
#define CLAR_TX_ON 0x81
#define CLAR_SET_FREQ 0xff
#define CLAR_RX_OFF 0x00
#define CLAR_RX_ON 0x01
#define CLAR_TX_OFF 0x80
#define CLAR_TX_ON 0x81
#define CLAR_SET_FREQ 0xff
/* P2 values */
#define CLAR_OFFSET_PLUS 0x00
#define CLAR_OFFSET_MINUS 0xff
#define CLAR_OFFSET_PLUS 0x00
#define CLAR_OFFSET_MINUS 0xff
/*
@ -192,8 +192,8 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
*
*/
//#define FT920_VFO_A 0x00
//#define FT920_VFO_B 0x01
//#define FT920_VFO_A 0x00
//#define FT920_VFO_B 0x01
/*
@ -210,19 +210,19 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
*
*/
#define FT920_SUMO_DISPLAYED_STATUS_0 0x00 /* Status flag byte 0 */
#define SF_VFOA 0x00 /* bits 0 & 1, VFO A TX/RX == 0 */
#define SF_SPLITA (1<<0) /* Split operation with VFO-B on TX */
#define SF_SPLITB (1<<1) /* Split operation with VFO-B on RX */
#define SF_VFOB (SF_SPLITA|SF_SPLITB) /* bits 0 & 1, VFO B TX/RX == 3 */
#define FT920_SUMO_DISPLAYED_STATUS_0 0x00 /* Status flag byte 0 */
#define SF_VFOA 0x00 /* bits 0 & 1, VFO A TX/RX == 0 */
#define SF_SPLITA (1<<0) /* Split operation with VFO-B on TX */
#define SF_SPLITB (1<<1) /* Split operation with VFO-B on RX */
#define SF_VFOB (SF_SPLITA|SF_SPLITB) /* bits 0 & 1, VFO B TX/RX == 3 */
#define FT920_SUMO_DISPLAYED_STATUS_1 0x01 /* Status flag byte 1 */
#define SF_QMB (1<<3) /* Quick Memory Bank (QMB) selected */
#define SF_MT (1<<4) /* Memory Tuning in progress */
#define SF_VFO (1<<5) /* VFO operation selected */
#define SF_MR (1<<6) /* Memory Mode selected */
#define SF_GC (1<<7) /* General Coverage Reception selected */
#define SF_VFO_MASK (SF_QMB|SF_MT|SF_VFO|SF_MR)
#define FT920_SUMO_DISPLAYED_STATUS_1 0x01 /* Status flag byte 1 */
#define SF_QMB (1<<3) /* Quick Memory Bank (QMB) selected */
#define SF_MT (1<<4) /* Memory Tuning in progress */
#define SF_VFO (1<<5) /* VFO operation selected */
#define SF_MR (1<<6) /* Memory Mode selected */
#define SF_GC (1<<7) /* General Coverage Reception selected */
#define SF_VFO_MASK (SF_QMB|SF_MT|SF_VFO|SF_MR)
/*
* Offsets for VFO record retrieved via 0x10 P1 = 02, 03
@ -233,17 +233,17 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
* CAT command 0x10, P1 = 04, P4 = 0x00-0x89 returns memory channel data (14 bytes)
* In all cases the format is (from the FT-920 manual page 90):
*
* Offset Value
* 0x00 Band Selection (not documented!)
* 0x01 Operating Frequency (Hex value of display--Not BCD!)
* 0x05 Clarifier Offset (Hex value)
* 0x07 Mode Data
* 0x08 Flag
* 0x09 Filter Data 1
* 0x0a Filter Data 2
* 0x0b CTCSS Encoder Data
* 0x0c CTCSS Decoder Data
* 0x0d Memory recall Flag
* Offset Value
* 0x00 Band Selection (not documented!)
* 0x01 Operating Frequency (Hex value of display--Not BCD!)
* 0x05 Clarifier Offset (Hex value)
* 0x07 Mode Data
* 0x08 Flag
* 0x09 Filter Data 1
* 0x0a Filter Data 2
* 0x0b CTCSS Encoder Data
* 0x0c CTCSS Decoder Data
* 0x0d Memory recall Flag
*
* Memory Channel data has the same layout and offsets
* VFO B data has the same layout, but the offset starts at 0x0e and
@ -251,15 +251,15 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
*
*/
#define FT920_SUMO_DISPLAYED_FREQ 0x01 /* Current main display, can be VFO A, Memory data, Memory tune */
#define FT920_SUMO_VFO_A_FREQ 0x01 /* VFO A frequency, not necessarily currently displayed! */
#define FT920_SUMO_DISPLAYED_CLAR 0x05 /* RIT/XIT offset -- current display */
#define FT920_SUMO_VFO_A_CLAR 0x05 /* RIT/XIT offset -- VFO A */
#define FT920_SUMO_DISPLAYED_MODE 0x07 /* Current main display mode */
#define FT920_SUMO_VFO_A_MODE 0x07 /* VFO A mode, not necessarily currently displayed! */
#define FT920_SUMO_VFO_B_FREQ 0x0f /* Current sub display && VFO B */
#define FT920_SUMO_VFO_B_CLAR 0x13 /* RIT/XIT offset -- VFO B */
#define FT920_SUMO_VFO_B_MODE 0x15 /* Current sub display && VFO B */
#define FT920_SUMO_DISPLAYED_FREQ 0x01 /* Current main display, can be VFO A, Memory data, Memory tune */
#define FT920_SUMO_VFO_A_FREQ 0x01 /* VFO A frequency, not necessarily currently displayed! */
#define FT920_SUMO_DISPLAYED_CLAR 0x05 /* RIT/XIT offset -- current display */
#define FT920_SUMO_VFO_A_CLAR 0x05 /* RIT/XIT offset -- VFO A */
#define FT920_SUMO_DISPLAYED_MODE 0x07 /* Current main display mode */
#define FT920_SUMO_VFO_A_MODE 0x07 /* VFO A mode, not necessarily currently displayed! */
#define FT920_SUMO_VFO_B_FREQ 0x0f /* Current sub display && VFO B */
#define FT920_SUMO_VFO_B_CLAR 0x13 /* RIT/XIT offset -- VFO B */
#define FT920_SUMO_VFO_B_MODE 0x15 /* Current sub display && VFO B */
/*
* Mode Bitmap from offset 0x07 or 0x16 in VFO Record.
@ -268,38 +268,38 @@ typedef enum ft920_native_cmd_e ft920_native_cmd_t;
*
*/
#define MODE_LSB 0x00
#define MODE_CW_L 0x01 /* CW listening on LSB */
#define MODE_AM 0x02
#define MODE_FM 0x03
#define MODE_DATA_L 0x04 /* DATA on LSB */
#define MODE_DATA_U 0x05 /* DATA on USB (who does that? :) */
#define MODE_DATA_F 0x06 /* DATA on FM */
#define MODE_USB 0x40
#define MODE_CW_U 0x41 /* CW listening on USB */
#define MODE_LSB 0x00
#define MODE_CW_L 0x01 /* CW listening on LSB */
#define MODE_AM 0x02
#define MODE_FM 0x03
#define MODE_DATA_L 0x04 /* DATA on LSB */
#define MODE_DATA_U 0x05 /* DATA on USB (who does that? :) */
#define MODE_DATA_F 0x06 /* DATA on FM */
#define MODE_USB 0x40
#define MODE_CW_U 0x41 /* CW listening on USB */
/* Narrow filter selected */
#define MODE_LSBN 0x80 /* Not sure this actually exists */
#define MODE_CW_LN 0x81
#define MODE_AMN 0x82
#define MODE_FMN 0x83
#define MODE_DATA_LN 0x84
#define MODE_DATA_UN 0x85
#define MODE_DATA_FN 0x86
#define MODE_USBN 0xc0 /* Not sure this actually exists */
#define MODE_CW_UN 0xc1
#define MODE_LSBN 0x80 /* Not sure this actually exists */
#define MODE_CW_LN 0x81
#define MODE_AMN 0x82
#define MODE_FMN 0x83
#define MODE_DATA_LN 0x84
#define MODE_DATA_UN 0x85
#define MODE_DATA_FN 0x86
#define MODE_USBN 0xc0 /* Not sure this actually exists */
#define MODE_CW_UN 0xc1
/* All relevent bits */
#define MODE_MASK 0xc7
#define MODE_MASK 0xc7
/*
* Command string parameter offsets
*/
#define P1 3
#define P2 2
#define P3 1
#define P4 0
#define P1 3
#define P2 2
#define P3 1
#define P4 0
/*