Formatted adat/ to final coding guidelines

pull/1/head
Nate Bargmann 2017-10-07 07:51:30 -05:00
rodzic b692fb22ef
commit c16a7d6f5f
4 zmienionych plików z 844 dodań i 623 usunięć

Plik diff jest za duży Load Diff

Wyświetl plik

@ -329,7 +329,8 @@
// ADAT PRIVATE DATA
// ---------------------------------------------------------------------------
typedef struct _adat_priv_data {
typedef struct _adat_priv_data
{
int nOpCode;
char *pcProductName; // Future use (USB direct I/O)
@ -397,14 +398,16 @@ typedef unsigned long long adat_cmd_id_t; // Bit mask for commands. Each command
// executed by adat_transaction(). The last value as returned by the
// commands will be set as overall command result.
typedef enum {
typedef enum
{
ADAT_CMD_KIND_WITH_RESULT = 0, // After sending a command to the ADAT,
// a result has to be read.
ADAT_CMD_KIND_WITHOUT_RESULT = 1
} adat_cmd_kind_t;
typedef struct _adat_cmd_def_t {
typedef struct _adat_cmd_def_t
{
adat_cmd_id_t nCmdId; // Bit indicating this cmd
adat_cmd_kind_t nCmdKind; // Defines if result expected
@ -417,14 +420,16 @@ typedef struct _adat_cmd_def_t {
} adat_cmd_def_t,
* adat_cmd_def_ptr;
typedef struct _adat_cmd_table_t {
typedef struct _adat_cmd_table_t
{
int nNrCmds;
adat_cmd_def_ptr adat_cmds[];
} adat_cmd_table_t,
* adat_cmd_table_ptr;
typedef struct _adat_cmd_list_t {
typedef struct _adat_cmd_list_t
{
int nNrCmds;
adat_cmd_def_ptr adat_cmds[];
@ -435,7 +440,8 @@ typedef struct _adat_cmd_list_t {
// OTHER ADAT DATA TYPES
// ---------------------------------------------------------------------------
typedef enum {
typedef enum
{
ADAT_FREQ_PARSE_MODE_WITH_VFO = 0,
ADAT_FREQ_PARSE_MODE_WITHOUT_VFO = 1
@ -443,7 +449,8 @@ typedef enum {
// ADAT MODE DEFINITION
typedef struct _adat_mode_def {
typedef struct _adat_mode_def
{
char *pcADATModeStr;
rmode_t nRIGMode;
int nADATMode;
@ -451,7 +458,8 @@ typedef struct _adat_mode_def {
} adat_mode_def_t,
* adat_mode_def_ptr;
typedef struct _adat_mode_list {
typedef struct _adat_mode_list
{
int nNrModes;
adat_mode_def_t adat_modes[ ADAT_NR_MODES ];
@ -461,7 +469,8 @@ typedef struct _adat_mode_list {
// ADAT VFO DEFINITION
typedef struct _adat_vfo_def {
typedef struct _adat_vfo_def
{
char *pcADATVFOStr;
vfo_t nRIGVFONr;
int nADATVFONr;
@ -469,7 +478,8 @@ typedef struct _adat_vfo_def {
} adat_vfo_def_t,
* adat_vfo_def_ptr;
typedef struct _adat_vfo_list {
typedef struct _adat_vfo_list
{
int nNrVFOs;
adat_vfo_def_t adat_vfos[ ADAT_NR_VFOS ];

Wyświetl plik

@ -53,7 +53,8 @@
// ADT-200A HAMLIB CAPS / DESCRIPTION
// ---------------------------------------------------------------------------
const struct rig_caps adt_200a_caps = {
const struct rig_caps adt_200a_caps =
{
.rig_model = RIG_MODEL_ADT_200A,
.model_name = "ADT-200A",
.mfg_name = "ADAT www.adat.ch",

Wyświetl plik

@ -55,46 +55,46 @@
// ADT-200A CAPS DEFINITIONS
// ---------------------------------------------------------------------------
#define ADT_200A_GET_LEVEL \
( \
RIG_LEVEL_PREAMP | \
RIG_LEVEL_ATT | \
RIG_LEVEL_AF | \
RIG_LEVEL_NR | \
RIG_LEVEL_CWPITCH | \
RIG_LEVEL_RFPOWER | \
RIG_LEVEL_MICGAIN | \
RIG_LEVEL_KEYSPD | \
RIG_LEVEL_METER | \
RIG_LEVEL_BKIN_DLYMS | \
RIG_LEVEL_RAWSTR | \
RIG_LEVEL_SWR | \
RIG_LEVEL_ALC )
#define ADT_200A_GET_LEVEL \
( \
RIG_LEVEL_PREAMP | \
RIG_LEVEL_ATT | \
RIG_LEVEL_AF | \
RIG_LEVEL_NR | \
RIG_LEVEL_CWPITCH | \
RIG_LEVEL_RFPOWER | \
RIG_LEVEL_MICGAIN | \
RIG_LEVEL_KEYSPD | \
RIG_LEVEL_METER | \
RIG_LEVEL_BKIN_DLYMS | \
RIG_LEVEL_RAWSTR | \
RIG_LEVEL_SWR | \
RIG_LEVEL_ALC )
#define ADT_200A_SET_LEVEL \
( \
RIG_LEVEL_PREAMP | \
RIG_LEVEL_ATT | \
RIG_LEVEL_AF | \
RIG_LEVEL_NR | \
RIG_LEVEL_CWPITCH | \
RIG_LEVEL_RFPOWER | \
RIG_LEVEL_MICGAIN | \
RIG_LEVEL_KEYSPD | \
RIG_LEVEL_METER | \
RIG_LEVEL_BKIN_DLYMS | \
RIG_LEVEL_ALC )
#define ADT_200A_SET_LEVEL \
( \
RIG_LEVEL_PREAMP | \
RIG_LEVEL_ATT | \
RIG_LEVEL_AF | \
RIG_LEVEL_NR | \
RIG_LEVEL_CWPITCH | \
RIG_LEVEL_RFPOWER | \
RIG_LEVEL_MICGAIN | \
RIG_LEVEL_KEYSPD | \
RIG_LEVEL_METER | \
RIG_LEVEL_BKIN_DLYMS | \
RIG_LEVEL_ALC )
#define ADT_200A_MODES \
( \
RIG_MODE_AM | \
RIG_MODE_CW | \
RIG_MODE_USB | \
RIG_MODE_LSB | \
RIG_MODE_FM | \
RIG_MODE_CWR | \
RIG_MODE_SAL | \
RIG_MODE_SAH )
#define ADT_200A_MODES \
( \
RIG_MODE_AM | \
RIG_MODE_CW | \
RIG_MODE_USB | \
RIG_MODE_LSB | \
RIG_MODE_FM | \
RIG_MODE_CWR | \
RIG_MODE_SAL | \
RIG_MODE_SAH )
// ADT-200A VFO #defines